:root {
  --primary: #dba16f;
  --primary-dark: #c09060;
  --dark: #000000;
  --darker: #000000;
  --light: #ffffff;
  --lighter: #ffffff;
  --accent: #222222;
  --accent-light: #333333;
  --gradient: linear-gradient(135deg, #dba16f 0%, #ffffff 100%);
  --gradient-hover: linear-gradient(135deg, #e5b080 0%, #ffffff 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 35px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-primary: 0 5px 25px rgba(219, 161, 111, 0.4);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --border-radius-xl: 12px;
  --light-gray: #f7f7f7;
  --medium-gray: #222222;
  --dark-brown: #c09060;
  --light-brown: #dba16f;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: "Open Sans", sans-serif;
  background: var(--darker);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--darker);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
.scissors-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scissors {
  font-size: 3.5rem;
  color: var(--primary);
  animation: spin 1.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.scissors-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(219, 161, 111, 0.4);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}
.loading-text {
  color: var(--light);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-top: 2rem;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.8;
  position: relative;
}
.loading-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--gradient);
}
@keyframes spin {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Floating Book Now Button */
.floating-book-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--primary);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-primary);
  z-index: 999;
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.floating-book-btn:hover {
  background: var(--dark);
  color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(219, 161, 111, 0.5);
}
.floating-book-btn span {
  display: inline;
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  background: var(--primary);
  color: var(--dark);
  border: 2px solid var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-primary);
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--dark);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(219, 161, 111, 0.5);
}
/* Enhanced Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  transition: var(--transition-slow);
}
.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.98);
  box-shadow: var(--shadow-lg);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.navbar-brand {
  color: var(--primary);
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: var(--transition);
}
.logo-img {
  height: 120px;
  width: auto;
}
.navbar-brand:hover {
  opacity: 0.8;
}
.navbar-menu {
  display: flex;
  justify-content: right;
  flex-grow: 1;
}
.navbar ul {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
.navbar ul li a {
  color: var(--light);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
  opacity: 0.9;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--primary);
  opacity: 1;
}
.navbar ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient);
  transition: width 0.3s ease;
}
.navbar ul li a:hover::after,
.navbar ul li a.active::after {
  width: 100%;
}
.booking-link {
  background: var(--primary);
  color: var(--dark) !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: var(--border-radius);
  font-weight: 600 !important;
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.booking-link:hover {
  background: var(--dark);
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(219, 161, 111, 0.5);
}
.booking-link::after {
  display: none !important;
}
/* Mobile Menu Button */
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 24px;
  position: relative;
  background: transparent;
  border: none;
}
.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--light);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}
.menu-toggle span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}
.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}
.menu-toggle span:nth-child(3) {
  bottom: 0;
  transform-origin: left center;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
  left: 4px;
  background: var(--primary);
}
.menu-toggle.active span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 1px;
  left: 4px;
  background: var(--primary);
}
/* Mobile Styles */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1.5rem;
  }
  .navbar-menu {
    justify-content: flex-end;
  }
  .navbar ul {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    padding: 2rem 0;
    z-index: 1000;
  }
  .navbar ul.active {
    transform: translateX(0);
  }
  .menu-toggle {
    display: block;
  }
  .booking-link {
    padding: 0.8rem 1.5rem !important;
  }
  .floating-book-btn {
    left: 10px;
    padding: 12px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .back-to-top {
    right: 10px;
    width: 45px;
    height: 45px;
  }
}
/* Enhanced Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.3) 60%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../img/hero-background.jpg") center/cover no-repeat;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(transparent, var(--darker));
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease;
}
.hero-subtitle {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  opacity: 2;
  font-weight: 900;
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--light);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}
.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--light);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 1px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  background: var(--primary);
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow-primary);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
.cta-button:hover {
  background: var(--dark);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(219, 161, 111, 0.5);
}
.cta-button:active {
  transform: translateY(1px);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Section Styles */
section {
  padding: 8rem 2rem;
  position: relative;
}
.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 5rem;
  color: var(--light);
  position: relative;
  display: inline-block;
  padding: 0 2rem;
}
.title-decorator {
  position: relative;
  display: inline-block;
}
.title-decorator::before,
.title-decorator::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: var(--gradient);
}
.title-decorator::before {
  left: -60px;
}
.title-decorator::after {
  right: -60px;
}
/* Services Section */
.services {
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}
.services .content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8rem;
  position: relative;
  z-index: 1;
}
.services-intro {
  text-align: left;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: var(--medium-gray);
  font-weight: 300;
  letter-spacing: 0.5px;
}
/* Accordion Styles */
.services-accordion {
  margin-bottom: 3rem;
}
.accordion-item {
  background: #f5f5f5;
  border-radius: var(--border-radius-lg);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item.active .accordion-content {
  max-height: 2000px;
  opacity: 1;
  padding: 2rem;
}
.accordion-item.active .accordion-icon i {
  transform: rotate(45deg);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: #f5f5f5;
  transition: var(--transition);
}
.accordion-header:hover {
  background: #eeeeee;
}
.category-title {
  color: var(--dark-brown);
  font-size: 1.5rem;
  margin: 0;
}
.accordion-icon {
  color: var(--dark-brown);
  font-size: 1.2rem;
  transition: var(--transition);
}
.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}
.service-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.service-item {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.service-header h4 {
  font-size: 1rem;
  color: var(--medium-gray);
  margin: 0;
  font-weight: 500;
}
.service-price {
  color: var(--dark-brown);
  font-weight: 600;
  font-size: 1rem;
}
.service-item p {
  color: #555555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.services-cta {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  background: #f5f5f5;
}
.services-cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--medium-gray);
}
/* Section Title adjustments for Services */
.services .section-title {
  color: var(--medium-gray);
}
.services .title-decorator::before,
.services .title-decorator::after {
  background: linear-gradient(90deg, var(--dark-brown), var(--light-brown));
}
/* About Section */
.about {
  background: var(--darker);
  position: relative;
  overflow: hidden;
}
.about-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/hero-background.jpg") center/cover no-repeat;
  opacity: 45%;
  z-index: 0;
}
.about .content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8rem;
  position: relative;
  z-index: 1;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 25px 25px 0 rgba(219, 161, 111, 0.1);
  transform: translateZ(0);
}
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}
.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transform: scale(1.05);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  filter: grayscale(20%) contrast(1.1);
}
.about-content {
  position: relative;
  z-index: 1;
}
.lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 300;
}
.signature {
  display: flex;
  align-items: center;
  margin: 3rem 0;
}
.signature img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 1.5rem;
  border-radius: 50%;
  border: 2px solid rgba(219, 161, 111, 0.3);
  transition: var(--transition);
}
.signature:hover img {
  transform: rotate(-2deg);
  border-color: var(--primary);
}
.signature-info {
  border-left: 1px solid var(--primary);
  padding-left: 1.5rem;
}
.name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-family: "Cinzel", serif;
}
.role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
}
.philosophy {
  background: rgba(219, 161, 111, 0.05);
  border-left: 2px solid var(--primary);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}
.philosophy h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.philosophy p {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}
/* Gallery Section */
.gallery {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.gallery .content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8rem;
  position: relative;
  z-index: 1;
}
.gallery-intro {
  text-align: left;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.portfolio-item {
  background: var(--accent);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.portfolio-image {
  height: 400px;
  overflow: hidden;
  position: relative;
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  filter: grayscale(20%) contrast(1.1);
}
/* Swiper Styles */
.portfolioSwiper {
  width: 100%;
  padding: 20px 0 40px;
  display: none;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}
.swiper-pagination-bullet {
  background: var(--light);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
}
.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}
/* Mobile - show swiper */
@media (max-width: 767px) {
  .portfolio-grid {
    display: none;
  }
  .portfolioSwiper {
    display: block;
  }
}
/* Desktop - show grid */
@media (min-width: 768px) {
  .portfolioSwiper {
    display: none;
  }
  .portfolio-grid {
    display: grid;
  }
}
/* Enhanced Reviews Section Styles */
.reviews-section {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  background-color: var(--darker);
}
.reviews-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/hero-background.jpg") center/cover no-repeat;
  opacity: 45%;
  z-index: 0;
}
.reviews-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8rem;
}
.reviews-header {
  text-align: left;
  margin-bottom: 4rem;
}
.reviews-intro {
  text-align: left;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.5px;
}
/* Desktop Reviews Slider */
.reviews-slider-desktop {
  display: block;
  margin-bottom: 3rem;
  position: relative;
}
.reviews-slider-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}
.reviews-slider {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.review-card {
  flex: 0 0 calc(33.333% - 2rem);
  margin: 0 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(219, 161, 111, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  height: 450px; /* Fixed height for all review cards */
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  box-shadow: 0 15px 35px rgba(219, 161, 111, 0.2);
  border-color: var(--primary);
}
.review-quote {
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 2px solid var(--primary);
}
.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info {
  flex-grow: 1;
}
.author-name {
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.author-rating {
  color: var(--primary);
  font-size: 0.9rem;
}
/* Reviews Navigation */
.reviews-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.review-control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(219, 161, 111, 0.6);
  border: 1px solid var(--primary);
  color: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.review-control:hover {
  background: var(--primary);
  color: var(--dark);
  transform: scale(1.1);
}
/* Mobile Reviews Slider */
.reviews-slider-mobile {
  display: none;
  margin-bottom: 3rem;
  position: relative;
}
.mobile-review-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}
.mobile-review-slide.active {
  display: block;
}
.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}
.reviews-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.reviews-cta .cta-button:hover {
  background: var(--dark);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(219, 161, 111, 0.4);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Parallax Effect */
/* Parallax Effect - Modified for mobile compatibility */
.parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Desktop parallax */
@media (min-width: 1025px) {
  .parallax {
    background-attachment: fixed;
  }
}
/* Mobile adjustments for parallax backgrounds */
@media (max-width: 1024px) {
  .hero-background {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0) 100%
      ),
      url("../img/hero-background.jpg") center/cover no-repeat;
    background-attachment: scroll; /* Changed from fixed */
  }
  .about-background,
  .reviews-background {
    background: var(--accent-light);
    background-attachment: scroll; /* Changed from fixed */
  }
}
/* Additional mobile-specific fixes */
@media (max-width: 768px) {
  .hero-background {
    background-position: center top; /* Adjust focal point for mobile */
  }
  .about-background,
  .reviews-background {
    background-position: center; /* Ensure proper centering */
  }
  /* Mobile review card adjustments */
  .review-card {
    height: 475px; /* Ensure consistent minimum height */
  }
}
/* Contact Section */
.contact {
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}
.contact .content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8rem;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}
.info-box {
  background: #f5f5f5;
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition-slow);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.info-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent,
    rgba(219, 161, 111, 0.05),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}
.info-box:hover::before {
  animation: shine 1.5s ease;
}
.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: rgba(219, 161, 111, 0.1);
  border: 2px solid rgba(219, 161, 111, 0.3);
  transition: var(--transition);
}
.info-box:hover .icon-wrapper {
  transform: scale(1.1) rotate(15deg);
  background: rgba(219, 161, 111, 0.2);
}
.info-box i {
  font-size: 2.2rem;
  color: var(--dark-brown);
  transition: var(--transition);
}
.info-box:hover i {
  transform: rotate(10deg);
}
.info-box h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--dark-brown);
}
.info-box p {
  color: var(--medium-gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
}
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 2rem;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  margin-top: auto;
  box-shadow: 0 5px 25px rgba(219, 161, 111, 0.3);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: 2px solid var(--primary);
}
.contact-button i {
  color: #ffffff;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.contact-button:hover {
  background: var(--dark);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(219, 161, 111, 0.4);
}
.contact-button:hover i {
  transform: translateX(5px);
}
@keyframes shine {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}
/* Section Title adjustments for Contact */
.contact .section-title {
  color: var(--medium-gray);
}
.contact .title-decorator::before,
.contact .title-decorator::after {
  background: linear-gradient(90deg, var(--dark-brown), var(--light-brown));
}
/* Map Container Styles */
.map-container {
  position: relative;
  margin-top: 4rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}
.map-wrapper {
  width: 100%;
  height: 100%;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 3rem 2rem 2rem;
  pointer-events: none;
}
.map-info {
  max-width: 500px;
  color: var(--light);
  pointer-events: auto;
}
.map-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.map-info p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}
.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--primary);
  color: var(--dark);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.map-directions:hover {
  background: var(--dark);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(219, 161, 111, 0.4);
}
.map-directions i {
  font-size: 1.2rem;
}
/* Footer Styles */
footer {
  background: var(--dark);
  padding: 6rem 4rem 3rem;
  color: var(--light);
  position: relative;
  overflow: hidden;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand {
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.footer-logo img {
  height: 110px;
  width: auto;
}
.footer-slogan {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 1px;
}
.footer-address {
  margin-top: 1.5rem;
}
.footer-address p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}
.footer-address i {
  color: var(--primary);
  width: 20px;
  text-align: center;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}
.link-group h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.8rem;
  letter-spacing: 1px;
  font-family: "Cinzel", serif;
}
.link-group h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--gradient);
}
.link-group a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
  font-weight: 300;
}
.link-group a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--primary);
  transition: var(--transition);
}
.link-group a:hover {
  color: var(--primary);
  padding-left: 20px;
}
.link-group a:hover::before {
  left: 0;
  opacity: 1;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
  font-weight: 300;
}
.footer-credits {
  color: var(--primary);
  font-weight: 400;
  text-decoration: none;
}
.footer-credits:hover {
  text-decoration: none;
  color: var(--primary-dark);
}
/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(219, 161, 111, 0.1);
  color: var(--primary);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(219, 161, 111, 0.3);
}
.social-link:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(219, 161, 111, 0.3);
}
/* Responsive adjustments */
@media (max-width: 1200px) {
  .about .content,
  .gallery .content,
  .contact .content,
  .services .content {
    padding: 0 5rem;
  }
  .reviews-content {
    padding: 0 5rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  section {
    padding: 6rem 2rem;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-image {
    max-width: 700px;
    margin: 0 auto;
  }
  .portfolio-image {
    height: 350px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  /* Map responsive adjustments */
  .map-container {
    height: 400px;
    margin-top: 3rem;
  }
  .map-overlay {
    padding: 2rem 1.5rem 1.5rem;
  }
  .map-info h3 {
    font-size: 1.5rem;
  }
  .map-info p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  section {
    padding: 5rem 1.5rem;
  }
  .about .content,
  .gallery .content,
  .contact .content,
  .services .content,
  .reviews-content {
    padding: 0 2rem;
  }
  .section-title {
    margin-bottom: 3.5rem;
  }
  .title-decorator::before,
  .title-decorator::after {
    width: 30px;
  }
  .title-decorator::before {
    left: -40px;
  }
  .title-decorator::after {
    right: -40px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
  .info-box {
    padding: 2.5rem 2rem;
  }
  .service-category {
    padding: 2rem;
  }
  .services-cta {
    padding: 2rem 1.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    gap: 3rem;
  }
  .social-links {
    margin: 3rem 0;
  }
  /* Map responsive adjustments */
  .map-container {
    height: 350px;
    margin-top: 2.5rem;
  }
  .map-overlay {
    padding: 1.5rem;
  }
  .map-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .map-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .map-directions {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  /* Reviews slider adjustments */
  .reviews-slider-desktop {
    display: none;
  }
  .reviews-slider-mobile {
    display: block;
  }
  .review-card {
    flex: 0 0 100%;
    margin: 0 0 2rem 0;
  }
}
@media (max-width: 576px) {
  .about .content,
  .gallery .content,
  .contact .content,
  .services .content,
  .reviews-content {
    padding: 0 1.5rem;
  }
  .title-decorator::before,
  .title-decorator::after {
    display: none;
  }
  .signature {
    flex-direction: column;
    text-align: center;
  }
  .signature img {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .signature-info {
    border-left: none;
    border-top: 1px solid var(--primary);
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .service-header h4 {
    font-size: 1rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    gap: 2rem;
  }
  footer {
    padding: 4rem 2rem 2rem;
  }
  /* Map responsive adjustments */
  .map-container {
    height: 300px;
    margin-top: 2rem;
  }
  .map-info {
    max-width: 100%;
  }
  .map-info h3 {
    font-size: 1.2rem;
  }
  .map-info p {
    font-size: 0.9rem;
  }
  .map-directions {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}
/* Overlay */
#bookingModal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;

  opacity: 0; /* start invisible */
  transition: opacity 0.3s ease; /* fade animation */
  pointer-events: none; /* prevent clicks when hidden */
}

#bookingModal.show {
  display: flex;
  opacity: 1;
  pointer-events: auto; /* clickable only when visible */
}

/* White content box */
#bookingModal .booking-content {
  position: relative;
  width: 90%;
  height: 90%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

#bookingModal.show .booking-content {
  transform: scale(1);
}

/* Close button */
#bookingModal .close-btn {
  position: absolute;
  top: 3px;
  right: 3px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

#bookingModal .close-btn:hover {
  background: #444;
}

/* Iframe */
#bookingModal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* Promotion Popup Styles */
.promotion-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.promotion-popup.active {
  opacity: 1;
  visibility: visible;
}

.promotion-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  transform: translateY(0);
}

.promotion-close {
  position: absolute;
  top: 10px; /* Adjusted for mobile */
  right: 10px; /* Adjusted for mobile */
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10; /* Ensure it's above other content */
}

.promotion-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.promotion-icon {
  font-size: 2.5rem; /* Reduced for mobile */
  color: var(--primary);
  margin-bottom: 0.8rem; /* Reduced for mobile */
}

.promotion-title {
  font-family: "Cinzel", serif;
  color: var(--primary);
  font-size: 1.5rem; /* Reduced for mobile */
  margin-bottom: 0.8rem; /* Reduced for mobile */
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3; /* Better text wrapping */
}

.promotion-offer {
  font-size: 1.1rem; /* Reduced for mobile */
  color: var(--light);
  margin-bottom: 1rem; /* Reduced for mobile */
  font-weight: 600;
  line-height: 1.4; /* Better text wrapping */
}

.promotion-code {
  font-size: 1rem; /* Reduced for mobile */
  color: #dba16f;
  background: rgba(219, 161, 111, 0.1);
  padding: 0.6rem; /* Reduced for mobile */
  border-radius: 4px;
  margin: 0.8rem 0; /* Reduced for mobile */
  font-weight: bold;
  border: 1px dashed #dba16f;
  word-break: break-word; /* Prevent long text from overflowing */
}

.promotion-instruction {
  font-size: 0.8rem;
  color: #f71515;
  margin: 0.6rem 0; /* Reduced for mobile */
  font-weight: 600;
  line-height: 1.3; /* Better text wrapping */
}

.promotion-note {
  background: rgba(219, 161, 111, 0.1);
  border-left: 3px solid var(--primary);
  padding: 0.8rem; /* Reduced for mobile */
  margin: 1rem 0; /* Reduced for mobile */
  text-align: left;
  border-radius: var(--border-radius);
}

.promotion-note p {
  margin: 0;
  font-size: 0.8rem; /* Reduced for mobile */
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4; /* Better text wrapping */
}

.promotion-button {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 0.7rem 1.2rem; /* Reduced for mobile */
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.8rem; /* Reduced for mobile */
  transition: var(--transition);
  border: 2px solid var(--primary);
  font-size: 0.9rem; /* Reduced for mobile */
}

.promotion-button:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
  .promotion-popup {
    align-items: flex-start; /* Start from top on very small screens */
    padding-top: 40px; /* Space from top */
  }

  .promotion-content {
    padding: 1.5rem;
    max-height: 85vh; /* Slightly less height on very small screens */
  }

  .promotion-title {
    font-size: 1.3rem;
  }

  .promotion-offer {
    font-size: 1rem;
  }

  .promotion-code {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}
