/* ===== BASE STYLES ===== */
:root {
  --primary: #9D7C5E;       /* Earthy spa brown */
  --primary-dark: #7A6148;  /* Darker brown */
  --primary-light: #E8D5C4; /* Light beige */
  --secondary: #6B9080;     /* Calming green */
  --light: #F8F5F2;        /* Cream background */
  --dark: #333333;         /* Dark text */
  --white: #FFFFFF;
  --black: #000000;
  --gray: #777777;
  --light-gray: #EEEEEE;
  --success: #28a745;      /* Green for buttons */
  --danger: #dc3545;       /* Red for special offers */
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== UTILITY CLASSES ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

.bg-primary {
  background-color: var(--primary);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

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

.btn-whatsapp:hover {
  background-color: #128C7E;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 15px 0;
}

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

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

.logo img {
  height: 50px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 150px 0 100px;
  background: black;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero .lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* ===== USP SECTION ===== */
.usp-section {
  padding: 80px 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.usp-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.usp-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 0;
  background-color: var(--white);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 15px;
  text-align: left;
}

.price-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--light-gray);
}

.price-table tr:hover {
  background-color: var(--light);
}

/* ===== OFFER BANNER ===== */
.offer-banner {
  background-color: var(--danger);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background-color: var(--light);
}

.testimonial-slider {
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 0 15px;
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 80px 0;
}

.faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 20px;
}

.faq-question {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
  cursor: pointer;
}

/* ===== LOCATION SECTION ===== */
.location {
  padding: 80px 0;
  background-color: var(--white);
}

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

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
}

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

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

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

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

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-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;
  color: var(--white);
}

.whatsapp-btn {
  background-color: #25D366;
}

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

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

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .usp-grid {
    grid-template-columns: 1fr;
  }
  
  .price-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}