@font-face {
  font-family: "Ethereal";
  src: url("../fonts/Ethereal-Thin.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

/* Conflicting scroll-behavior: smooth; removed for better Lenis compatibility */

/* AOS Horizontal Glitch Fix: "Micro-slide" approach for buttery smooth frames */
[data-aos^="fade"] {
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1) !important;
}

[data-aos="fade-right"] {
  transform: translate3d(-15px, 0, 0) !important;
}

[data-aos="fade-left"] {
  transform: translate3d(15px, 0, 0) !important;
}

/* Final state: forcing stable transform3d */
[data-aos].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

html {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

body,
button,
input,
textarea,
select,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ethereal", sans-serif !important;
}

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

section {
  overflow: hidden;
  position: relative;
  /* Added for better layout stability */
}

/* Exclude Hero Sections and Footer from GPU containment if needed */
.home-hero,
.page-hero,
#hero-banner {
  contain: none;
}

/* --- GLOBAL PAGE HERO HEADINGS --- */
.page-hero h1,
.page-hero h2,
.contact-hero h1,
.experience-hero h1,
.experience-hero h2,
.about-hero h1,
.faq-hero h1,
.amenities-hero h1,
.blog-hero h1,
.gallery-hero h1 {
  position: relative !important;
  color: white !important;
  font-size: clamp(3rem, 8vw, 5rem) !important;
  letter-spacing: 2px !important;
  text-align: center !important;
  z-index: 5 !important;
  margin: 0 !important;
  display: block !important;
}

.page-hero h1::after,
.page-hero h2::after,
.contact-hero h1::after,
.experience-hero h1::after,
.experience-hero h2::after,
.about-hero h1::after,
.faq-hero h1::after,
.amenities-hero h1::after,
.blog-hero h1::after,
.gallery-hero h1::after {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  height: 3px !important;
  background: white !important;
  margin: 15px auto 0 !important;
  transition: width 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.8s !important;
}

.page-hero h1.aos-animate::after,
.page-hero h2.aos-animate::after,
.contact-hero h1.aos-animate::after,
.experience-hero h1.aos-animate::after,
.experience-hero h2.aos-animate::after,
.about-hero h1.aos-animate::after,
.faq-hero h1.aos-animate::after,
.amenities-hero h1.aos-animate::after,
.blog-hero h1.aos-animate::after,
.gallery-hero h1.aos-animate::after {
  width: 120px !important;
}

.home-hero,

.home .custom-navbar {
  background: transparent;
}

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}


.custom-navbar.scrolled {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


nav {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 10px 70px;
  align-items: center;
}

.logo img {
  height: 65px;
}

.menu>ul {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  list-style: none;
}

.menu ul li {
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 12px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

.menu ul li a {
  display: flex;
  align-items: center;
  transition: .3s ease;
}

.menu ul li a:hover {
  color: #b68a55;
}

.custom-navbar * {
  color: white;
}

.has-dropdown::after {
  content: "▾";
  margin-left: 6px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  padding: 20px 25px;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);

  transform: translateY(10px);
  transition: .3s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown.active .dropdown,
.has-dropdown.open .dropdown {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  display: block !important;
  z-index: 10000;
}

.dropdown li {
  padding: 10px 0;
}

.dropdown li a {
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
  transition: .3s;
}

.dropdown li a:hover {
  color: #b68a55;
  padding-left: 5px;
}

.hamburger,
.close-menu {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


#hero-banner {
  width: 100%;
  height: 100vh;
  position: relative;
}

#hero-banner img {
  width: 100%;
  height: 100%;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.home-hero-content-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 0 24px;
}

.home-hero-content {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpHero 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.home-hero-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 5vw, 3.6rem) !important;
  font-weight: 300 !important;
  line-height: 1.25 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.home-hero-text {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem) !important;
  line-height: 1.7 !important;
  font-weight: 300 !important;
  max-width: 760px;
  margin: 0 auto 36px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.home-hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.home-hero-btn {
  text-decoration: none !important;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home-hero-btn-primary {
  background-color: #c5a059 !important;
  color: #ffffff !important;
  border: 2px solid #c5a059 !important;
}

.home-hero-btn-primary:hover {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.home-hero-btn-secondary {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.home-hero-btn-secondary:hover {
  background-color: #c5a059 !important;
  color: #ffffff !important;
  border-color: #c5a059 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

@keyframes fadeUpHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness for Home Hero Banner content */
@media (max-width: 768px) {
  .home-hero-ctas {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 320px;
  }

  .home-hero-btn {
    width: 100%;
    text-align: center;
    padding: 14px 28px;
    font-size: 13px;
  }

  .home-hero-text {
    margin-bottom: 28px !important;
  }
}


.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none;
  transition: .3s;
  z-index: 100;
}

.scroll-down i {
  color: white;
  font-size: 14px;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-down:hover {
  background: white;
}

.scroll-down:hover i {
  color: #3e474b;
}



.casa-about-section {
  padding: 60px 5% 120px;
  background-color: white;
  overflow: hidden;
}

.casa-about-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Visuals Section */
.casa-about-visuals {
  position: relative;
  display: flex;
  align-items: center;
}

.casa-img-large-wrap {
  width: 85%;
  position: relative;
  z-index: 2;
}

.casa-img-main {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.casa-img-small-wrap {
  position: absolute;
  right: -5%;
  bottom: -40px;
  width: 45%;
  z-index: 3;
  border: 10px solid #f9f9f9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.casa-img-sub {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.casa-experience-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background: #2d2d2d;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  z-index: 4;
}

.casa-badge-num {
  font-size: 32px;
  font-weight: 700;
  color: #c5a059;
  display: block;
}

.casa-badge-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.4;
}

/* Content Section */
.casa-sub-title {
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.casa-main-title {
  font-size: 48px;
  color: #2d2d2d;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 700;
}

.casa-italic-title {
  /* font-style: italic; */
  font-weight: 400;
  color: #888;
}

.casa-description {
  text-align: justify;
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

/* Feature Grid */
.casa-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.casa-feature-icon {
  font-size: 14px;
  font-weight: 700;
  color: #c5a059;
  margin-bottom: 10px;
  position: relative;
}

.casa-feature-icon::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #c5a059;
  margin-left: 10px;
  vertical-align: middle;
}

.casa-feature-text h4 {
  margin: 0 0 5px 0;
  color: #2d2d2d;
  font-size: 18px;
}

.casa-feature-text p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

/* Button & Footer */
.casa-about-footer {
  display: flex;
  align-items: center;
  gap: 40px;
}

.casa-btn-modern {
  text-decoration: none;
  background: #2d2d2d;
  color: #ffffff;
  padding: 18px 35px;
  display: inline-flex;
  /* changed from flex to prevent full-width stretch */
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
  font-weight: 600;
  font-size: 15px;
  border-radius: 15px;
}

.casa-btn-modern svg {
  width: 20px;
  transition: all 0.4s ease;
}

.casa-btn-modern:hover {
  background: #c5a059;
}

.casa-btn-modern:hover svg {
  transform: translateX(5px);
}

.casa-trust-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.casa-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.casa-dot {
  width: 6px;
  height: 6px;
  background: #c5a059;
  border-radius: 50%;
}


#image-banner {
  width: 100%;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

#image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.banner-content-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 0 24px;
}

.banner-content {
  max-width: 850px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.banner-title {
  color: #ffffff !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  font-weight: 300 !important;
  line-height: 1.3 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.banner-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem) !important;
  line-height: 1.6 !important;
  font-weight: 300 !important;
  max-width: 680px;
  margin: 0 auto 30px !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.banner-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.banner-btn {
  text-decoration: none !important;
  padding: 15px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.banner-btn-primary {
  background-color: #c5a059 !important;
  color: #ffffff !important;
  border: 2px solid #c5a059 !important;
}

.banner-btn-primary:hover {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.banner-btn-secondary {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.banner-btn-secondary:hover {
  background-color: #c5a059 !important;
  color: #ffffff !important;
  border-color: #c5a059 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  #image-banner {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
  }

  #image-banner img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    position: relative !important;
  }

  .banner-overlay {
    display: none !important;
  }

  .banner-content-wrapper {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    padding: 50px 24px !important;
    background: #1e1c1c !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .banner-content {
    max-width: 100% !important;
  }

  .banner-ctas {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  .banner-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 14px 28px !important;
    font-size: 13px !important;
  }

  .banner-text {
    margin-bottom: 28px !important;
  }
}

#themed-rooms {
  padding: 80px 5% 60px;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.rooms-header {
  text-align: center;
  margin-bottom: 20px;
  flex: 0 0 auto;
}

.section-eyebrow {
  display: block;
  font-size: clamp(11px, 1.2vw, 13px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c5a059;
  margin-bottom: 8px;
  font-weight: 600;
  text-align: center;
}

.rooms-header h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  letter-spacing: 4px;
  margin-bottom: 0;
  color: #1a1a1a;
  font-weight: 700;
}

.horizontal-line {
  width: 80px;
  height: 2px;
  background: #c5a059;
  margin: 15px auto;
}

.rooms-header p {
  color: #666;
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

.rooms-grid-container {
  display: flex;
  gap: 10px;
  flex: 1;
  min-height: 0;
}

.rooms-col-main {
  flex: 0 0 40%;
}

.rooms-col-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rooms-row:first-child {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  flex: 1;
  gap: 10px;
}

.rooms-row:last-child {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  flex: 1;
  gap: 10px;
}

.room-card {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 4px;
  cursor: pointer;
}

/* Relative heights for 100vh fit */
.main-room {
  height: 100%;
}

.small-room {
  height: 100%;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.85;
}

.room-card:hover img {
  transform: scale(1.1);
  opacity: 0.6;
}

.room-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
  padding: 30px;
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.room-overlay h3 {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.room-overlay h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #c5a059;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(-50%);
}

.room-card:hover .room-overlay h3::after {
  width: 80px;
}

.room-card:hover .room-overlay h3 {
  transform: translateY(0);
}

.room-overlay p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(12px, 1.25vw, 14px);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
  max-width: 280px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-card:hover .room-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.room-explore-btn {
  padding: 14px 30px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(20px);
  font-weight: 500;
  cursor: pointer;
}

.room-card:hover .room-explore-btn {
  transform: translateY(0);
}

.room-explore-btn:hover {
  background: #fff;
  color: #000;
}

.room-label {
  position: absolute;
  bottom: 25px;
  left: 30px;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.room-card:hover .room-label {
  opacity: 0;
}

.room-label h3 {
  color: #fff;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}



/* Aesthetic Breaker Line */
.elegant-line-breaker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 40px auto 20px;
  opacity: 0.8;
}

.elegant-line-breaker .line-left,
.elegant-line-breaker .line-right {
  flex-grow: 1;
  height: 1px;
}

.elegant-line-breaker .line-left {
  background: linear-gradient(to right, transparent, #c5a059);
}

.elegant-line-breaker .line-right {
  background: linear-gradient(to left, transparent, #c5a059);
}

.elegant-line-breaker .diamond {
  width: 6px;
  height: 6px;
  background-color: #c5a059;
  transform: rotate(45deg);
  margin: 0 15px;
}

.experience-section {
  width: 100%;
  padding-top: 40px;
}

.experience-headings {
  background: #ffffff;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.experience-headings h2 {
  font-size: 30px;
  letter-spacing: 2px;
  /* font-weight: 500; */
  margin-bottom: 0;
}

.experience-headings p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0 auto;
  max-width: 750px;
}

.experience-section-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease, transform 6s ease;
}

.experience-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.experience-slider {
  width: 85%;
  max-width: 1200px;
  border-radius: 10px;
  z-index: 0;
}

.experience-content {
  display: flex;
  background: #f6f3ee;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.experience-image {
  width: 50%;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-text {
  width: 50%;
  padding: 0px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.experience-text h2 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 500;
}

.experience-text p {
  font-size: 16px;
  line-height: 1.8;
  padding-top: 10px;
  margin-bottom: 25px;
  color: #333;
}


.swiper-button-next:after,
.swiper-button-prev:after {
  color: gray;
}

.experience-overlay {
  pointer-events: none;
}


.hover-btn {
  margin-top: 20px;
  padding: 15px 40px;
  background: black;
  cursor: pointer;
  border: 1px solid black;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color .4s ease;
}

.hover-btn a {
  color: white;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.hover-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: translateX(100%);
  transition: transform .4s ease;
  z-index: 1;
}

.hover-btn:hover::after {
  transform: translateX(0);
}

.hover-btn:not(:hover)::after {
  transform: translateX(-100%);
}

.hover-btn:hover a {
  color: black;
  font-weight: bold;
}



.gallery-container {
  max-width: 1600px;
  /* restored to original wide layout */
  margin: 0 auto;
  padding: 0 5%;
}

.gallery-headings {
  text-align: center;
  margin-bottom: 40px;
  /* Synchronized with Reels */
}

.gallery-headings h2 {
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.gallery-line {
  width: 60px;
  height: 2px;
  background: #c5a059;
  margin: 0 auto 20px;
}

.gallery-headings p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0 auto;
  max-width: 750px;
}

/* Owl Carousel Styling */
.gallery-carousel {
  margin-bottom: 50px;
  /* Restored original gap */
}

.gallery-item-wrap {
  padding: 5px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 380px;
  /* Shortened card height */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item-wrap h4 {
  margin-top: 15px;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(197, 160, 89, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-hover i {
  color: white;
  font-size: 32px;
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.gallery-item-wrap:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-item-wrap:hover .gallery-hover {
  opacity: 1;
}

.gallery-item-wrap:hover .gallery-hover i {
  transform: scale(1);
}

.gallery-item-wrap:hover h4 {
  color: #c5a059;
}

/* Custom Nav Dots & Arrows */
.gallery-carousel .owl-nav button {
  position: absolute;
  top: 42%;
  /* Slightly above middle to center on image only */
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: white !important;
  border-radius: 50% !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  line-height: 45px;
  /* Ensures vertical icon centering */
}

.gallery-carousel .owl-nav button i {
  font-size: 16px;
  color: #1a1a1a;
}

.gallery-carousel .owl-nav button:hover {
  background: #c5a059 !important;
}

.gallery-carousel .owl-nav button:hover i {
  color: white;
}

.gallery-carousel .owl-nav button.owl-prev {
  left: -15px;
}

.gallery-carousel .owl-nav button.owl-next {
  right: -15px;
}


.gallery-carousel .owl-dots {
  display: none !important;
  /* hidden completely */
}

.gallery-footer {
  text-align: center;
}

/* Modal Styling */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  /* Use flex for absolute centering */
  display: none;
  /* JS toggles block/none, but I'll update main.js next */
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-content {
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  animation: zoomModal 0.4s;
}

@keyframes zoomModal {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

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

.close-modal {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 60px;
  font-weight: 200;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #c5a059;
  transform: rotate(90deg);
}

#modalCaption {
  text-align: center;
  color: #ccc;
  padding: 20px 0;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* Gallery styles cleaned and restored */


.cuisine-section {
  background-color: rgb(46, 43, 43);
  padding: 80px 0px;
  border-bottom: 1px solid gray;
}

.cuisine-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}


.cuisine-eyebrow {
  display: block;
  font-size: clamp(11px, 1.2vw, 13px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c5a059;
  margin-bottom: 12px;
  font-weight: 600;
}

.cuisine-text h2 {
  color: white;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}

.cuisine-text p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
  word-spacing: 1px;
}

.cuisine-seasonal-note {
  color: #c5a059 !important;
  font-style: italic;
  font-size: 14px !important;
  margin-top: 15px;
  margin-bottom: 30px !important;
  border-left: 2px solid #c5a059;
  padding-left: 15px;
}

.btn-outline {
  border: 1px solid white;
  padding: 12px 20px;
  color: white;
  background-color: #252424;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 12px;
  transition: .3s;
  border-radius: 5px;
}

.btn-outline:hover {
  background: white;
  color: black;
  border: 1px solid black;
}


.cuisine-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.cuisine-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}


#lux-gallery {
  padding: 50px 0 60px;
  /* Standardized for symmetry */
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.gallery-headings {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-headings h2 {
  font-size: 30px !important;
  font-weight: 700;
  margin-bottom: 0 !important;
  letter-spacing: 2px;
}

.gallery-headings p {
  font-size: 16px !important;
  color: #666;
  margin: 0 auto;
}

.reels-section {
  padding: 60px 0;
  text-align: center;
}

.reels-inner {
  max-width: 1170px;
  margin: auto;
}

.reels-headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  /* Equalized with Gallery */
}

.reels-headings h2 {
  font-size: 35px;
  margin-bottom: 10px;
}

.reels-headings p {
  margin-top: 12px;
  color: rgb(77, 75, 75);
  letter-spacing: 1px;
  max-width: 750px;
  line-height: 1.6;
}

.reels-seasonal-note {
  color: #c5a059 !important;
  font-style: italic;
  font-size: 14px !important;
  margin-top: 15px !important;
  margin-bottom: 0 !important;
  max-width: 600px;
  line-height: 1.6;
}

.reels-grid {
  margin-top: 40px;
}

.reel-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #000;
  cursor: pointer;
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  transition: .3s ease;
}

.reel-card:hover .reel-overlay {
  opacity: 1;
}


.reel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  display: flex;
  gap: 20px;
}


.reel-instagram {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.testimonial-section {
  width: 100%;
  padding: 60px;
  text-align: center;
  background-image: url('https://res.cloudinary.com/dxaj4o4xh/image/upload/v1775123928/home-testimonial-bg_yrnxdo.jpg');
  color: white;
}

.testimonial-inner {
  max-width: 1170px;
  margin: auto;
}

.testimonial-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 15px;
}

.testimonial-line {
  width: 80px;
  height: 2px;
  background: #c5a059;
  margin: 0 auto 20px;
}

.testimonial-intro {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 16px !important;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 40px !important;
}

.review-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}


.review-top svg {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}


.t-card h4 {
  margin-bottom: 5px;
}

.stars {
  color: #f4b400;
  margin-bottom: 15px;
}

.t-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.testimonial-rotator {
  position: relative;
  width: 900px;
  height: 560px;
  margin: auto;
}

.t-card {
  width: 400px;
  height: 250px;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  color: black;
  padding: 20px;
  animation: spin 20s infinite ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  will-change: transform;
}


.c1 {
  animation-delay: 0s;
}

.c2 {
  animation-delay: -5s;
}

.c3 {
  animation-delay: -10s;
}

.c4 {
  animation-delay: -15s;
}


@keyframes spin {

  0%,
  10% {
    transform: translate3d(0, 0, 0);
  }

  25%,
  35% {
    transform: translate3d(480px, 0, 0);
  }

  50%,
  60% {
    transform: translate3d(480px, 280px, 0);
  }

  75%,
  85% {
    transform: translate3d(0, 280px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.home-faq {
  padding: 80px 5% 100px;
  background: white;
}

.home-faq-inner {
  max-width: 900px;
  margin: auto;
}

.home-faq-heading {
  text-align: center;
  margin-bottom: 50px;
}

.home-faq-heading h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  margin-bottom: 0;
}

.home-faq-heading p {
  font-size: 16px;
  color: #666;
  margin: 20px auto 0;
  max-width: 750px;
  line-height: 1.6;
}

.home-faq-accordion {
  width: 100%;
}



.featured-section {
  padding: 30px 5% 80px;
  background: radial-gradient(circle at center, #1e1e1e 0%, #0a0a0a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background Ambient Text */
.featured-section::before {
  content: "RECOGNITIONS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 12px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.featured-headings h2 {
  font-size: 38px;
  letter-spacing: 8px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}

.featured-headings p {
  color: #ccc;
  font-size: 15px;
  margin: 20px auto 30px;
  max-width: 750px;
  font-weight: 300;
  line-height: 1.7;
}

.featured-trust-line {
  color: #c5a059 !important;
  font-style: italic;
  font-size: 14px !important;
  margin: 20px auto 0 !important;
  max-width: 600px;
  line-height: 1.6;
}

.featured-brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-item {
  width: 260px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.brand-item img {
  max-width: 85%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: all 0.5s ease;
}

.brand-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(197, 160, 89, 0.15);
}

.brand-item:hover img {
  transform: scale(1.1);
}

/* Light Theme Variation for About Page */
.featured-section.light-theme {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://res.cloudinary.com/dx1jbyib2/image/upload/v1776162959/AZD03279_1_qlu5cr.jpg") center/cover no-repeat fixed;
  padding: 120px 0;
}

.featured-section.light-theme::before {
  display: none;
  /* Hide ambient text for cleaner light look */
}

.featured-section.light-theme .featured-headings h2 {
  color: #fff;
  font-weight: bold;
}

.featured-section.light-theme .featured-headings p {
  color: #ccc;
}

.featured-section.light-theme .brand-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.journal-brand-wrap {
  width: auto !important;
  min-width: 380px;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(197, 160, 89, 0.6) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(197, 160, 89, 0.3);
  transform: scale(1.06) translateY(-20px);
  /* Stronger lift and depth */
}

.journal-brand-wrap:hover {
  border-color: rgba(197, 160, 89, 0.8) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(197, 160, 89, 0.4);
  transform: scale(1.08) translateY(-5px) !important;
}

.journal-brand {
  text-align: center;
}

.journal-logo {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 5px;
  color: #fff;
}

.design-box {
  background: #c5a059;
  color: #fff;
  padding: 2px 8px;
  font-weight: 600;
  margin-left: 5px;
}

.journal-subtitle {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ccc;
}

.featured-section.light-theme .brand-item img {
  filter: brightness(1.2);
  /* Enhance white logo visibility */
}

.featured-section.light-theme .brand-item:hover {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
  transform: translateY(-5px);
}

.featured-section.light-theme .brand-item:hover img {
  filter: brightness(1.5);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .featured-brands {
    gap: 30px;
  }

  .brand-item {
    width: 200px;
    height: 90px;
  }

  .brand-item img {
    max-width: 80%;
  }

  .featured-headings h2 {
    font-size: 26px;
  }
}

#site-footer {
  background: #2e2b2b;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
}

#site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 30%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
}

.footer-logo {
  width: 125px;
}

.footer-address {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 35px;
  height: 35px;
  border: 1px solid #b68a55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b68a55;
  transition: .3s;
}

.footer-social a:hover {
  background: #b68a55;
  color: black;
}

.footer-col h4 {
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 300;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #ccc;
  font-size: 14px;
  transition: .3s;
}

.footer-col ul li a:hover {
  color: #b68a55;
}

.footer-col iframe {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  filter: grayscale(100%);
}

.footer-brand {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 156px;
  font-weight: 700;
  color: rgba(255, 255, 255, .2);
  line-height: 1;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

.footer-credit {
  position: absolute;
  bottom: 0px;
  right: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  z-index: 3;
  letter-spacing: 1px;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-credit {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    width: 100%;
    text-align: center;
  }
}

.footer-address a {
  text-decoration: none;
  color: inherit;
}

.footer-address a:hover {
  color: #c19b76;
}


.fa-solid,
.fa-regular {
  font-family: "Font Awesome 6 Free";
}

.fa-brands {
  font-family: "Font Awesome 6 Brands";
}

/* --- UNIVERSAL PAGE HERO STYLES --- */
.page-hero {
  position: relative;
  height: 100vh !important;
  min-height: 500px;
  width: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-hero h1,
.page-hero h2 {
  position: relative;
  z-index: 5 !important;
  color: #fff !important;
  opacity: 1 !important;
  font-size: clamp(3.5rem, 8vw, 5.5rem) !important;
  text-align: center;
  letter-spacing: 2px;
  text-transform: none;
  margin: 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-hero h1::after,
.page-hero h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: white;
  margin: 15px auto 0;
}

.page-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 9999 !important;
  animation: bounce 2s infinite !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* --- GLOBAL PRELOADER --- */
.global-preloader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.global-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-wrapper {
  position: relative;
  width: min(80vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo-bg {
  width: 100%;
  height: auto;
  opacity: 0.15;
}

.loader-logo-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(50% 0 50% 0);
  animation: logoFill 1.5s cubic-bezier(0.86, 0, 0.07, 1) infinite alternate;
}

@keyframes logoFill {
  0% {
    clip-path: inset(50% 0 50% 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* --- FLOATING CONTACT ICONS --- */
.floating-contact-icons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  z-index: 9991;
}

.floating-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-icon:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.floating-whatsapp {
  background-color: #25D366;
  animation: pulse-whatsapp 2s infinite;
}

.floating-call {
  background-color: #c5a059;
  animation: pulse-call 2s infinite;
  animation-delay: 1s;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
  }
}

@media (max-width: 768px) {
  .floating-contact-icons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .floating-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}