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

/* RESPONSIVE */

@media (max-width: 1024px) {
   .rooms-grid {
    gap: 40px;
  }

  .room-card img {
    height: 280px;
  }
}





@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }


  .about-container {
    grid-template-columns: 1fr;
    padding: 80px 30px;
    gap: 50px;
  }

  .about-image-wrapper img {
    max-width: 100%;
  }
}






/* Mobile */
@media (max-width: 768px) {
  .menu {
    display: none; /* mobile menu later */
  }



  .hero p {
    font-size: 14px;
  }

  .brand img {
    height: 55px;
  }

  .rooms-parallax {
    padding: 90px 0;
    background-attachment: scroll; /* fixes mobile gap issue */
  }

  .rooms-grid {
    grid-template-columns: 1fr !important;
  }

  .rooms-header h2 {
    font-size: 34px;
  }

  .room-card {
    width: 100%;
  }
}





/* TABLET BREAKPOINT */
@media (max-width: 900px) and (min-width: 728px) {

  .menu a {
    font-size: 12px;
  }

  .btn-primary {
    padding: 10px 18px;
    font-size: 12px;
  }



  .hero p {
    font-size: 14px;
  }

  .brand img {
    height: 62px;
  }
}




body {
  font-family: 'Cinzel', serif;
  margin: 0;
}


body {
  margin: 0;
  font-family: 'Cinzel', serif;
}


section {
  scroll-margin-top: 68px;
}


html {
  scroll-behavior: smooth;
}



/* NAVBAR BASE */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.navbar a.active{
  color: #ff5a5f;
  font-weight: 400;
}


.navbar.scrolled {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 5px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

/* LOGO */
.brand img {
  height: 80px;
  display: block;
  transition: height 0.3s ease;
}

.navbar.scrolled .brand img {
  height: 58px;
}

/* DESKTOP MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.navbar.scrolled .menu a {
  color: #000;
}

.menu a.active {
  position: relative;
}

.menu a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d3a06f;
}



/* BUTTON */
.btn-primary {
  background: #cf9d6c;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 15px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #d3a06f;
  transition: background 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background: #000;
}


/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100px;
  background: #fff;
  padding: 80px 10px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2000;
  transition: right 0.4s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}


/* OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}


.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger span {
  transition: all 0.3s ease;
}



/* Hide hamburger on desktop */
/* Hide hamburger on desktop */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2000;
}

#hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 3px;
}

.nav-links {
  display: flex;
  gap: 30px;
  height: 100%;
  text-decoration: none;
  align-items: center;
  font-size: 16px;
}

.nav-links a {
  text-decoration: none;
  color: #333;              /* normal color */
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a.active {
  color: #000;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ff5a5f;   /* your brand color */
  transition: width 0.3s ease;
}

/* Active link */
.nav-links a.active::after {
  width: 100%;
}


/* Mobile */
@media (max-width: 992px) {

  .nav-links {
    display: none;
  }

  #hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  #hamburger span {
    width: 25px;
    height: 3px;
    background: #cf9d6c;
    border-radius: 3px;
  }

  #mobileMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 80px 20px;
    transition: right 0.4s ease;
    z-index: 1500;

  }

  #mobileMenu.active {
    right: 0;
  }

  #menuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 1400;
  }

  #menuOverlay.active {
    display: block;
  }
}








/* ==========================  HOME SECTION ========================== */


/* HERO (CRITICAL FIX) */
.hero {
  position: relative; /* 🔥 REQUIRED */
  height: 100vh;
  overflow: hidden;
}




/* SLIDES */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: -60px 0 0 0; /* allows movement */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: transform;
  backface-visibility: hidden;
}


.slide.active {
  opacity: 1;
}

/* LOCAL IMAGES */
.slide:nth-child(1) { background-image: url("../images/hero1.webp"); }
.slide:nth-child(2) { background-image: url("../images/hero2.webp"); }
.slide:nth-child(3) { background-image: url("../images/hero3.webp"); }

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* TEXT (NOW ALWAYS VISIBLE) */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;

  animation: heroFadeUp 1.4s ease forwards;
}



@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-title {
  font-size: 42px;
  font-weight: 400;
  color: #fff;

  animation: heroFadeUp 1.2s ease forwards;
}

.hero-title span {
  font-weight: 700;
}

.hero p {
  margin-top: 18px;
  color: #fff;
  font-size: 16px;


  opacity: 0;
  animation: heroFadeUp 1.2s ease forwards;
  animation-delay: 0.4s;
}



.hero p {
  opacity: 0;
  animation: heroFadeUp 1.2s ease forwards;
  animation-delay: 0.4s;
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

@media (max-width: 768px) {

  .hero-title {
    font-size: 34px;
    font-weight: 400;
    color: #fff;

    animation: heroFadeUp 1.2s ease forwards;
  }

  .hero p {
    margin-top: 16px;

  }

}



/* ==========================   ABOUT SECTION ========================== */

.about-section {
  position: relative;
  overflow: hidden;
}


/* PARALLAX BACKGROUND */
.about-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background: url("../images/pattern.webp") center / cover no-repeat;
  opacity: 0.2;
  will-change: transform;
  z-index: 1;
}

/* CONTENT OVERLAY */
.about-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT TEXT */
.about-text h2 {
  font-size: 48px;
  color: #c79a6d;
  margin-bottom: 28px;
  font-weight: 400;
}

.about-intro {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text li {
  position: relative;
  padding-left: 10px;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 14px;

}

.about-text li::before {
  content: "•";
  color: #c79a6d;
  position: absolute;
  left: 0;
  font-size: 16px;
}

/* RIGHT IMAGE CARD */
.about-image-wrapper {
  display: flex;
  justify-content: center;
}

.about-image-wrapper img {
  width: 100%;
  max-width: 820px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {

  .about-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .about-image-wrapper {
    order: 1;
  }

  .about-text {
    order: 2;
  }

  .about-text h2 {
    font-size: 32px;
    color: #c79a6d;
    margin-bottom: 18px;
    font-weight: 400;
  }

  .about-intro {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-text ul {
    list-style: none;
    padding: 0;
  }

  .about-image-wrapper img {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
  }

  .about-text li {

  font-size: 14px;


}


}






/* ==========================
   ROOMS
========================== */

.rooms-parallax {
  position: relative;
  padding: 60px 0;
  background-image: url("../images/pattern_gold.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.rooms-overlay {

  inset: 0;
  background: rgba(200, 155, 100, 0.88);
  z-index: 1;
}

/* container */
.rooms-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* header */
.rooms-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  color: #fff;
}

.rooms-header h2 {
  font-size: 48px;
  margin-bottom: 14px;
  font-weight: 400;
}

.rooms-header p {
  font-size: 16px;
  line-height: 1.2;
  opacity: 0.95;
}

/* grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

/* card */
.room-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 50px rgba(0,0,0,0.18);
}

/* image */
.room-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* content */
.room-content {
  padding: 34px 34px 40px;
}

.room-content h3 {
  font-size: 32px;
  margin-bottom: 14px;
  font-weight: 400;
  color: #222;
}

.room-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

/* button */
.room-btn {
  display: inline-block;
  background: #cf9d6c;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.room-btn:hover {
  background: #b07e4c;
}

@media (max-width: 768px) {

  .rooms-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }


  .rooms-header p {
    font-size: 14px;
  }

.rooms-header {
  text-align: center;
  margin: 0 auto 30px;
  color: #fff;
}

.room-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 400;
}

.room-content p {
  font-size: 14px;
  margin-bottom: 14px;
}

.room-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.18);
}

.rooms-parallax {
    padding: 30px 0;
}


}




/* ===== GALLERY SECTION ===== */

.gallery-parallax {
    background: url("../images/pattern.webp") center / cover no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0px;
    position: relative;
}

.gallery-overlay {
    background: rgba(255,255,255,0.7);
    padding: 0px 0px;
    
}

.gallery-title {
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 5px;
    color: #cf9d6c;
    padding: 40px;
}


.myGallery {
    align-items: center !important;
    width: 100%;

    padding-bottom: 50px;
}

.swiper-slide {
    height: 500px;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center */
}


.swiper-slide img {
    width: 100%;
    height: 100%; /* keeps original ratio */
    border-radius: 8px;
    display: block;
    object-fit: contain;  /* prevents distortion */
}

/* Make side slides smaller */
.swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.8);
    opacity: 0.6;
}

/* Arrows styling */
/* Remove default arrow icon */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* Common arrow styling */
.swiper-button-next,
.swiper-button-prev {
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom arrow using CSS */
.swiper-button-next::before,
.swiper-button-prev::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 4px solid #000;
    border-right: 4px solid #000;
}

/* Rotate for directions */
.swiper-button-next::before {
    transform: rotate(45deg);
}

.swiper-button-prev::before {
    transform: rotate(-135deg);
}

/* Position slightly inside */
.swiper-button-next {
    right: 30px;
}

.swiper-button-prev {
    left: 30px;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }


    .gallery-title {
      text-align: center;
      font-size: 32px;
      font-weight: 400;
      letter-spacing: 5px;
      color: #cf9d6c;
      padding: 20px;
    }

    .myGallery {
        align-items: center !important;
        width: 100%;
        padding-bottom: 30px;
    }

    .swiper-slide {
        height: 400px;
    }


}








/* ================= DEALS & PACKAGE SECTION ================= */


.deals-section {
  background: #edefeb;
  padding: 60px 0;
  text-align: center;
}

.deals-header {
  max-width: 900px;
  margin: 0 auto 50px;
}

.deals-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 400;
  color: #cf9d6c;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.deals-header p {
  font-size: 16px;
  color: #000;
  line-height: 1.4;
}

/* SLIDER */

.deals-slider {
  position: relative;
  width: 100%;
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.deal-card {
  flex: 0 0 25%;
  padding: 0px 22px 0px 0px;
  box-sizing: border-box;
}

.deal-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.deal-content {
  background: #fff;
  padding: 35px 30px;
  text-align: left;
  height: 100%;
}

.deal-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 18px;
}

.deal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* ARROWS */

.slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,1);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.slider-arrow.left { left: 20px; }
.slider-arrow.right { right: 20px; }

/* MOBILE */

@media (max-width: 768px) {

  .deals-section {
    padding: 30px 0;
    text-align: center;
  }

  .deals-header h2 {
    font-size: 34px;
  }

  .deals-header p {
    font-size: 14px;
    padding: 0 20px;
  }

  .deal-card {
    flex: 0 0 100%;
    padding: 0 15px;
  }

  .deals-header {
    margin: 0 auto 30px;
  }

  .deal-content {
    background: #fff;
    padding: 20px 20px;
    text-align: left;
  }

  .deal-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .deal-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .slider-arrow {

    width: 40px;
    height: 40px;
    font-size: 20px;
  }

}








/* ================= TESTIMONIALS SECTION ================= */

.testimonial-parallax {
    position: relative;
    background-image: url("../images/pattern_gold.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 50px 0;
    overflow: hidden;
}

/* Overlay Gradient */
.testimonial-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.testimonial-overlay {
    position: relative;
    z-index: 2;
}


.testimonial-header {
    text-align: center;
    color: #fff;
}

.testimonial-header h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
}

.testimonial-header p {
    font-size: 16px;
    opacity: 0.9;
}


.testimonialSwiper {
    width: 100%;
}

.testimonialSwiper .swiper-wrapper {
    align-items: center;
}

.testimonialSwiper .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}


.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    align-items: center;
}

.testimonial-card p {
    font-family: 'Roboto', serif;
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
    margin-bottom: 5px;
}
.testimonial-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.testimonial-card h4 {
    font-weight: 600;
    color: #000;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: 0 auto;
    color: #000;
    margin-bottom: 5px;
    margin-top: 10px;
}

.testimonialSwiper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.85);
    opacity: 0.6;
}

.testimonialSwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    height: 350px !important;
    padding: 0;
}


@media (max-width: 768px) {
    
    .testimonial-parallax {
      padding: 30px 0;
  }
    .testimonial-header h2 {
        font-size: 34px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .testimonial-header p {
        font-size: 14px;
        opacity: 0.9;
    }

    .testimonialSwiper {
        padding: 0 25px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .swiper-slide {
      height: 330px !important;
    }
}








/* ================= CONTACT SECTION ================= */

.contact-section {
  position: relative;
  background-image: url("../images/pattern.webp"); /* adjust path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */

  text-align: center;
}



.contact-overlay {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  padding: 60px 20px;
}

.contact-container {
  max-width: 900px;
  margin: auto;

}

.contact-container h2 {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: center;
  color: #cf9d6c;
}

.contact-subtitle {
  font-family: 'Cinzel', serif;
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  font-weight: 400;
  text-align: center;
}

/* FORM */

form {
  width: 100%;
  font-family: 'Roboto', serif;

}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-row input,
.form-row textarea {
  font-family: 'Roboto', serif;
  flex: 1;
  padding: 18px 25px;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-size: 16px;
  outline: none;
}

textarea {
  border-radius: 30px !important;
  min-height: 150px;
  resize: none;
  font-family: 'Roboto', serif;
}

.contact-btn {
  font-family: 'Roboto', serif;
  background: #cf9d6c;
  border: none;
  padding: 16px 40px;
  border-radius: 40px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #b68452;
}

.form-note {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

.form-note a {
  color: #c99763;
  text-decoration: none;
  font-family: 'Cinzel', serif;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .contact-overlay {
    padding: 30px 20px;
  }

  .contact-container h2 {
    font-size: 34px;
  }

  .contact-subtitle {
    font-size: 14px;
    margin: 0 auto 30px;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-section {
    background-attachment: scroll; /* fix parallax on mobile */
  }

}









/* ================= FOOTER SECTION ================= */

.footer {

    background: #c79a63;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-social {
    margin-bottom: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin: 0 10px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
}

.footer-policy {
    margin-bottom: 20px;
}

.footer-policy a {
    color: #fff;
    text-decoration: underline;
    margin: 0 5px;
}

.footer-copy {
    font-size: 14px;
    margin-top: 10px;
}



.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    padding: 60px;
    font-family: 'Cinzel', serif;
}

.modal-content {
    background: #fff;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    position: relative;
    max-height: 100%;
    overflow-y: auto;
}
.modal-content ul {
    padding-left: 15px;
}

.modal-content h2 {
    margin-top: 0;
    padding-bottom: 20px;
}

.close {
    position: absolute;
    right: 15px;
    top: 0px;
    font-size: 48px;
    cursor: pointer;
}


@media (max-width: 768px) {

  .footer {
      background: #c79a63;
      padding: 20px 20px;
      text-align: center;
      color: #fff;
  }

}





/* ================= FLOATING BUTTONS ================= */


.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.call-btn {
    background-color: #c79a63;
    font-size: 25px;
}

.whatsapp-btn {
    background-color: #25D366;
    font-size: 38px;
}

.float-btn:hover {
    transform: scale(1.1);
}

