/* CSS Variables for Color Palette */
:root {
  --lilla-primary: #8b5fbf;
  --lilla-light: #b19cd9;
  --lilla-dark: #6a4c93;
  --tiffany-primary: #81d8d0;
  --tiffany-light: #a8e6e0;
  --tiffany-dark: #5bc0be;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --shadow: rgba(139, 95, 191, 0.1);
  --gradient-primary: linear-gradient(135deg, var(--lilla-primary), var(--tiffany-primary));
  --gradient-secondary: linear-gradient(135deg, var(--tiffany-light), var(--lilla-light));
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-logo-img {
  height: 50px;
  width: 50px;
  margin-right: 1rem;
  object-fit: cover;
  object-position: center;
  transform: scale(1.8);
}

.nav-logo-text {
  display: flex;
  align-items: center;
}

.nav-logo-text .limpi {
  color: var(--lilla-primary);
}

.nav-logo-text .dog {
  color: var(--tiffany-primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--lilla-primary);
}

.book-btn {
  background: var(--gradient-primary);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.book-btn:hover {
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--lilla-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 18rem 0 8rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--tiffany-light), var(--lilla-light));
  z-index: -2;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: url("images/hero-bg.png") center/70% no-repeat;
  background-position: center 25%;
  z-index: -1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 30rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--lilla-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--lilla-primary);
  transform: translateY(-3px);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: var(--light-gray);
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--lilla-primary);
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s ease;
  border: 1px solid rgba(139, 95, 191, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--lilla-primary);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.price {
  background: var(--tiffany-light);
  color: var(--lilla-dark);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--lilla-primary);
  margin-bottom: 2rem;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature i {
  font-size: 1.5rem;
  color: var(--tiffany-primary);
  margin-top: 0.25rem;
}

.feature h4 {
  color: var(--lilla-primary);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--gray);
}

.about-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  background: var(--gradient-secondary);
  width: 300px;
  height: 300px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.about-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
}

/* WhatsApp Booking Section */
.whatsapp-booking {
  padding: 5rem 0;
  background: var(--light-gray);
}

.whatsapp-booking h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--lilla-primary);
  margin-bottom: 3rem;
}

.whatsapp-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  text-align: center;
}

.whatsapp-info {
  margin-bottom: 2rem;
}

.whatsapp-logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.whatsapp-logo {
  width: 120px;
  height: auto;
}

.whatsapp-icon {
  width: 80px;
  height: 80px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.whatsapp-info h3 {
  font-size: 1.8rem;
  color: var(--lilla-primary);
  margin-bottom: 1rem;
}

.whatsapp-info p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.whatsapp-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lilla-primary);
  font-weight: 600;
}

.benefit i {
  color: var(--tiffany-primary);
}

.whatsapp-action {
  margin-top: 2rem;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.whatsapp-note {
  margin-top: 1rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.contact-whatsapp {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
}

.contact-logo {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.contact-whatsapp h3 {
  color: var(--lilla-primary);
  margin-bottom: 1rem;
}

.contact-whatsapp p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--lilla-primary);
  margin-bottom: 3rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--tiffany-primary);
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: var(--lilla-primary);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--gray);
}

.contact-form {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 20px;
}

/* Footer */
.footer {
  background: var(--lilla-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 60px;
  width: 60px;
  margin-right: 0.8rem;
  object-fit: cover;
  object-position: center;
  transform: scale(1.8);
}

.footer-logo-text {
  display: flex;
  align-items: center;
}

.footer-logo-text .limpi {
  color: var(--lilla-primary);
}

.footer-logo-text .dog {
  color: var(--tiffany-primary);
}

/* Generic brand color classes */
.limpi {
  color: var(--lilla-primary);
}

.dog {
  color: var(--tiffany-primary);
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--tiffany-light);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--tiffany-light);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--tiffany-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lilla-dark);
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero {
    padding: 12rem 0 6rem 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 24rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-container {
    margin-top: 16rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 10rem 0 5rem 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 15px;
  }

  .booking-form {
    padding: 2rem;
  }

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.feature,
.contact-item {
  animation: fadeInUp 0.6s ease forwards;
}

/* Success Message Styles */
.success-message {
  background: var(--tiffany-light);
  color: var(--lilla-dark);
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 600;
}

.error-message {
  background: #ffebee;
  color: #c62828;
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 600;
}
