/* ===== Base Styles ===== */
:root {
  --primary: #9D7C5E;
  --primary-dark: #7A6148;
  --light: #F8F5F2;
  --dark: #333333;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #777777;
  --light-gray: #EEEEEE;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.highlight {
  color: var(--primary);
}

/* ===== Buttons ===== */
.btn {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-spa {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-spa:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-spa {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-spa:hover {
  background-color: var(--primary);
  color: var(--white);
}

.link-spa {
  color: var(--primary);
  font-weight: 600;
}

.link-spa:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===== Header/Navbar ===== */
.navbar {
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.9);
  padding: 8px 15px;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

/* ===== Hero Section ===== */
.hero-section {
  padding: 100px 0 80px;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.hero-image img {
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

.trust-badges .badge-item {
  background: var(--white);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ===== Location CTA ===== */
.location-cta {
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ===== Section Styling ===== */
.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header .lead {
  color: var(--gray);
  font-size: 1.1rem;
}

/* ===== Service Cards ===== */
.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-img {
  overflow: hidden;
  height: 220px;
}

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

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-content p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

/* ===== Offer Section ===== */
.offer-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}

.offer-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.offer-section .lead {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.countdown-item {
  text-align: center;
  background: rgba(255,255,255,0.15);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 80px;
}

.countdown-item span:first-child {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.countdown-item span:last-child {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.client-info h5 {
  margin-bottom: 5px;
  color: var(--dark);
}

.client-info small {
  color: var(--gray);
  font-size: 0.8rem;
}

.rating {
  color: var(--primary);
}

/* ===== About Section ===== */
.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.about-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1.2rem;
}

/* ===== Contact Section ===== */
.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h5 {
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--gray);
}

.contact-details a {
  color: var(--gray);
}

.contact-details a:hover {
  color: var(--primary);
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--dark);
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.newsletter .form-control {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
}

.newsletter .form-control::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter .btn {
  background: var(--primary);
  color: var(--white);
}

/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.whatsapp-btn, .call-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
}

.call-btn {
  background: var(--primary);
  color: var(--white);
}

.whatsapp-btn:hover, .call-btn:hover {
  transform: translateY(-5px) scale(1.1);
  color: var(--white);
}

/* ===== Gallery Modal ===== */
.modal-content {
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand img {
    height: 40px;
  }
  
  .hero-section {
    padding: 60px 0 40px;
    text-align: center;
  }
  
  .hero-section .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .offer-section h2 {
    font-size: 1.8rem;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 10px 15px;
  }
  
  .countdown-item span:first-child {
    font-size: 1.5rem;
  }
  
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn, .call-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .countdown {
    gap: 10px;
  }
  
  .countdown-item {
    min-width: 50px;
    padding: 8px 10px;
  }
  
  .countdown-item span:first-child {
    font-size: 1.2rem;
  }
  
  .countdown-item span:last-child {
    font-size: 0.7rem;
  }
}
