/*!
 * Project Name: Altis Ocean Cliff Landing Page
 * Author: Tamil Selva
 * Version: 1.2.1
 * Description: Custom CSS for layout, styling, and responsive design.
 * Created: 30 June 2025
 * Updated: 26 Sept 2025
 */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Castoro+Titling&family=Castoro:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Castoro Titling", serif;
}

p,
ul,
ol,
li,
a,
span,
button {
  font-family: "Lato", sans-serif;
}

textarea {
  resize: none;
}
/* Typography */

/* Root Variables */
:root {
  --primary-color: #e0d7ce;
  --secondary-color: #147d81;
  --tertiary-color: #ba7e5c;
  --quaternary-color: #fabe75;
  --white-color: #fff;
  --black-color: #000;
}
/* Root Variables */

/* Custom scroll bar */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: var(--tertiary-color);
}
/* Custom scroll bar */

/* Custom cursor */
body,a,button,option{
  cursor: url(../images/icons/cur.png), auto !important;
}
/* Custom cursor */

/* Header section starts */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(245, 245, 245, 0.922);
  transition: background-color 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid gray;
}

.main-header:hover {
  background-color: var(--primary-color);
}

.main-header.scrolled {
  background-color: var(--primary-color);
}

.logo {
  width: 200px;
  height: 50px;
  object-fit: contain;
}

.logo-extra {
  display: flex;
  align-items: center;
}

.nav-links ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: var(--tertiary-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  position: relative;
  transition: color 0.4s ease;
  padding: 5px 0;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary-color);
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.large-enq-btn {
  display: inline-block;
  padding: 5px;
  border: 1px solid var(--secondary-color);
  transition: transform 0.5s ease;
}

.large-enq-btn:hover {
  transform: scale(0.85);
}

.enquire-btn {
  padding: 10px 20px;
  background-color: var(--secondary-color);
  border: none;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.enquire-btn:hover {
  background-color: var(--secondary-color);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  margin-left: 20px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100vh;
  background-color: var(--primary-color);
  padding: 60px 30px;
  transition: left 0.3s ease;
  z-index: 999;
  text-align: center;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.mobile-menu a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 18px;
}

.mobile-menu.active {
  left: 0;
}

/* Hamburger X toggle */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Enquire Now Button */
.mobile-enq-btn {
  display: none;
}
.mobile-enq-btn .enquire-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1100;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .large-enq-btn {
    display: none;
  }
  .hamburger {
    display: flex;
    position: relative;
    left: -20px;
  }
  .main-header > div > img {
    width: 110px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 15px 20px;
  }
  .main-header > div > img {
    width: 150px;
    height: 40px;
  }
  .mobile-enq-btn {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .header-actions {
    display: none;
  }
}
/* Header section ends */



/* Main Section starts */
.video-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 80px; */
}

.video-hero {
  height: calc(100vh + 100px); /* Optional: to allow the fade area to be fully visible */
}

.video-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px; /* Adjust if you want longer fade */
  background: linear-gradient(to bottom, #6b6a6a04 0%, #2c9c9c 100%, #2c9c9c 100%);
  z-index: 2;
  pointer-events: none;
}




/* Background video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.video-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 37, 37, 0.452); /* increased darkness slightly */
  z-index: 2;
}

/* Content container */
.video-content {
  position: relative;
  z-index: 3; /* must be above overlay */
  text-align: center;
  color: var(--white-color);
  padding: 20px;
  margin: 0 auto;
}

/* Custom hero wrapper */
.custom-hero {
  position: relative;
  z-index: 3; /* same as .video-content */
  text-align: center;
  color: var(--white-color);
  padding: 60px 50px;
  margin: 0 auto;
}

/* Top label */
.custom-hero h5 {
  font-size: 1rem;
  letter-spacing: 2.5px;
  font-weight: 500;
  margin-bottom: 10px;
  border-bottom: 1px solid #ffffff82;
  display: inline-block;
  padding-bottom: 5px;
  color: var(--white-color);
}

/* Main title */
.custom-hero h1 {
  font-size: 4rem;
  font-weight: 200;
  margin-bottom: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  font-family: "cormorant garamond", serif;
  color: var(--white-color);
  letter-spacing: 5px;
}

/* Subsection (two-column layout) */
.custom-hero-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  gap: 30px;
  flex-wrap: wrap; /* Added for responsiveness */
  margin-top: 20px;
}

/* Text section one */
.custom-hero-text-one > p {
  font-size: 1.1rem;
  max-width: 850px;
  line-height: 1.6;
  margin: 0 auto;
  color: var(--white-color);
  font-weight: 300;
  letter-spacing: 0.8px;
  font-family: 'Lato', serif;
}

/* Text section two */
.custom-hero-text-two > h2 {
  font-size: 2.7rem;
  font-weight: 400;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .video-content h1 {
    font-size: 2rem;
  }

  .video-content p {
    font-size: 1rem;
  }
}

/* Main Section ends */



/* Welcome Section */

/* .welcome-main-section {
  padding: 20px 30px;
  background-color: var(--primary-color);
}

.welcome-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
  height: 300px;
}

.welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url(../images/icons/Ocean.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.welcome-section > p {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  max-width: 900px;
  line-height: 1.3;
  margin: 0 auto;
  color: var(--tertiary-color);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
} */

/* Welcome Section Ends */

/* About Section starts */
.about-section {
  text-align: center;
  margin-top: 50px ;
    /* background: #096669ab; */
}
.facts-section {
  /* background-color: #1e2a36;  */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* padding: 60px 40px; */
  /* color: white; */
  text-align: center;
  gap: 10px;
  /* border: 1px solid rgb(0, 0, 0); */
  margin: 0 90px;
}

.fact-item {
  flex: 1 1 100px;
  padding: 15px;
  border-right: 1px solid rgba(155, 155, 155, 0.404);
  /* background-color: red; */
}

.fact-item:last-child {
  border-right: none;
}

.fact-item img {
  width: 35px;
  height: 35px;
  margin-bottom: 10px;
}


.fact-item h1 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
  color: var(--secondary-color);
  /* font-family: 'Lora', serif; */
}

.fact-item h2 {
  font-size: 1.7rem;
  margin: 0;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: 'Lora', serif;
}

.fact-item p {
  font-size: 12px;
  line-height: 1.7;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 300;
}

/* About Section ends */

.carousel-container {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  max-width: 100%;
  margin: 30px;
}

.carousel-container > h2 {
  text-align: center;
  padding: 40px 0;
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-weight: 300;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease-in-out;
}

.carousel-track img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 8px;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(20, 125, 129, 0);
  color: #fff;
  border: none;
  padding: 5px 14px;
  cursor: pointer;
  font-size: 24px;
  z-index: 2;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.arrow:hover {
  background-color: rgba(20, 125, 129, 1);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.carousel-item {
  position: relative;
  flex-shrink: 0;

  img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.5s ease;
    display: block;
  }

  .caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  &:hover img {
    filter: brightness(40%);
  }

  &:hover .caption {
    opacity: 1;
  }
}


/* Our Space Section starts */

.facilities-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 10px;
}

.facilities-header {
  position: relative;
  top: 0;
  background: var(--white-color);
  text-align: center;
  margin: 30px 0;
  z-index: 2;
}

.facilities-header p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--tertiary-color);
  margin-bottom: 10px;
}

.facilities-header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  /* margin-bottom: 30px; */
  font-weight: 300;
  padding: 30px 0;
}

.facility-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  /* background-color: var(--primary-color); */
}

.facility {
  scroll-snap-align: start;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  transition: all 0.5s ease;
}

.facility-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  position: relative;
}

.scroll-down {
  position: absolute;
  bottom: 0;
}

.scroll-down > p {
  color: var(--secondary-color);
  font-weight: 200;
}

.facility-image,
.facility-info {
  flex: 1 1 50%;
  padding: 20px;
}

.facility-image img {
  width: 100%;
  border-radius: 8px;
}

.facility-info .facility-number {
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.facility-info .facility-type {
  color: #c89b6c;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.facility-info .facility-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .facility-content {
    flex-direction: column;
  }
}

/* Optional: Hide scrollbar */
.facility-container::-webkit-scrollbar {
  display: none;
}
.facility-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* Our Space Section ends */


/* Life Style Section starts */
.party-gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 500px;
  background-image: url("../images/ab-1.jpg"); /* initial background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
  position: relative;
  margin-top: 100px;
}

.party-block {
  flex: 1 1 25%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.783);
  color: #1b1b1b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-align: center;
  padding: 20px;
}

.party-block:hover .overlay {
  opacity: 1;
}

.overlay p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.overlay p span{
  color: var(--secondary-color);
  font-weight: 600;
}

.overlay h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .party-gallery {
    flex-direction: column;
    height: auto;
  }

  .party-block {
    flex: 1 1 100%;
    height: 250px;
  }
}

/* Life Style Section ends */

/* Contact Section starts */
.modern-contact-section {
  padding: 40px;
  display: flex;
  justify-content: center;
  background: #f8f9fc;
}

.contact-wrapper {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1300px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Left Image */
.contact-image {
  flex: 1;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Form */
.contact-form-container {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-form-container p {
  color: #666;
  margin-bottom: 30px;
}
.contact-form-container a {
  color: #4f46e5;
  text-decoration: none;
}

/* Form */
.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 15px;
}
.form-group {
  flex: 1;
  position: relative;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 0.8rem;
  outline: none;
  transition: all 0.3s ease;
  background: #f9f9f9;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #c89b6c;
  background: #fff;
  box-shadow: 0 0 0 3px #147d8188;
}
textarea {
  resize: none;
  min-height: 100px;
  font-family: 'lato', sans-serif;
}
small {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: #888;
}

/* Phone Input */
.phone-group {
  display: flex;
  align-items: center;
}
.flag {
  margin-right: 10px;
}

/* Button */
.form-btn {
  background: var(--secondary-color);
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.3s ease;
}
.form-btn:hover {
  background: #2c9c9c;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-image {
    height: 250px;
  }
}






footer {
  background-color: var(--primary-color);
  color: #2c2c2c;
  text-align: center;
  font-size: 0.8rem;
  padding: 5px 0;
}

.link {
  color: #2c2c2c;
  /* background-color: rebeccapurple; */
}

/* Contact Section ends */

/* Enquire Now button starts */
/* Modal Background Overlay */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease forwards;
}

/* Modal Content */
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: scaleIn 0.3s ease forwards;
  font-family: "Inter", sans-serif;
}

/* Modal Title */
.modal-content h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-align: center;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #999;
  /* cursor: pointer; */
  transition: 0.3s ease;
}
.close-btn:hover {
  color: #333;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-group input,
.form-group select {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  background: #f9f9f9;
  transition: all 0.3s ease;
  font-family: 'lato', sans-serif;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--secondary-color);
  background: #fff;
  box-shadow: 0 0 0 3px #147d8189;
}

/* Button */
#submitBtn {
  background: linear-gradient(135deg, #147d81, #036a6d);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
#submitBtn:hover {
  background: linear-gradient(135deg, #2fa4a8, #20d3da);
  transform: translateY(-2px);
}

/* reCAPTCHA Wrapper */
.g-recaptcha {
  transform: scale(0.95);
  transform-origin: left;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 500px) {
  .modal-content {
    padding: 20px;
  }
  .form-group {
    flex-direction: column;
  }
}




@keyframes fadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Enquire Now button ends */


.location-section{
  padding: 5px;
}

.location-section>h2{
  text-align: center;
  margin: 20px 0;
  font-family: "cormorant garamond", serif;
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 500;
  text-transform: uppercase;
}

.wave-svg svg {
  width: 100%;
  height: auto;
  display: block;
}


.wave-svg svg {
  height: 120px; /* adjust as per design */
}



.luxury-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Georgia', serif;
}

.luxury-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.luxury-content {
  flex: 1;
  min-width: 300px;
}


.subtitle {
  letter-spacing: 3px;
  font-size: 13px;
  margin-top: 5px;
  color: var(--tertiary-color);
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  margin: 20px 0;
  color: var(--secondary-color);
  font-family: "cormorant garamond", serif;
  font-weight: 500;
  text-transform: uppercase;
}

.description {
  margin-bottom: 15px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.8;
}

.reservation {
  display: flex;
  align-items: center;
  margin-top: 30px;
}



.luxury-images {
  flex: 1;
  min-width: 300px;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}

.luxury-images img {
  width: 100%;
  max-width: 280px;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* Floating animations */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes floatDownUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

.float-updown {
  animation: floatUpDown 6s ease-in-out infinite;
}

.float-downup {
  animation: floatDownUp 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .luxury-container {
    flex-direction: column;
    align-items: center;
  }

  .luxury-images {
    justify-content: center;
    flex-wrap: wrap;
  }

  .luxury-images img {
    max-width: 45%;
  }
}



#backToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 1000;
  font-size: 20px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: none;
  transition: opacity 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #2c9c9c;
}



@media (max-width: 768px){
  .luxury-content>h2{
    font-size: 1.5rem !important;
  }
  .luxury-section{
    padding: 0px 20px !important;
  }
  .fact-item{
    border-right: 0 !important;
  }
  .facts-section{
    padding: 20px 20px !important;
  }
  .fact-item>h1{
    font-size: 1.2rem !important;
  }
  .fact-item p{
    font-size: 0.7rem !important;
  } 
  .facilities-header>h2{
    font-size: 1.5rem !important;
  }
  .facilities-header h2{
    padding: 5px 0;
    margin: unset !important;
  }
  .facility{
    padding: 20px !important;
  }
  .scroll-down{
    display: none !important;
  }
  .carousel-container{
    margin: 5px !important;
  }
  .carousel-container > h2{
    font-size: 1.6rem !important;
  }
  .location-section>h2{
    font-size: 1.5rem !important;
  }
  .modern-contact-section{
    padding: 20px !important;
  }
  .contact-form-container>h2{
    font-size: 1.3rem !important;
    text-align: center !important;
  }
  .contact-form-container{
    padding: 30px !important;
  }
}