:root {
  --gold: #bb893d;
  --dark-bg: #1e0c02;
  --card-bg: #1a1a1a;
  --text-gray: #b5b5b5;
}

body {
  background-color: var(--dark-bg);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}
html, body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: "Playfair Display", serif;
}

/* --- Header --- */
.navbar {
  background-color: rgb(30, 12, 2);
  border-bottom: 1px solid #333;
  padding: 0px 0;
}
.navbar-brand {
  color: var(--gold) !important;
  font-size: 1.8rem;
  font-weight: bold;
}
.nav-link {
  color: #fff !important;
  margin: 0 12px;
  font-weight: 400;
  transition: 0.3s;
}
.nav-link:hover {
  color: var(--gold) !important;
}
.logo-img {
  width: 80px;
  max-width: 100%;
}
/* --- Hero Section --- */
.hero {
  background:
    linear-gradient(rgb(0 0 0 / 12%), rgb(0 0 0 / 37%)),
    url("https://divineluxuryspa.in/front/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 4rem;
  color: var(--gold);
}
.btn-gold {
  background-color: var(--gold);
  color: #000;
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 5px;
  border: none;
}
.btn-gold:hover {
  background-color: #e2b86a;
  color: #000;
}

/* --- Common Section Styling --- */
.section-padding {
  padding: 80px 0;
  background-color: rgb(30, 12, 2);
  border-top: 1px solid #c89b3c5c;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 15px;
}
.section-title p {
  color: var(--text-gray);
}
/* gallery section */
/* --- Interior Carousel --- */
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s ease;
}

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

.gallery-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.7);
  transition: 0.4s ease;
}

.gallery-icon i {
  font-size: 18px;
  color: #c5a059;
}

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

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

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

@media (max-width: 767px) {
  .gallery-img {
    height: 180px;
  }

  .gallery-icon {
    width: 55px;
    height: 55px;
  }

  .gallery-icon i {
    font-size: 20px;
  }
}
#interiorCarousel .carousel-item img {
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

/* Gallery Carousel */
#interiorCarousel .carousel-item {
  transition: transform 0.7s ease-in-out;
}

#interiorCarousel .card {
  overflow: hidden;
}

#interiorCarousel img {
  transition: 0.4s ease;
}

#interiorCarousel .card:hover img {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 767px) {
  #interiorCarousel .carousel-item .col-md-4 {
    display: none;
  }

  #interiorCarousel .carousel-item .col-md-4:first-child {
    display: block;
  }

  #interiorCarousel .carousel-control-prev,
  #interiorCarousel .carousel-control-next {
    width: 12%;
  }

  #interiorCarousel .carousel-control-prev i,
  #interiorCarousel .carousel-control-next i {
    padding: 14px;
    font-size: 15px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  #interiorCarousel .carousel-item .col-md-4 {
    display: none;
  }

  #interiorCarousel .carousel-item .col-md-4:nth-child(-n + 2) {
    display: block;
  }
}

/* Desktop */
@media (min-width: 992px) {
  #interiorCarousel .carousel-item .col-md-4 {
    display: block;
  }
}

/* --- Service Cards --- */
.service-card {
  background: var(--card-bg);
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
}
.service-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.service-body {
  padding: 20px;
  text-align: center;
}
.service-body h5 {
  color: var(--gold);
  margin-bottom: 15px;
}

/* --- Commitment --- */
.comm-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}
.comm-item {
  text-align: center;
  padding: 20px;
}

/* --- Testimonial Carousel --- */
.testimonial-carousel {
  background: #b7904c12;
  padding: 50px;
  border-radius: 15px;
  border: 1px solid #333;
  box-shadow: rgba(251, 251, 251, 0.13) 0px 3px 8px;
}
.testi-content {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-gray);
}
.testi-name {
  color: var(--gold);
  margin-top: 15px;
  font-weight: bold;
}

/* --- Map & Footer --- */
.map-container iframe {
  width: 100%;
  height: 400px;
}
.luxury-footer {
  background: #1e0c02;

  padding: 90px 0 35px;
  color: #f8f1e7;
  position: relative;
}

.footer-logo {
  max-width: 140px;
}

.footer-text {
  color: #ddd;
  font-size: 16px;
  line-height: 2;
}

.footer-title {
  color: #c89b3c;
  font-size: 34px;
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.footer-links a:hover {
  color: #c89b3c;
  padding-left: 8px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  line-height: 1.8;
}

.contact-item i {
  color: #c89b3c;
  font-size: 18px;
  margin-top: 5px;
}

.hours-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hours-box i {
  width: 55px;
  height: 55px;
  background: rgba(200, 155, 60, 0.15);
  border: 1px solid rgba(200, 155, 60, 0.35);
  color: #c89b3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

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

.social-icons a {
  width: 48px;
  height: 48px;
  border: 1px solid #c89b3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c89b3c;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #c89b3c;
  color: #1c0d05;
  transform: translateY(-3px);
}
.social-icons i {
  width: 48px;
  height: 48px;
  border: 1px solid #c89b3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c89b3c;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons i:hover {
  background: #c89b3c;
  color: #1c0d05;
  transform: translateY(-3px);
}



.footer-divider {
  border-color: rgba(200, 155, 60, 0.3);
  margin: 60px 0 30px;
}

.copyright {
  color: #d6d6d6;
}

.footer-spa-icon {
  font-size: 45px;
  color: #c89b3c;
}

@media (max-width: 991px) {
  .footer-title {
    font-size: 28px;
  }

  .footer-logo-box {
    margin: auto;
  }

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

  .social-icons {
    justify-content: center;
  }
}
.breadcrumb-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(20, 10, 5, 0.75), rgba(20, 10, 5, 0.75)),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 8, 4, 0), rgba(15, 8, 4, 0.17));
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb-content h1 {
  color: #fff;
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.breadcrumb {
  background: rgba(200, 155, 60, 0.15);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 155, 60, 0.3);
}

.breadcrumb-item,
.breadcrumb-item.active {
  color: #f5e8d0;
}

.breadcrumb-item a {
  color: #c89b3c;
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #c89b3c;
}

.breadcrumb-item a:hover {
  color: #e0b85f;
}

.contact-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(200, 155, 60, 0);
}
.contact-info-box {
  background: #1b0d06;
  color: #fff;
  padding: 60px 40px;
  height: 100%;
  border: 1px solid;
  border-radius: 30px 0px 0px 30px;
}

.section-tag {
  color: #c89b3c;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

.contact-info-box h2 {
  color: #fff;
  font-size: 42px;
  margin: 15px 0 20px;
  font-family: "Playfair Display", serif;
}

.contact-info-box > p {
  color: #d8d8d8;
  line-height: 1.9;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  align-items: center;
}

.contact-item i {
  width: 55px;
  height: 55px;
  background: rgba(200, 155, 60, 0.15);
  border: 1px solid rgba(200, 155, 60, 0.35);
  color: #c89b3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h6 {
  color: #c89b3c;
  margin-bottom: 5px;
}

.contact-item p {
  color: #e8e8e8;
  margin: 0;
  line-height: 1.7;
}

.map-box {
  height: 100%;
  min-height: 650px;
  padding: 10px;
  border: 1px solid;
  border-radius: 0px 30px 30px 0px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .breadcrumb-section {
    min-height: 280px;
  }

  .breadcrumb-content h1 {
    font-size: 42px;
  }

  .breadcrumb {
    padding: 10px 18px;
    font-size: 14px;
  }
  .logo-img {
    width: 60px;
    max-width: 100%;
  }
  .footer-logo {
    max-width: 100px;
  }
  .footer-title {
    font-size: 22px;
  }
  .contact-item i {
    width: 40px;
    height: 40px;
    font-size: 14px;
    flex-shrink: 0;
  }
  .contact-item {
    font-size: 14px;
  }
  .hours-box {
    font-size: 14px;
  }
  .hours-box i {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .contact-info-box {
    padding: 40px 25px;
  }

  .contact-info-box h2 {
    font-size: 32px;
  }

  .map-box {
    min-height: 400px;
  }
}
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.floating-contact a i {
  font-size: 24px;
}

.call-btn {
  background: #0d6efd;
}

.whatsapp-btn {
  background: #25d366;
}

.floating-contact a:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .floating-contact {
    right: 15px;
    bottom: 20px;
  }

  .floating-contact a {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}
