@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #6A1A21;
  /* Rich Maroon */
  --secondary-color: #C5A059;
  /* Classic Gold */
  --accent-color: #8C252D;
  /* Lighter Maroon for hover */
  --bg-color: #FCFBF9;
  /* Creamy White */
  --text-dark: #2C2C2C;
  --text-light: #FFFFFF;
  --text-muted: #666666;
  --overlay-dark: rgba(0, 0, 0, 0.5);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(106, 26, 33, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #b59045;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.sticky {
  background: rgba(252, 251, 249, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.sticky .nav-logo {
  color: var(--primary-color);
}

.navbar.sticky .nav-links a {
  color: var(--text-dark);
}

.navbar.sticky .nav-links a:hover {
  color: var(--secondary-color);
}

/* Force black text on non-home pages */
nav.nav-black-text .nav-links a {
  color: #000 !important;
}

nav.nav-black-text .nav-links a:hover,
nav.nav-black-text .nav-links a.active {
  color: var(--secondary-color) !important;
}

nav.nav-black-text .mobile-toggle {
  color: #000 !important;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-logo img {
  height: 85px;
  width: auto;
  transition: var(--transition);
}

.navbar.sticky .nav-logo img {
  height: 55px;
}

.nav-logo span {
  color: var(--secondary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-color);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  cursor: pointer;
  color: var(--text-light);
}

.navbar.sticky .mobile-toggle {
  color: var(--primary-color);
}

/* Hero Slider Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
  /* Subtle Ken Burns effect */
}

.slide.active .hero-img {
  transform: scale(1.1);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 0 2rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.5s;
}

.slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 {
  font-size: 4.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
}

.slider-nav button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.slider-nav button:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
  border-color: #fff;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Content Sections */
.section-padding {
  padding: 6rem 0;
}

/* About Overlay */
.about-preview {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 4rem;
  box-shadow: var(--shadow);
}

.about-preview-content {
  flex: 1;
}

.about-preview-content h2 {
  font-size: 2.2rem;
}

.about-preview-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-preview-img {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-preview-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-preview-img:hover img {
  transform: scale(1.05);
}

/* Cards / Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--secondary-color);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* Gallery Preview */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(106, 26, 33, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}


/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-col p,
.footer-col ul li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .about-preview {
    flex-direction: column;
    padding: 2rem;
    margin-top: -40px;
  }

  .hero-btns {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--text-dark);
    font-size: 1.1rem;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
    font-size: 1.5rem;
  }

  .mobile-toggle.active {
    color: var(--text-dark);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero {
    height: 50vh;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .hero-btns .btn {
    width: 100%;
    margin-right: 0 !important;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Contact Page Specific */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.map-container {
  margin-top: 3rem;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Page Headers (for non-home pages) */
.page-header {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(106, 26, 33, 0.7);
}

.page-header h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 3.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Service Detail Cards */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-row {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-row-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-row-img img {
  width: 100%;
  display: block;
}

.service-row-text {
  flex: 1;
}

.service-row-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-row-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 500;
}

.service-features li i {
  color: var(--secondary-color);
}

@media (max-width: 768px) {

  .service-row,
  .service-row:nth-child(even) {
    flex-direction: column;
  }
}

/* Room Details Styles */
.room-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-top: 140px;
  /* Increased to prevent fixed header overlap */
}

.room-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.room-side-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.room-side-gallery img {
  width: 100%;
  height: calc(250px - 0.5rem);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.room-side-gallery img:hover {
  transform: scale(1.02);
}

.room-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.room-facilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}

.facility-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  width: 25px;
}

.room-pricing {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}

.price-box {
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--font-heading);
}

.price-period {
  color: var(--text-muted);
  font-size: 1.1rem;
}

@media (max-width: 992px) {

  .room-hero,
  .room-content-grid {
    grid-template-columns: 1fr;
  }

  .room-side-gallery {
    flex-direction: row;
  }

  .room-side-gallery img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .room-main-img {
    height: 300px;
  }

  .room-side-gallery {
    flex-direction: column;
  }

  .room-facilities {
    grid-template-columns: 1fr;
  }
}

/* Testimonials Slider Styles */
.testimonials-section {
  overflow: hidden;
  position: relative;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}

.testimonial-card {
  min-width: calc(33.333% - 1.33rem);
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 4px solid var(--secondary-color);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content .stars {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.8;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-color);
}

.author-details h4 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.author-details span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testi-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-control-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  font-size: 1rem;
}

.testi-control-btn:hover {
  background: var(--secondary-color);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testi-dot.active {
  background: var(--primary-color);
  width: 25px;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .testimonial-card {
    min-width: calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    min-width: 100%;
  }
  
  .testimonials-track {
    gap: 0;
  }
  
  .testimonial-card {
    border-radius: 0;
    box-shadow: none;
    border-left: 4px solid var(--secondary-color);
    border-bottom: none;
  }
}