  @import url('https://fonts.googleapis.com/css2?family=TASA+Orbiter:wght@400..800&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  :root {
      --primary-color: #00ae7d;
      --secondary-color: #333;
      --white-color: #fff;
  }

  a {
      text-decoration: none;
  }

  html,
  body {
      overflow-x: hidden;
      height: auto;
      scroll-behavior: auto !important;
  }

  body {
      /* position: relative; */
      font-family: "TASA Orbiter", sans-serif;
      background-color: #f7fefc;
      margin: 0;
  }

  .top-bar {
      padding: 10px 100px;
      background-color: var(--primary-color);
      display: flex;
      justify-content: space-between;
  }

  .top-bar span {
      color: #fff;
      padding-right: 8px;
  }

  .top-bar a {
      color: #fff;
      margin-right: 20px;
  }

  .top-bar a i {
      padding-right: 5px;
  }

  .left-side-top-bar {
      display: flex;
      justify-content: space-between;
  }

  .right-side-top-bar {
      display: flex;
  }

  /* ===================================== Start navigation ======================================== */
  .logo img {
      width: 300px;
  }

  .navigation_area .nav_sec {
      width: 100%;
      display: block;
      margin: 0;
      padding: 0;
  }

  .navigation_area .nav_sec ul {
      width: 100%;
      margin: 0;
      padding: 0;
      text-align: center;
      display: flex;
      justify-content: space-between;
  }

  .navigation_area .nav_sec ul li {
      display: inline-block;
      vertical-align: middle;
      margin: 0;
      margin: 0 70px 0 0;
      position: relative;
  }

  .navigation_area .nav_sec ul li+li {
      /* margin-left: 30px; */
  }

  .navigation_area .nav_sec ul li a {
      font-family: "Inter", sans-serif;
      color: #000000;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 85px;
      text-transform: uppercase;
      transition: 0.8s;
  }
  .navigation_area .nav_sec ul li ul li a::after{
    content: "";
    display: none;
  }

  .main_header .navigation_area .nav_sec ul .dropdown>a:after {
      content: "\f107";
      font-weight: 800;
      font-family: "Font Awesome 5 Free";
      position: absolute;
      top: 2px;
      right: -4px;
  }

  .navigation_area .nav_sec ul li .header_book_appointment_btn {
      margin-left: 148px;
      color: #000;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      text-transform: capitalize;
      position: relative;
  }


  .right-nav-sec a i {
      color: var(--color-2);
  }

  .nav_sec ul a:hover {
      color: var(--secondary-color) !important;
  }

  .nav_sec ul a::after {
      content: '';
      display: block;
      height: 3px;
      background-color:var(--secondary-color);
      position: absolute;
      bottom: 20px;
      width: 0%;
      transition: all 0.3s ease-in-out;
  }

  .nav_sec ul a:hover::after {
      width: 100%;
  }

  /* .nav_sec ul a:hover::before {
    width: 100%;
} */

  .nav_sec ul li ul li a:hover {
      background-color:var(--white-color);
  }

  .right-nav-sec {
      display: flex;
  }

  .right-nav-sec a {
      margin-right: 15px;
  }


  .navigation_area .nav_sec ul li ul {
      width: max-content;
      background: var(--secondary-color);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 999;
      display: none;
      text-align: left;
  }

  .navigation_area .nav_sec ul li ul li a {
      line-height: 30px !important;
      border-bottom: 1px dashed #fff;
  }

  .navigation_area .nav_sec ul li ul li:last-child a {
      border-bottom: none !important;
  }

  .navigation_area .nav_sec ul li:hover ul {
      display: block;
  }

  .navigation_area .nav_sec ul li ul li {
      width: 100%;
      /* float: left; */
      margin: 0;
      padding: 0;
  }

  .navigation_area .nav_sec ul li ul li+li {
      border-top: 1px solid var(--color-2);
  }

  .nav_sec ul>.active>a {
      color: var(--color-1);
  }


  .navigation_area .nav_sec ul li ul li a {
      margin: 0;
      padding: 10px 10px;
      display: block;
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      font-size: 17px;
  }


  /* .navigation_area .nav_sec>ul>li:last-child {
    display: none;
} */

  span.toggle-menu {
      display: none;
  }

  .toggle-menu img {
      width: 50px;
  }

  .r-nav a {
      background-color: var(--primary-color);
      padding: 18px 10px 18px 34px;
      border-radius: 50px;
      color: #fff;
      font-family: "Manrope", sans-serif;
  }

  .r-nav a span {
      padding: 10px 6px;
      background-color: var(--secondary-color);
      border-radius: 50%;
      margin-left: 12px;
  }

  .r-nav a span img {
      height: 28px;
      width: 28px;
  }

  .menu-icon {
      display: none;
  }

  /* navigation-end */

  /* BANNER-START */
  .banner {
      position: relative;
  }

  /* Black left strip */
  .banner-left {
      position: relative;
  }

  /* Grey social area */
  .banner-left .social-bar {
      position: absolute;
      left: -50px;
      top: 50%;
      padding: 82px 10px;
      display: flex;
      flex-direction: column;
      gap: 260px;
  }

  /* Rotated text */
  .banner-left .social-bar a {
      font-family: "Playfair Display", serif;
      display: inline-block;
      transform: rotate(90deg);
      transform-origin: center;
      text-decoration: none;
      color: #000;
      font-size: 64px;
      font-family: serif;
      white-space: nowrap;
  }

  .main-navbar {
      padding: 0 30px 0 160px;
  }

  .banner-right {
      position: relative;
  }

  .banner-right>img {
      width: 100%;
  }

  .banner-con {
      position: absolute;
      top: 165px;
      left: 0;
      background: rgba(255, 255, 255, 0.2);
      /* transparent white */
      backdrop-filter: blur(10px);
      /* main blur */
      -webkit-backdrop-filter: blur(10px);
      /* for Safari */
      padding: 40px 254px 40px 40px;
      color: #fff;
  }

  .banner-con h1 {
      font-family: "Playfair Display", serif;
      font-size: 96px;
      font-weight: 900;
      padding-bottom: 40px;
  }

  .cmn-btn a {
      background-color: var(--white-color);
      padding: 28px 43px;
      border-radius: 50px;
      font-family: "Manrope", sans-serif;
      color: #000;
  }

  .cmn-heading a span img {
      width: 28px;
      height: 28px;
  }

  .cmn-btn a span {
      padding: 10px 6px;
      background-color: var(--secondary-color);
      border-radius: 50%;
      margin-left: 12px;
  }

  .cmn-btn {
      margin-bottom: 24px;
  }

  .banner-con-2 {
      display: flex;
      width: 796px;
      position: absolute;
      bottom: 0;
      right: 0;
  }

  .banner-con-2-left {
      background-color: #ffffffe0;
      padding: 28px;
  }

  .client-satisfaction {
      font-family: "Manrope", sans-serif;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 53px;
  }

  .client-satisfaction h4 {
      font-family: "Manrope", sans-serif;
      font-weight: 400;
      color: #595959;
  }

  .client-satisfaction h3 {
      font-family: "Playfair Display", serif;
      font-size: 64px;
      color: var(--primary-color);
  }

  .banner-con-2-left p {
      font-family: "TASA Orbiter", sans-serif;
      font-size: 20px;
      line-height: 36px;
      color: #595959;
  }

  /* ABOUT-CSS */
  .about {
      padding: 200px 0 100px 0;
      position: relative;
  }

  .about-left {
      position: relative;
  }

  .about-left img {
      width: 100%;
  }

  .a-1 img {
      width: 324px;
      height: 243px;
      border-radius: 20px;
  }

  .a-2 img {
      width: 324px;
      height: 243px;
      border-radius: 20px;
  }

  .a-1 {
      position: absolute;
      top: -90px;
      right: -78px;
  }

  .a-2 {
      position: absolute;
      bottom: -90px;
      left: -78px;
  }

  .about-right {
      padding-left: 100px;
  }

  .cmn-heading {
      margin-bottom: 38px;
  }

  .cmn-heading h6 {
      font-family: "Playfair Display", serif;
      font-size: 28px;
      color: var(--secondary-color);
      position: relative;
      display: inline;
      margin-bottom: 10px;
  }

  .cmn-heading h6::before {
      content: "";
      position: absolute;
      right: -127px;
      top: 28px;
      width: 116px;
      height: 2px;
      background-color: var(--secondary-color);
  }

  .cmn-heading h2 {
      font-family: "Playfair Display", serif;
      font-size: 64px;
      font-weight: 600;
  }

  .cmn-heading h2 span {
      color: var(--primary-color);
  }

  .about-right p {
      font-family: "TASA Orbiter", sans-serif;
      color: #595959;
      /* line-height: 45px; */
      font-size: 18px;
      margin-bottom: 70px;
  }

  .about-right .cmn-btn a {
      background-color: var(--primary-color);
      color: var(--white-color);
      padding: 20px 20px 20px 50px;
      font-size: 22px;
  }

  .about-right .cmn-btn a span {
      padding: 8px 6px;
  }

  /* services-css-start */
  .services {
      padding: 200px 0 180px 0;
      position: relative;
      border-top: 1px solid #000;
  }

  .services .cmn-heading {
      text-align: center;
      margin-bottom: 200px;
  }

  .services .row .col-md-3 {
      display: flex;
      justify-content: center;
  }

  .services-box {
      border: 1px solid var(--primary-color);
      width: 400px;
      height: 400px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .services-box img {
      margin: 0 auto;
      display: flex;
  }

  .services-box h3 {
      margin-top: 20px;
  }

  .s-obj {
      position: absolute;
      left: 0;
      top: 80px;
  }

  .s-obj img {
      width: 617px;
      height: 442px;
  }

  /* pick-room section  */
  .pick-room-slider-item {
      position: relative;
  }

  .pick-room-img-box {
      background-color: #fff;
      position: absolute;
      bottom: 0;
      left: 0;
      display: flex;
      align-items: center;
      padding: 17px 28px;
      border-top-right-radius: 28px;
  }

  .pick-room-img-box h4 {
      margin-right: 40px;
      margin-bottom: 0;
  }

  .pick-room-img-box a {
      display: flex;
      background-color: var(--primary-color);
      border-radius: 50%;
      width: 55px;
      height: 55px;
      justify-content: center;
      align-items: center;
  }

  .pick-room-slider .slick-slide {
      padding: 0 12px;
  }

  .pick-room-slider .slick-slide img {
      width: 100%;
  }

  .pick-room-img-box a>img {
      width: 34px !important;
      height: 28px;
  }

  .pick-room .cmn-heading {
      padding-left: 50px;
      margin-bottom: 80px;
  }

  .pick-room-slider .custom-prev,
  .pick-room-slider .custom-next {
      position: absolute;
      background: var(--primary-color);
      color: #fff;
      border: none;
      padding: 10px 15px;
      font-size: 20px;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
      width: 50px;
      height: 50px;
  }

  .pick-room-slider .custom-prev {
      left: unset;
      right: 112px;
      top: -114px;
  }

  .pick-room-slider .custom-next {
      left: unset;
      right: 25px;
      top: -110px;
  }

  .pick-room-slider .custom-prev:hover,
  .pick-room-slider .custom-next:hover {
      background: #000;
  }


  .pick-room-slider .custom-prev::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 24px;
      height: 24px;
      background-image: url('../images/left-btn-arrow.png');
      /* your image path */
      background-size: contain;
      background-repeat: no-repeat;
  }

  .pick-room-slider .custom-next::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 24px;
      height: 24px;
      background-image: url('../images/btn-icon.png');
      /* your image */
      background-size: contain;
      background-repeat: no-repeat;
  }

  /* export-our-resort */
  .export-our-resort {
      padding: 100px 0;
  }

  .export-our-resort .cmn-heading {
      text-align: center;
  }

  /* LEFT */
  .lux-left-box {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .lux-item {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #fff;
      padding: 15px;
      border-radius: 12px;
      cursor: pointer;
      transition: 0.3s;
  }

  .lux-item img {
      width: 140px;
      height: 120px;
      border-radius: 10px;
      object-fit: cover;
  }

  .lux-item p {
      font-size: 24px;
      font-family: "TASA Orbiter", sans-serif;
      color: #000000;
  }

  .lux-item:hover {
      transform: translateY(-3px);
  }

  /* ACTIVE */
  .lux-active {
      background: #d9f5ed;
  }

  /* RIGHT */
  .lux-right-box {
      background: #fff;
      padding: 20px;
      border-radius: 15px;
  }

  .lux-main-img {
      width: 100%;
      margin-bottom: 20px;
      height: 400px;
      object-fit: cover;
      object-position: top;
  }

  .lux-title {
      font-family: "Playfair Display", serif;
      font-size: 40px;
      margin-bottom: 10px;
  }

  .lux-desc {
      font-size: 18px;
      color: #000000;
      margin-bottom: 50px;
  }

  /* BUTTON */
  .lux-btn {
      display: inline-block;
      background: #2b7dbd;
      color: #fff;
      padding: 10px 25px;
      border-radius: 25px;
      text-decoration: none;
      transition: 0.3s;
  }

  .lux-btn:hover {
      background: #1f5e90;
  }

  .export-our-resort .cmn-btn a {
      background-color: var(--primary-color);
      color: var(--white-color);
      padding: 20px 24px;
  }

  .export-our-resort .cmn-btn {
      /* margin-bottom: 70px; */
  }

  /* our-offer-section */
  .our-offer {
      text-align: center;
  }

  /* CARD */
  .lux-offer-card {
      position: relative;
      overflow: hidden;
  }

  .lux-offer-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.3);
      width: 100%;
      height: 100%;
  }

  .lux-offer-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
  }

  /* BIG CARD */
  .lux-big {
      height: 350px;
  }

  /* SMALL CARD */
  .lux-offer-card:not(.lux-big) {
      height: 350px;
  }

  /* OVERLAY */
  .lux-offer-overlay {
      position: absolute;
      justify-content: space-between;
      bottom: 0;
      padding: 20px;
      color: #fff;
      display: flex;
      transition: 0.5s;
      width: 100%;
  }

  /* BORDER STYLE */
  .lux-border {
      /* border: 1px solid rgba(255, 255, 255, 0.6);
      margin: 10px; */
      /* position: relative; */
  }

  /* BADGE */
  .lux-badge {
      font-size: 22px;
      font-weight: bold;
  }

  /* TITLE */
  .lux-offer-overlay h2 {
      font-size: 60px;
      font-family: "Playfair Display", serif;
      font-weight: 400;
  }

  /* TEXT */
  .lux-offer-overlay p {
      font-family: "TASA Orbiter", sans-serif;
      font-size: 25px;
      margin: 0;
  }

  .lux-offer-overlay.lux-border .lux-arrow {
      width: 45px;
      height: 45px;
  }

  .lux-offer-overlay.lux-border {
      bottom: 25px;
      padding: 40px;
  }

  .lux-offer-overlay.lux-border::before {
      content: "";
      position: absolute;
      left: 50%;
      top: -22%;
      transform: translate(-50%, -50%);
      width: 366px;
      height: 300px;
      border: 1px solid #fff;
  }

  .offer-text {
      position: absolute;
      top: 0;
      right: 0;
      padding: 10px 50px;
      background-color: var(--secondary-color);
      color: var(--white-color);
  }

  .offer-text h4 {
      font-family: "Playfair Display", serif;
      font-size: 30px;
  }

  .a-offer .offer-text {
      top: 50px;
      right: 50px;
      background-color: transparent;
  }

  /* ARROW */
  .lux-arrow {
      width: 60px;
      height: 60px;
      background: #00ae7d;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: flex-end;
      transition: 0.3s;
  }

  .lux-arrow img {
      width: 40px;
      height: 40px;
  }

  /* 🔥 HOVER EFFECT */
  .lux-offer-card:hover img {
      transform: scale(1.1);
  }

  /* .lux-offer-card:hover .lux-offer-overlay {
      background: rgba(0, 0, 0, 0.5);
  }

  .lux-offer-card:hover{
      transform: translateX(6px);
  } */

  /* our-testimonilas-css-start */
  .our-testimonilas {
      padding: 150px 0;
  }

  .our-testimonilas .cmn-heading {
      margin-bottom: 70px;
  }

  .our-testimonilas .cmn-heading {
      text-align: center;
  }

  .testimonial-card {
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      margin: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: 0.3s;
  }

  .testimonial-card p {
      margin-bottom: 20px;
  }

  .testimonial-card:hover {
      transform: translateY(-5px);
  }

  .stars {
      color: #ff7a00;
      margin-bottom: 10px;
      font-size: 24px;
  }

  .user {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 15px;
      border-top: 1px solid #E9EFF5;
      padding-top: 20px;
  }


  .user img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
  }

  /* Arrows */
  .testimonials-nav {
      text-align: center;
      margin-top: 40px;
      position: relative;
      z-index: 1;
  }

  .custom-prev,
  .custom-next {
      width: 40px;
      height: 40px;
      border: none;
      margin: 0 5px;
      border-radius: 8px;
      cursor: pointer;
  }

  .custom-prev {
      background: #fff;
  }

  .custom-next {
      background: #00ae7d;
      color: #fff;
  }

  .testimonials-slider .slick-slide {
      padding: 0 10px;
  }

  .testimonials-slider {
      margin: 0 -10px;
  }

  .user h4 {
      font-size: 20px;
      margin-bottom: 0;
  }

  .user span {
      font-size: 18px;
      color: #717276;
  }

  .testimonials-nav .custom-prevs,
  .testimonials-nav .custom-nexts {
      width: 45px;
      height: 45px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 5px;
  }

  .testimonials-nav .custom-prevs {
      background: #fff;
      color: #000;
  }

  .testimonials-nav .custom-nexts {
      background: #00ae7d;
      color: #fff;
  }

  /* DROP-A-MESSAGE-CSS*/
  /* SECTION */
  .drop-a-message {
      background: #f7fefc;
      padding: 40px 0 0 0;
  }

  /* HEADING */
  .drop-a-message .section-title {
      font-family: "Playfair Display", serif;
      font-size: 60px;
      font-weight: 500;
      margin-bottom: 52px;
  }

  .drop-a-message .section-title span {
      color: #00ae7d
  }

  /* FORM */
  .drop-a-message .form-box input,
  .drop-a-message .form-box textarea {
      width: 100%;
      padding: 18px 20px;
      margin-bottom: 50px;
      border-radius: 12px;
      border: 1.5px solid #00ae7d;
      background: transparent;
      outline: none;
      font-size: 16px;
  }

  /* TEXTAREA */
  .drop-a-message .form-box textarea {
      height: 140px;
      resize: none;
  }

  /* FOCUS EFFECT */
  .drop-a-message .form-box input:focus,
  .drop-a-message .form-box textarea:focus {
      border: 2px solid #00ae7d;
      box-shadow: 0 0 0 2px rgba(43, 108, 176, 0.1);
  }

  /* IMAGE */
  .drop-a-message .right-img img {
      max-width: 100%;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
      .drop-a-message .section-title {
          font-size: 40px;
          text-align: center;
      }
  }

  /* FOOTER-CSS-STRAT */
  /* FOOTER */
  .main-footer {
      background: #d9f5ed;
      padding: 60px 0 0px;
      font-family: Arial, sans-serif;
  }

  /* LOGO */
  .footer-logo img {
      max-width: 220px;
      margin-bottom: 20px;
  }

  /* TEXT */
  .footer-text {
      font-family: "TASA Orbiter", sans-serif;
      font-size: 15px;
      color: #000;
      line-height: 1.7;
  }

  /* HEADINGS */
  .footer-title {
      font-family: "Playfair Display", serif;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 20px;
      position: relative;
  }

  .footer-title::after {
      content: "";
      width: 40px;
      height: 2px;
      background: #00ae7d;
      position: absolute;
      left: 0;
      bottom: -5px;
  }

  /* LINKS */
  .footer-links {
      list-style: none;
      padding: 0;
  }

  .footer-links li {
      margin-bottom: 10px;
  }

  .footer-links a {
      font-family: "TASA Orbiter", sans-serif;
      text-decoration: none;
      color: #000;
      font-size: 15px;
      transition: 0.3s;
  }

  .footer-links a:hover {
      color: #00ae7d;
  }

  /* SOCIAL */
  .footer-social {
      margin-top: 20px;
  }

  .footer-social a {
      display: inline-flex;
      width: 35px;
      height: 35px;
      margin-right: 10px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 14px;
  }

  .footer-social .fb {
      background: #3b5998;
  }

  .footer-social .ig {
      background: #e1306c;
  }

  .footer-social .ln {
      background: #0077b5;
  }

  .footer-social .tw {
      background: #000;
  }

  /* CONTACT */
  .footer-contact p {
      font-family: "TASA Orbiter", sans-serif;
      font-size: 15px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .footer-contact i {
      color: #00ae7d
  }

  /* BOTTOM BAR */
  .footer-bottom {
      background: #00ae7d;
      color: #fff;
      padding: 10px 0;
      font-size: 13px;
      margin-top: 30px;
  }

  .footer-bottom .left {
      text-align: left;
  }

  .footer-bottom .right {
      text-align: right;
  }

  @media (max-width: 768px) {

      .footer-bottom .left,
      .footer-bottom .right {
          text-align: center;
      }
  }

  .footer-bottom a {
      color: #fff;
  }

  .left-line h6 {
      position: relative;
  }

  .left-line h6::after {
      content: "";
      position: absolute;
      left: -127px;
      top: 28px;
      width: 116px;
      height: 2px;
      background-color: var(--secondary-color);
  }

  .footer-contact a {
      color: #000;
  }

  /* -------------- */
  .cursor {
      width: 8px;
      height: 8px;
      background: var(--secondary-color);
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
  }

  .cursor-follower {
      width: 35px;
      height: 35px;
      border: 2px solid var(--primary-color);
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      transition: 0.15s ease-out;
      z-index: 9998;
  }

  /* Hover effect */
  a:hover~.cursor-follower,
  button:hover~.cursor-follower {
      transform: scale(1.5);
      background: rgba(255, 255, 255, 0.1);
  }

  /* about-css */
  .inner-banner {
      padding: 100px 0;
      background-repeat: no-repeat;
      background-size: cover;
  }

  .inner-banner h1 {
      font-size: 60px;
      color: var(--white-color);
      text-transform: uppercase;
  }

  .breadcrumb {
      list-style: none;
      padding: 0;
      display: inline-flex;
      gap: 10px;
  }

  .breadcrumb li {
      font-size: 16px;
      color: #fff;
  }

  .breadcrumb li a {
      color: #fff;
      text-decoration: none;
      transition: 0.3s;
  }

  .breadcrumb li a:hover {
      color: #f4a261;
  }

  .breadcrumb li::after {
      content: "/";
      margin-left: 10px;
  }

  .breadcrumb li:last-child::after {
      display: none;
      color: #ccc;
  }

  /* about-page-css */
  /* ════════════════════════════════
       STORY SECTION
    ════════════════════════════════ */
  .story {
      background: #ffffff;
      padding: 7rem 0 6rem;
      position: relative;
      overflow: hidden;
  }
  .story::after {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(25, 121, 185, 0.07) 0%, transparent 70%);
      pointer-events: none;
  }

  .section-inner {
      margin: 0 auto;
      padding: 0 3rem;
  }

  .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
  }

  /* Image block */
  .story-img-wrap {
      position: relative;
  }

  .story-img-frame {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(145deg, #00ae7d 0%, #00ae7d 50%, #00ae7d 100%);
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .story-img-frame .big-icon {
      font-size: 9rem;
      opacity: .18;
      user-select: none;
  }

  .story-img-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(25, 121, 185, .45), transparent 55%);
  }

  .story-img-badge {
      position: absolute;
      bottom: -1.4rem;
      right: -1.4rem;
      width: 110px;
      height: 110px;
      background: #333333;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-family: 'Cormorant Garamond', serif;
  }

  .story-img-badge strong {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1;
  }

  .story-img-badge span {
      font-size: .62rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .85;
      text-align: center;
      padding: 0 .5rem;
  }

  .story-corner-line {
      position: absolute;
      top: -1.2rem;
      left: -1.2rem;
      width: 70px;
      height: 70px;
      border-top: 2px solid #00ae7d;
      border-left: 2px solid #00ae7d;
  }

  /* Text block */
  .story-label {
      display: inline-block;
      font-size: .7rem;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: #00ae7d;
      background: #d9f5ed
      padding: .35rem 1rem;
      border-radius: 2px;
      margin-bottom: 1.4rem;
  }

  .story-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 400;
      color: #00ae7d;
      line-height: 1.2;
      margin-bottom: 1.8rem;
  }

  .story-heading em {
      font-style: italic;
      color: #333333;
  }

  .story-body {
      font-size: .94rem;
      line-height: 1.95;
      color: #4a5a6a;
      margin-bottom: 1.2rem;
  }

  .divider-line {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #00ae7d, #00ae7d);
      margin: 2rem 0;
      border-radius: 2px;
  }

  .story-stat-row {
      display: flex;
      gap: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(25, 121, 185, .15);
  }

  .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: #00ae7d;
      line-height: 1;
  }

  .stat-num sup {
      font-size: 1.1rem;
      color: #333333;
  }

  .stat-label {
      font-size: .7rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: #7a8a9a;
      margin-top: .4rem;
  }

  /* ════════════════════════════════
       OUR RESORT VALUES
    ════════════════════════════════ */
  .values {
      padding: 8rem 0;
      background: #00ae7d;
      position: relative;
      overflow: hidden;
  }

  .values::before {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      border: 60px solid #009c74;
      pointer-events: none;
  }

  .values::after {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      border: 40px solid rgba(255, 255, 255, .07);
      pointer-events: none;
  }

  .values-head {
      text-align: center;
      margin-bottom: 4.5rem;
      position: relative;
      z-index: 1;
  }

  .values-head .sec-tag {
      display: inline-block;
      font-size: .7rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: #333333;
      background: #fff;
      padding: .38rem 1.2rem;
      border-radius: 2px;
      margin-bottom: 1.2rem;
  }

  .values-head h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-weight: 300;
      color: #ffffff;
      line-height: 1.15;
  }

  .values-head h2 em {
      font-style: italic;
      color: #333333;
  }

  .values-head p {
      margin-top: 1rem;
      color: rgba(255, 255, 255, .55);
      font-size: .93rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      letter-spacing: .04em;
  }

  .diamond-rule {
      display: flex;
      align-items: center;
      gap: .8rem;
      margin: -1.8rem auto 0;
      max-width: 260px;
  }

  .diamond-rule::before,
  .diamond-rule::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(198, 217, 106, .4);
  }

  .diamond {
      width: 7px;
      height: 7px;
      background: #333333;
      transform: rotate(45deg);
  }

  .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      position: relative;
      z-index: 1;
  }

  .value-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 4px;
      padding: 2.8rem 2.4rem;
      position: relative;
      overflow: hidden;
      transition: background .35s, transform .35s, border-color .35s;
      cursor: default;
  }

  .value-card::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #00ae7d, #c6d96a);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .45s cubic-bezier(.25, .46, .45, .94);
  }

  .value-card:hover {
      background: rgba(255, 255, 255, .13);
      border-color: rgba(255, 255, 255, .22);
      transform: translateY(-5px);
  }

  .value-card:hover::after {
      transform: scaleX(1);
  }

  .value-num {
      position: absolute;
      top: 1.2rem;
      right: 1.5rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 4.5rem;
      font-weight: 300;
      color: #333;
      line-height: 1;
      transition: color .35s;
  }

  .value-card:hover .value-num {
      color: rgba(198, 217, 106, .14);
  }

  .value-icon-wrap {
      width: 52px;
      height: 52px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.4rem;
      transition: background .35s;
  }

  .value-card:hover .value-icon-wrap {
      background: #eee;
  }

  .value-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 400;
      color: #ffffff;
      margin-bottom: .85rem;
  }

  .value-text {
      font-size: .86rem;
      line-height: 1.85;
      color: rgba(255, 255, 255, .55);
  }

  .value-tag {
      display: inline-block;
      margin-top: 1.4rem;
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: #333333;
      border-bottom: 1px solid rgba(198, 217, 106, .4);
      padding-bottom: .2rem;
  }

  /* ════════════════════════════════
       TEAM SECTION
    ════════════════════════════════ */
  .team {
      padding: 7rem 0;
      background: #f0f6fb;
      position: relative;
  }

  .team::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #00ae7d, #00ae7d);
  }

  .team-head {
      text-align: center;
      margin-bottom: 4rem;
  }

  .team-head .sec-tag {
      display: inline-block;
      font-size: .7rem;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: #333333;
      background: rgba(136, 159, 46, .1);
      padding: .38rem 1.1rem;
      border-radius: 2px;
      margin-bottom: 1rem;
  }

  .team-head h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      color: #00ae7d;
  }

  .team-head h2 em {
      font-style: italic;
      color: #00ae7d;
  }

  .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
  }

  .team-card {
      text-align: center;
      transition: transform .3s;
  }

  .team-card:hover {
      transform: translateY(-6px);
  }

  .team-avatar {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      margin-bottom: 1.4rem;
      position: relative;
      overflow: hidden;
  }

  .team-card:nth-child(odd) .team-avatar {
      background: linear-gradient(145deg, #00ae7d, #00ae7d);
  }

  .team-card:nth-child(even) .team-avatar {
      background: linear-gradient(145deg, #00ae7d, #5a6b1e);
  }

  .team-avatar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 45%;
      background: linear-gradient(to top, rgba(0, 0, 0, .3), transparent);
  }

  .team-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 400;
      color: #00ae7d;
      margin-bottom: .3rem;
  }

  .team-role {
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #00ae7d;
  }

  .team-quote {
      margin-top: .85rem;
      font-size: .82rem;
      color: #6a7a8a;
      font-style: italic;
      line-height: 1.6;
  }

  /* ════════════════════════════════
       PROMISE / PLEDGE
    ════════════════════════════════ */
  .promise {
      padding: 7rem 0;
      background: #333333;
      position: relative;
      overflow: hidden;
  }

  .promise::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      border: 70px solid rgba(255, 255, 255, .08);
      pointer-events: none;
  }

  .promise::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      border: 50px solid #666;
      pointer-events: none;
  }

  .promise-inner {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
      padding: 0 3rem;
      position: relative;
      z-index: 1;
  }

  .promise-inner .sec-tag {
      display: inline-block;
      font-size: .7rem;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .8);
      border: 1px solid rgba(255, 255, 255, .35);
      padding: .38rem 1.2rem;
      border-radius: 2px;
      margin-bottom: 2rem;
  }

  .promise-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      font-weight: 300;
      font-style: italic;
      color: #ffffff;
      line-height: 1.45;
      margin-bottom: 1.8rem;
  }

  .promise-attr {
      font-size: .75rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .7);
  }

  .promise-cta {
      margin-top: 3rem;
      display: inline-flex;
      align-items: center;
      gap: .85rem;
      padding: 1rem 2.4rem;
      background: #00ae7d;
      color: #ffffff;
      font-family: 'Jost', sans-serif;
      font-size: .76rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background .3s, transform .2s;
  }

  .promise-cta:hover {
      background: #00ae7d;
      transform: translateY(-2px);
  }

  .promise-cta svg {
      width: 14px;
  }




  /* ════════════════════════════════
       SCROLL REVEALS
    ════════════════════════════════ */
  .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .75s cubic-bezier(.25, .46, .45, .94),
          transform .75s cubic-bezier(.25, .46, .45, .94);
  }

  .reveal.visible {
      opacity: 1;
      transform: none;
  }

  .reveal-d1 {
      transition-delay: .1s;
  }

  .reveal-d2 {
      transition-delay: .2s;
  }

  .reveal-d3 {
      transition-delay: .3s;
  }

  .reveal-d4 {
      transition-delay: .4s;
  }

  /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
  @media (max-width: 960px) {
      .story-grid {
          grid-template-columns: 1fr;
          gap: 3rem;
      }

      .story-img-wrap {
          display: none;
      }

      .values-grid {
          grid-template-columns: 1fr 1fr;
      }

      .team-grid {
          grid-template-columns: 1fr 1fr;
      }

      .section-inner {
          padding: 0 1.8rem;
      }
  }

  @media (max-width: 580px) {
      .values-grid {
          grid-template-columns: 1fr;
      }

      .story-stat-row {
          gap: 1.5rem;
      }
  }

  .values .cmn-heading span {
      color: var(--secondary-color);
  }

  /* ---------------------- */
  /* ══════════════════════════
       LAYOUT WRAPPER
    ══════════════════════════ */
  .page-wrap {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 3rem;
      align-items: start;
  }

  /* ══════════════════════════
       LEFT COLUMN
    ══════════════════════════ */

  /* ── Room Title ── */
  .room-title-block {
      margin-bottom: 1.8rem;
  }

  .room-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(25, 121, 185, .08);
      color: #00ae7d;
      font-size: .68rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: .3rem .9rem;
      border-radius: 2px;
      margin-bottom: .9rem;
      border-left: 3px solid #00ae7d;
  }

  .room-badge .dot {
      width: 5px;
      height: 5px;
      background: #333333;
      border-radius: 50%;
  }

  .room-title {
     font-family: "Playfair Display", serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      color: #00ae7d;
      line-height: 1.15;
  }

  .room-title em {
      font-style: italic;
      color: #00ae7d;
  }

  .room-subtitle {
      margin-top: .5rem;
      font-size: .85rem;
      color: #6a7a8a;
      letter-spacing: .06em;
  }

  .title-underline {
      display: flex;
      align-items: center;
      gap: .8rem;
      margin-top: 1.1rem;
  }

  .title-underline span:first-child {
      width: 50px;
      height: 2px;
      background: #00ae7d;
      display: block;
  }

  .title-underline span:last-child {
      width: 8px;
      height: 8px;
      background: #333333;
      transform: rotate(45deg);
      display: block;
  }

  /* ── Main Image Gallery ── */
  .gallery-wrap {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 1rem;
      background: #00ae7d;
  }
  .gallery-wrap .gallery-main img{
    width: 100%;
  }
  .gallery-main {
      width: 100%;
      aspect-ratio: 16/9;
      position: relative;
      overflow: hidden;
  }

  .gallery-slide {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 7rem;
      opacity: 0;
      transition: opacity .55s ease;
  }

  .gallery-slide.active {
      opacity: 1;
  }

  .slide-1 {
      background: linear-gradient(135deg, #00ae7d 0%, #00ae7d 40%, #00ae7d 100%);
  }

  .slide-2 {
      background: linear-gradient(145deg, #00ae7d 0%, #5a6b1e 40%, #00ae7d 100%);
  }

  .slide-3 {
      background: linear-gradient(160deg, #00ae7d 0%, #00ae7d 50%, #c6d96a 100%);
  }

  .slide-4 {
      background: linear-gradient(120deg, #5a6b1e 0%, #00ae7d 50%, #00ae7d 100%);
  }

  .slide-5 {
      background: linear-gradient(150deg, #00ae7d 0%, #00ae7d 60%, #00ae7d 100%);
  }

  .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 31, 53, .55) 0%, transparent 50%);
      pointer-events: none;
      z-index: 2;
  }

  .gallery-room-name {
      position: absolute;
      bottom: 1.4rem;
      left: 1.8rem;
      z-index: 3;
      color: #fff;
  }

  .gallery-room-name strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      display: block;
  }

  .gallery-room-name span {
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      opacity: .75;
  }

  .gallery-counter {
      position: absolute;
      bottom: 1.4rem;
      right: 1.8rem;
      z-index: 3;
      font-size: .72rem;
      letter-spacing: .12em;
      color: rgba(255, 255, 255, .7);
      background: rgba(0, 0, 0, .35);
      padding: .3rem .7rem;
      border-radius: 20px;
  }

  .gallery-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 4;
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, .15);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .25s;
      color: #fff;
  }

  .gallery-arrow:hover {
      background: rgba(25, 121, 185, .6);
  }

  .gallery-arrow.prev {
      left: 1rem;
  }

  .gallery-arrow.next {
      right: 1rem;
  }

  .gallery-arrow svg {
      width: 16px;
  }

  /* Thumbnails */
  .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: .5rem;
  }

  .thumb {
      aspect-ratio: 4/3;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      border: 2px solid transparent;
      transition: border-color .25s, transform .2s;
      position: relative;
  }

  .thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(13, 31, 53, .3);
      transition: opacity .25s;
  }

  .thumb:hover::after,
  .thumb.active::after {
      opacity: 0;
  }

  .thumb.active {
      border-color: #00ae7d;
  }

  .thumb:hover {
      transform: translateY(-2px);
  }

  .thumb-1 {
      background: linear-gradient(135deg, #00ae7d, #00ae7d);
  }

  .thumb-2 {
      background: linear-gradient(135deg, #00ae7d, #5a6b1e);
  }

  .thumb-3 {
      background: linear-gradient(135deg, #00ae7d, #00ae7d);
  }

  .thumb-4 {
      background: linear-gradient(135deg, #5a6b1e, #00ae7d);
  }

  .thumb-5 {
      background: linear-gradient(135deg, #00ae7d, #00ae7d);
  }

  /* ── Section heading style ── */
  .sec-heading {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.4rem;
  }

  .sec-heading h2 {
      font-family: "Playfair Display", serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: #00ae7d;
      white-space: nowrap;
  }

  .sec-heading h2 em {
      font-style: italic;
      color: #00ae7d;
  }

  .sec-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, rgba(25, 121, 185, .3), transparent);
  }

  .sec-diamond {
      width: 7px;
      height: 7px;
      background: #333333;
      transform: rotate(45deg);
      flex-shrink: 0;
  }

  /* ── Description ── */
  .description {
      margin-top: 2.5rem;
  }

  .desc-body {
      font-size: .93rem;
      line-height: 1.95;
      color: #4a5a6a;
      margin-bottom: 1rem;
  }

  /* ── Facilities ── */
  .facilities {
      margin-top: 2.8rem;
  }

  .facilities-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
  }

  .facility-card {
      background: #ffffff;
      border: 1px solid rgba(25, 121, 185, .12);
      border-radius: 6px;
      padding: 1.4rem 1rem;
      text-align: center;
      transition: border-color .3s, box-shadow .3s, transform .25s;
      cursor: default;
  }

  .facility-card:hover {
      border-color: #00ae7d;
      box-shadow: 0 6px 24px rgba(25, 121, 185, .12);
      transform: translateY(-3px);
  }

  .facility-icon {
      font-size: 1.8rem;
      margin-bottom: .7rem;
      display: block;
  }

  .facility-name {
      font-size: .7rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #4a5a6a;
      font-weight: 400;
      line-height: 1.4;
  }

  /* ── Room Overview ── */
  .overview {
      margin-top: 2.8rem;
  }

  .overview-table {
      width: 100%;
      border-collapse: collapse;
  }

  .overview-table tr {
      border-bottom: 1px solid rgba(25, 121, 185, .08);
      transition: background .2s;
  }

  .overview-table tr:last-child {
      border-bottom: none;
  }

  .overview-table tr:hover {
      background: rgba(25, 121, 185, .03);
  }

  .overview-table td {
      padding: 1rem 1.2rem;
      font-size: .88rem;
  }

  .overview-table td:first-child {
      font-size: .7rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #333333;
      font-weight: 500;
      width: 200px;
      background: #d9f5ed;
      border-right: 2px solid #d9f5ed;
  }

  .overview-table td:last-child {
      color: #1a2535;
      font-weight: 400;
  }

  .overview-table .tag-yes {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      color: #333333;
      font-size: .82rem;
  }

  .overview-table .tag-yes::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #333333;
      border-radius: 50%;
      display: inline-block;
  }

  /* ── Terms ── */
  .terms {
      margin-top: 2.8rem;
  }

  .terms-box {
      background: rgba(25, 121, 185, .04);
      border: 1px solid rgba(25, 121, 185, .12);
      border-left: 4px solid #00ae7d;
      border-radius: 4px;
      padding: 1.6rem 1.8rem;
  }

  .terms-box p {
      font-size: .83rem;
      line-height: 1.85;
      color: #5a6a7a;
      margin-bottom: .6rem;
  }

  .terms-box p:last-child {
      margin-bottom: 0;
  }

  .terms-box strong {
      color: #00ae7d;
      font-weight: 500;
  }

  /* ══════════════════════════
       RIGHT SIDEBAR
    ══════════════════════════ */
  .sidebar {
      position: sticky;
      top: 2rem;
  }

  /* ── Room Categories ── */
  .sidebar-card {
      background: #ffffff;
      border: 1px solid rgba(25, 121, 185, .12);
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 1.5rem;
  }

  .sidebar-card-head {
      background: #00ae7d;
      padding: .9rem 1.4rem;
      display: flex;
      align-items: center;
      gap: .6rem;
  }

  .sidebar-card-head h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: #ffffff;
      letter-spacing: .04em;
  }

  .sidebar-card-head .head-dot {
      width: 6px;
      height: 6px;
      background: #333333;
      border-radius: 50%;
  }

  .cat-list {
      list-style: none;
  }

  .cat-list li {
      border-bottom: 1px solid rgba(25, 121, 185, .08);
  }

  .cat-list li:last-child {
      border-bottom: none;
  }

  .cat-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .85rem 1.4rem;
      text-decoration: none;
      font-size: .83rem;
      color: #3a4a5a;
      transition: background .2s, color .2s, padding-left .2s;
  }

  .cat-list a:hover {
      background: #d9f5ed;
      color: #00ae7d;
      padding-left: 1.8rem;
  }

  .cat-list li.active a {
      background: #d9f5ed;
      color: #333333;
      font-weight: 500;
      padding-left: 1.8rem;
      border-left: 3px solid #00ae7d;
  }

  .cat-list a svg {
      width: 12px;
      color: #c0ccd8;
  }

  .cat-list li.active a svg {
      color: #333333;
  }

  /* ── Amenities ── */
  .amenities-list {
      list-style: none;
      padding: 1rem 1.4rem;
  }

  .amenities-list li {
      display: flex;
      align-items: center;
      gap: .8rem;
      padding: .65rem 0;
      border-bottom: 1px solid rgba(25, 121, 185, .07);
      font-size: .83rem;
      color: #3a4a5a;
  }

  .amenities-list li:last-child {
      border-bottom: none;
  }

  .amenity-icon-sm {
      width: 32px;
      height: 32px;
      background: rgba(25, 121, 185, .08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      flex-shrink: 0;
  }

  /* ── Book CTA card ── */
  .book-card {
      background: linear-gradient(145deg, #00e3ac 0%, #03a880 100%);
      border-radius: 6px;
      padding: 2rem 1.6rem;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .book-card::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 40px solid rgba(255, 255, 255, .07);
      pointer-events: none;
  }

  .book-price-label {
      font-size: .68rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .65);
      margin-bottom: .3rem;
  }

  .book-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: #ffffff;
      line-height: 1;
  }

  .book-price sup {
      font-size: 1.1rem;
      vertical-align: super;
  }

  .book-price span {
      font-size: .85rem;
      opacity: .7;
  }

  .book-divider {
      width: 40px;
      height: 1px;
      background: rgba(255, 255, 255, .3);
      margin: 1rem auto;
  }

  .date-inputs {
      margin-bottom: 1rem;
  }

  .date-field {
      width: 100%;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 4px;
      padding: .7rem 1rem;
      color: #ffffff;
      font-family: 'Outfit', sans-serif;
      font-size: .82rem;
      margin-bottom: .6rem;
      outline: none;
      transition: border-color .2s, background .2s;
  }

  .date-field:focus {
      border-color: #333333;
      background: rgba(255, 255, 255, .18);
  }

  .date-field::placeholder {
      color: rgba(255, 255, 255, .5);
  }

  .date-field::-webkit-calendar-picker-indicator {
      filter: invert(1) opacity(.6);
  }

  .guest-select {
      width: 100%;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 4px;
      padding: .7rem 1rem;
      color: #ffffff;
      font-family: 'Outfit', sans-serif;
      font-size: .82rem;
      margin-bottom: 1rem;
      outline: none;
      appearance: none;
      cursor: pointer;
  }

  .guest-select option {
      background: #1a2535;
      color: #fff;
  }

  .book-btn {
      display: block;
      width: 100%;
      padding: 1rem;
      background: #333333;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      font-family: 'Outfit', sans-serif;
      font-size: .78rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .3s, transform .2s, box-shadow .3s;
      font-weight: 500;
  }

  .book-btn:hover {
      background: #6d8020;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  }

  .book-note {
      margin-top: .85rem;
      font-size: .7rem;
      color: rgba(255, 255, 255, .5);
      letter-spacing: .06em;
  }

  /* ══════════════════════════
       SCROLL REVEALS
    ══════════════════════════ */
  .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s cubic-bezier(.25, .46, .45, .94),
          transform .7s cubic-bezier(.25, .46, .45, .94);
  }

  .reveal.visible {
      opacity: 1;
      transform: none;
  }

  .reveal-d1 {
      transition-delay: .1s;
  }

  .reveal-d2 {
      transition-delay: .2s;
  }

  .reveal-d3 {
      transition-delay: .3s;
  }

  .reveal-d4 {
      transition-delay: .4s;
  }

  /* ══════════════════════════
       TOAST
    ══════════════════════════ */
  .toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: #00ae7d;
      color: #fff;
      padding: 1rem 1.6rem;
      border-radius: 6px;
      border-left: 4px solid #333333;
      font-size: .85rem;
      transform: translateY(80px);
      opacity: 0;
      transition: transform .4s cubic-bezier(.25, .46, .45, .94), opacity .4s;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: .8rem;
  }

  .toast.show {
      transform: translateY(0);
      opacity: 1;
  }

  .toast-icon {
      font-size: 1.2rem;
  }

  /* ══════════════════════════
       RESPONSIVE
    ══════════════════════════ */
  @media (max-width: 1060px) {
      .page-wrap {
          grid-template-columns: 1fr;
      }

      .sidebar {
          position: static;
      }

      .facilities-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  @media (max-width: 640px) {
      .page-wrap {
          padding: 1.5rem 1.2rem 4rem;
      }

      .facilities-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .gallery-thumbs {
          grid-template-columns: repeat(5, 1fr);
      }

      .breadcrumb {
          padding: .65rem 1.2rem;
      }
  }

  .room-details {
      padding: 100px 0;
  }

  /* ------------------------------ */
  /* ══════════════════════════════════
       HERO INTRO SECTION
    ══════════════════════════════════ */
  .pool-hero {
      background: #ffffff;
      padding: 5rem 0 4rem;
      position: relative;
      overflow: hidden;
  }

  .pool-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #00ae7d, #00ae7d);
  }

  /* Decorative circles */
  .pool-hero::after {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      border: 70px solid rgba(25, 121, 185, .05);
      pointer-events: none;
  }

  .deco-circle-2 {
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      border: 50px solid rgba(136, 159, 46, .06);
      pointer-events: none;
  }

  .hero-inner {
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
  }

  /* Left text */
  .hero-text {}

  .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(25, 121, 185, .08);
      color: #00ae7d;
      font-size: .68rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      padding: .32rem .9rem;
      border-radius: 2px;
      margin-bottom: 1.2rem;
      border-left: 3px solid #00ae7d;
  }

  .hero-tag .dot {
      width: 5px;
      height: 5px;
      background: #333333;
      border-radius: 50%;
  }

  .hero-title {
    font-family: "Playfair Display", serif;
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 300;
      color: #00ae7d;
      line-height: 1.1;
      margin-bottom: 1.4rem;
  }

  .hero-title em {
      font-style: italic;
      color: #00ae7d;
      display: block;
  }

  .hero-rule {
      display: flex;
      align-items: center;
      gap: .8rem;
      margin-bottom: 1.6rem;
  }

  .hero-rule span:first-child {
      width: 50px;
      height: 2px;
      background: #00ae7d;
      display: block;
  }

  .hero-rule span:last-child {
      width: 8px;
      height: 8px;
      background: #333333;
      transform: rotate(45deg);
      display: block;
  }

  .hero-desc {
      font-size: .95rem;
      line-height: 1.95;
      color: #4a5a6a;
      margin-bottom: 1.4rem;
  }

  .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(25, 121, 185, .12);
  }

  .stat-item {}

  .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: #00ae7d;
      line-height: 1;
  }

  .stat-num sup {
      font-size: 1rem;
      color: #333333;
  }

  .stat-label {
      font-size: .68rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: #7a8a9a;
      margin-top: .35rem;
  }

  /* Right feature card */
  .hero-feature {
      background: linear-gradient(145deg, #00ae7d 0%, #00ae7d 60%, #00ae7d 100%);
      border-radius: 8px;
      padding: 3rem 2.5rem;
      color: #fff;
      position: relative;
      overflow: hidden;
  }

  .hero-feature::before {
      content: '🏊';
      position: absolute;
      top: -1rem;
      right: 1rem;
      font-size: 9rem;
      opacity: .1;
  }

  .feature-list {
      list-style: none;
  }

  .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: .9rem;
      padding: .9rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      font-size: .88rem;
      color: rgba(255, 255, 255, .85);
      line-height: 1.5;
  }

  .feature-list li:last-child {
      border-bottom: none;
  }

  .feat-icon {
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, .15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
  }

  .feat-text strong {
      display: block;
      font-size: .75rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #333333;
      margin-bottom: .2rem;
      font-weight: 500;
  }

  /* ══════════════════════════════════
       POOL HOURS STRIP
    ══════════════════════════════════ */
  .hours-strip {
      background: #00ae7d;
      padding: 1.2rem 0;
  }

  .hours-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
  }

  .hours-item {
      display: flex;
      align-items: center;
      gap: .8rem;
      color: rgba(255, 255, 255, .75);
      font-size: .8rem;
      letter-spacing: .06em;
  }

  .hours-item .h-icon {
      font-size: 1.1rem;
  }

  .hours-item strong {
      color: #333333;
      font-weight: 500;
  }

  .hours-sep {
      width: 1px;
      height: 28px;
      background: rgba(255, 255, 255, .15);
  }

  /* ══════════════════════════════════
       GALLERY SECTION
    ══════════════════════════════════ */
  .gallery-section {
      padding: 5rem 0;
  }

  .gallery-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
  }

  /* Section heading */
  .sec-head {
      text-align: center;
      margin-bottom: 3rem;
  }

  .sec-head .tag {
      display: inline-block;
      font-size: .68rem;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: #333333;
      background: #d9f5ed;
      padding: .32rem 1rem;
      border-radius: 2px;
      margin-bottom: 1rem;
  }

  .sec-head h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 3.5vw, 2.9rem);
      font-weight: 400;
      color: #00ae7d;
      line-height: 1.2;
  }

  .sec-head h2 em {
      font-style: italic;
      color: #00ae7d;
  }

  .diamond-rule {
      display: flex;
      align-items: center;
      gap: .8rem;
      margin: 1rem auto 0;
      max-width: 220px;
  }

  .diamond-rule::before,
  .diamond-rule::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(25, 121, 185, .25);
  }

  .diamond {
      width: 7px;
      height: 7px;
      background: #333333;
      transform: rotate(45deg);
  }

  /* Filter buttons */
  .filter-bar {
      display: flex;
      justify-content: center;
      gap: .6rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
  }

  .filter-btn {
      padding: .5rem 1.4rem;
      border-radius: 30px;
      border: 1px solid rgba(25, 121, 185, .25);
      background: #ffffff;
      color: #4a5a6a;
      font-family: 'Outfit', sans-serif;
      font-size: .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .25s, color .25s, border-color .25s, transform .2s;
  }

  .filter-btn:hover {
      border-color: #00ae7d;
      color: #00ae7d;
      transform: translateY(-1px);
  }

  .filter-btn.active {
      background: #00ae7d;
      color: #fff;
      border-color: #00ae7d;
  }

  /* Masonry Grid */
  .masonry {
      columns: 3;
      column-gap: 1rem;
  }

  .masonry-item {
      break-inside: avoid;
      margin-bottom: 1rem;
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      display: block;
  }

  .masonry-item .photo-frame {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      transition: transform .5s cubic-bezier(.25, .46, .45, .94);
      position: relative;
  }

  /* Different heights for masonry feel */
  .masonry-item:nth-child(1) .photo-frame {
      height: 280px;
      background: linear-gradient(145deg, #00ae7d, #00ae7d);
  }

  .masonry-item:nth-child(2) .photo-frame {
      height: 200px;
      background: linear-gradient(145deg, #00ae7d, #5a6b1e);
  }

  .masonry-item:nth-child(3) .photo-frame {
      height: 240px;
      background: linear-gradient(145deg, #00ae7d, #00ae7d, #c6d96a);
  }

  .masonry-item:nth-child(4) .photo-frame {
      height: 220px;
      background: linear-gradient(145deg, #5a6b1e, #00ae7d);
  }

  .masonry-item:nth-child(5) .photo-frame {
      height: 300px;
      background: linear-gradient(145deg, #00ae7d, #00ae7d, #00ae7d);
  }

  .masonry-item:nth-child(6) .photo-frame {
      height: 200px;
      background: linear-gradient(145deg, #00ae7d, #00ae7d);
  }

  .masonry-item:nth-child(7) .photo-frame {
      height: 260px;
      background: linear-gradient(145deg, #00ae7d, #00ae7d);
  }

  .masonry-item:nth-child(8) .photo-frame {
      height: 230px;
      background: linear-gradient(145deg, #00ae7d, #c6d96a);
  }

  .masonry-item:nth-child(9) .photo-frame {
      height: 280px;
      background: linear-gradient(145deg, #00ae7d, #00ae7d);
  }

  /* Overlay */
  .photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 31, 53, .75) 0%, rgba(13, 31, 53, .1) 60%, transparent 100%);
      opacity: 0;
      transition: opacity .4s;
      display: flex;
      align-items: flex-end;
      padding: 1.2rem;
  }

  .masonry-item:hover .photo-overlay {
      opacity: 1;
  }

  .masonry-item:hover .photo-frame {
      transform: scale(1.04);
  }

  .overlay-text {
      color: #fff;
  }

  .overlay-text strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
  }

  .overlay-text span {
      font-size: .68rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #333333;
      opacity: .85;
  }

  /* Zoom icon */
  .zoom-icon {
      position: absolute;
      top: .8rem;
      right: .8rem;
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, .2);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .85rem;
      opacity: 0;
      transition: opacity .35s;
  }

  .masonry-item:hover .zoom-icon {
      opacity: 1;
  }

  /* ══════════════════════════════════
       LIGHTBOX
    ══════════════════════════════════ */
  .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(13, 31, 53, .96);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 2rem;
  }

  .lightbox.open {
      display: flex;
  }

  .lightbox-content {
      position: relative;
      max-width: 860px;
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
      animation: lbIn .35s cubic-bezier(.25, .46, .45, .94);
  }

  @keyframes lbIn {
      from {
          opacity: 0;
          transform: scale(.92);
      }

      to {
          opacity: 1;
          transform: scale(1);
      }
  }

  .lightbox-frame {
      width: 100%;
      height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8rem;
  }

  .lightbox-bar {
      background: #00ae7d;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 2px solid #00ae7d;
  }

  .lb-info strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: #fff;
      display: block;
  }

  .lb-info span {
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #333333;
  }

  .lb-counter {
      font-size: .78rem;
      color: rgba(255, 255, 255, .5);
      letter-spacing: .1em;
  }

  .lb-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, .12);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
  }

  .lb-close:hover {
      background: #00ae7d;
  }

  .lb-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      background: rgba(25, 121, 185, .4);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 50%;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
      font-size: 1rem;
  }

  .lb-arrow:hover {
      background: #00ae7d;
  }

  .lb-arrow.prev {
      left: -55px;
  }

  .lb-arrow.next {
      right: -55px;
  }

  /* ══════════════════════════════════
       POOL RULES
    ══════════════════════════════════ */
  .rules-section {
      background: #ffffff;
      padding: 5rem 0;
      position: relative;
  }

  .rules-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #00ae7d, #00ae7d;);
  }

  .rules-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
  }

  .rules-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
  }

  .rule-card {
      background: #d9f5ed;
      border: 1px solid rgba(25, 121, 185, .1);
      border-radius: 6px;
      padding: 2rem 1.8rem;
      border-top: 3px solid transparent;
      transition: border-color .3s, box-shadow .3s, transform .25s;
  }

  .rule-card:nth-child(odd) {
      border-top-color: #00ae7d;
  }

  .rule-card:nth-child(even) {
      border-top-color: #333333;
  }

  .rule-card:hover {
      box-shadow: 0 8px 28px rgba(25, 121, 185, .1);
      transform: translateY(-4px);
  }

  .rule-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      display: block;
  }

  .rule-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: #00ae7d;
      margin-bottom: .6rem;
  }

  .rule-text {
      font-size: .85rem;
      line-height: 1.8;
      color: #5a6a7a;
  }

  /* ══════════════════════════════════
    /* ══════════════════════════════════
       SCROLL REVEAL
    ══════════════════════════════════ */
  .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .75s cubic-bezier(.25, .46, .45, .94),
          transform .75s cubic-bezier(.25, .46, .45, .94);
  }

  .reveal.visible {
      opacity: 1;
      transform: none;
  }

  .reveal-d1 {
      transition-delay: .1s;
  }

  .reveal-d2 {
      transition-delay: .2s;
  }

  .reveal-d3 {
      transition-delay: .3s;
  }

  .reveal-d4 {
      transition-delay: .4s;
  }

  .reveal-d5 {
      transition-delay: .5s;
  }

  /* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
  @media (max-width: 960px) {
      .hero-inner {
          grid-template-columns: 1fr;
          gap: 3rem;
      }

      .masonry {
          columns: 2;
      }

      .rules-grid {
          grid-template-columns: 1fr 1fr;
      }

      .hours-inner {
          flex-direction: column;
          align-items: flex-start;
      }

      .hours-sep {
          display: none;
      }
  }

  @media (max-width: 580px) {
      .masonry {
          columns: 1;
      }

      .rules-grid {
          grid-template-columns: 1fr;
      }

      .gallery-inner,
      .hero-inner,
      .rules-inner {
          padding: 0 1.2rem;
      }

      .breadcrumb {
          padding: .65rem 1.2rem;
      }

      .hours-inner {
          padding: 0 1.2rem;
      }

      .lb-arrow {
          display: none;
      }
  }

  .values .cmn-heading{
    margin-bottom: 0;
  }

  /* contact-us-css */
  /* ── PAGE TITLE BLOCK ── */
    .atr-title-block {
      text-align: center;
      margin-bottom: 54px;
    }

    .atr-title-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #333333;
      margin-bottom: 14px;
    }
    .atr-title-eyebrow::before,
    .atr-title-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: #333333;
      opacity: 0.7;
    }

    .atr-title-block h1 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      color: #00ae7d;
      line-height: 1.15;
      letter-spacing: 0.01em;
    }

    .atr-title-block h1 em {
      font-style: italic;
      color: #333333;
    }

    .atr-title-desc {
      margin-top: 14px;
      font-size: 0.88rem;
      font-weight: 300;
      color: #5a5a4e;
      letter-spacing: 0.03em;
      line-height: 1.7;
    }

    .atr-ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
    }
    .atr-ornament-line {
      width: 56px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #00ae7d);
      opacity: 0.45;
    }
    .atr-ornament-line--rev {
      background: linear-gradient(90deg, #00ae7d, transparent);
    }
    .atr-ornament-diamond {
      width: 7px;
      height: 7px;
      border: 1.5px solid #00ae7d;
      transform: rotate(45deg);
      opacity: 0.7;
    }

    /* ── TWO-COLUMN LAYOUT ── */
    .atr-two-col {
      display: grid;
      grid-template-columns: 1fr 1.18fr;
      gap: 32px;
      align-items: start;
    }

    /* ── INFO COLUMN ── */
    .atr-info-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .atr-info-card {
      background: #ffffff;
      border-radius: 4px 14px 14px 4px;
      border-left: 4px solid #00ae7d;
      padding: 26px 26px 22px;
      position: relative;
      overflow: hidden;
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }
    .atr-info-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(25, 121, 185, 0.11);
    }
    .atr-info-card--green {
      border-left-color: #333333;
    }
    .atr-info-card::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 70px;
      height: 70px;
      border-radius: 0 14px 0 70px;
      background: #00ae7d;
      opacity: 0.04;
    }
    .atr-info-card--green::after {
      background: #333333;
    }

    .atr-info-icon-wrap {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #d9f5ed;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 13px;
    }
    .atr-info-icon-wrap i{
        color: var(--secondary-color);
    }
    .atr-info-card--green .atr-info-icon-wrap {
      background: #d9f5ed;
    }

    .atr-info-card-title {
      font-family: "Playfair Display", serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--primary-color);
      margin-bottom: 9px;
    }

    .atr-info-text {
      font-size: 17px;
      font-weight: 300;
      color: #4a4a40;
      line-height: 1.85;
    }

    .atr-info-link {
      font-size: 17px;
      font-weight: 300;
      color: #4a4a40;
      line-height: 1.85;
      text-decoration: none;
      display: block;
      transition: color 0.2s;
    }
    .atr-info-link:hover { color: #00ae7d; }

    .atr-hours-table {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px 14px;
      margin-top: 2px;
    }
    .atr-hours-table-key {
      font-size: 0.79rem;
      font-weight: 300;
      color: #4a4a40;
    }
    .atr-hours-table-val {
      font-size: 0.79rem;
      font-weight: 400;
      color: #5e6f1e;
    }

    .atr-social-row {
      display: flex;
      gap: 10px;
      margin-top: 12px;
    }
    .atr-social-icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      border: 1px solid rgba(25, 121, 185, 0.25);
      background: rgba(25, 121, 185, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.88rem;
      color: #00ae7d;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
    }
    .atr-social-icon:hover {
      background: #00ae7d;
      border-color: #00ae7d;
      color: #fff;
      transform: translateY(-2px);
    }

    /* ── FORM COLUMN ── */
    .atr-form-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 42px 42px 38px;
      box-shadow: 0 4px 36px rgba(0, 0, 0, 0.07);
      position: relative;
      overflow: hidden;
    }
    .atr-form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #00ae7d, #00cf9a);
    }

    .atr-form-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 1.7rem;
      color: #00ae7d;
      margin-bottom: 4px;
    }

    .atr-form-subhead {
      font-size: 0.8rem;
      font-weight: 300;
      color: #777;
      margin-bottom: 28px;
      letter-spacing: 0.02em;
    }

    .atr-field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .atr-field-wrap {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }

    .atr-field-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #5a5a50;
    }

    .atr-field-input,
    .atr-field-select,
    .atr-field-textarea {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.87rem;
      font-weight: 300;
      color: #1c1c18;
      background: #f6f2ec;
      border: 1.5px solid transparent;
      border-radius: 8px;
      padding: 12px 15px;
      outline: none;
      width: 100%;
      transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    }
    .atr-field-input::placeholder,
    .atr-field-textarea::placeholder { color: #bbb8ae; }

    .atr-field-input:focus,
    .atr-field-select:focus,
    .atr-field-textarea:focus {
      border-color: #00ae7d;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(25, 121, 185, 0.08);
    }

    .atr-field-select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11'%3E%3Cpath fill='%231979B9' d='M5.5 7.5L1 2h9z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 13px center;
      background-color: #f6f2ec;
    }

    .atr-field-textarea {
      resize: vertical;
      min-height: 105px;
    }

    .atr-submit-btn {
      width: 100%;
      padding: 15px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(135deg, #00ae7d 0%, #00ae7d 50%, #00ae7d 100%);
      background-size: 200% 200%;
      background-position: 0% 50%;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 4px;
      transition: background-position 0.5s, transform 0.2s, box-shadow 0.3s;
    }
    .atr-submit-btn:hover {
      background-position: 100% 50%;
      transform: translateY(-2px);
      box-shadow: 0 8px 26px #00ae7d;
    }
    .atr-submit-btn:active { transform: translateY(0); }
    .atr-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

    /* ── SUCCESS STATE ── */
    .atr-success-panel {
      display: none;
      text-align: center;
      padding: 24px 0 8px;
    }
    .atr-success-check {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00ae7d, #00ae7d);
      color: #fff;
      font-size: 1.35rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      animation: atrPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    @keyframes atrPopIn {
      from { transform: scale(0); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }
    .atr-success-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 400;
      color: #00ae7d;
      margin-bottom: 8px;
    }
    .atr-success-text {
      font-size: 0.84rem;
      font-weight: 300;
      color: #5a5a4e;
      line-height: 1.75;
    }

    /* ── MAP SECTION ── */
    .atr-map-wrap {
      margin-top: 64px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 36px rgba(0, 0, 0, 0.1);
      position: relative;
    }
    .atr-map-badge {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 10;
      background: #00ae7d;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 40px;
    }
    .atr-map-frame {
      display: block;
      width: 100%;
      height: 340px;
      border: none;
      filter: saturate(0.85) brightness(1.02);
    }

    /* ── SCROLL FADE ── */
    .atr-fade {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .atr-visible {
      opacity: 1;
      transform: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 840px) {
      .atr-page-wrap { padding: 40px 20px 60px; }
      .atr-two-col { grid-template-columns: 1fr; }
      .atr-form-card { padding: 28px 22px 24px; }
      .atr-field-row { grid-template-columns: 1fr; }
    }
    .atr-page-wrap{
        padding: 100px 0;
    }
    .atr-title-block .cmn-heading {
        margin-bottom: 0;
    }