/* ============================================
   ANNA CLIMENT - MASAJE TERAPÉUTICO EN DÉNIA
   Harmonisation avec les couleurs du logo
   Primaire: #0789c5 | Secondaire: #28b1e5
   Texte Anna Climent: #8a8a8a
   Police: Sui Generis Thin + Inter
   Optimisé SEO - masajeterapeuticodenia.es
   ============================================ */

/* Variables & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-primary: #0789c5;
  --brand-secondary: #28b1e5;
  --brand-name: #8a8a8a;
  --deep-blue: #0A2B4E;
  --soft-blue: #E8F4FA;
  --pure-white: #FFFFFF;
  --gray-light: #F8FAFE;
  --gray-mid: #E2E8F0;
  --text-dark: #1E2A3E;
  --text-muted: #5A6B7A;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--pure-white);
  color: var(--text-dark);
  scroll-behavior: smooth;
  line-height: 1.5;
}

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

/* ============================================
   Typographie & Utilitaires
   ============================================ */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
}

.brand-accent {
  color: var(--brand-primary);
  font-weight: 600;
}

/* Police spéciale pour le nom Anna Climent */
.logo-name, .hero-name {
  font-family: 'Sui Generis', 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--brand-name);
}

/* ============================================
   Langue Switcher
   ============================================ */
.lang-switch {
  display: flex;
  gap: 0.5rem;
  margin-left: 1rem;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 30px;
  transition: 0.2s;
  color: var(--text-muted);
  font-family: inherit;
}

.lang-btn.active {
  background: var(--brand-primary);
  color: white;
}

.lang-btn:hover:not(.active) {
  background: var(--soft-blue);
  color: var(--brand-primary);
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  z-index: 1000;
  border-bottom: 1px solid rgba(7, 137, 197, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-silhouette {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 4px 12px rgba(7, 137, 197, 0.25);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 0;
}

.logo-text p {
  font-size: 0.7rem;
  color: var(--brand-primary);
  letter-spacing: 0.3px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-dark);
  transition: 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--brand-primary);
}

.btn-wa-nav {
  background: var(--whatsapp-green);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-wa-nav:hover {
  background: var(--whatsapp-dark);
  transform: scale(0.97);
  color: white !important;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--brand-primary);
}

/* ============================================
   Sections générales
   ============================================ */
section {
  padding: 5rem 0;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--soft-blue) 0%, var(--pure-white) 100%);
  padding: 4rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(7, 137, 197, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1.2;
}

.hero-badge {
  background: rgba(7, 137, 197, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-badge i {
  font-size: 0.9rem;
  color: var(--brand-primary);
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-name {
  display: block;
  font-family: 'Sui Generis', 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--brand-name);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.hero-title-light {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: var(--brand-primary);
  margin-top: 0.5rem;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 90%;
  line-height: 1.5;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--brand-primary);
  color: var(--brand-primary);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-2px);
}

.trust-badge {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.trust-badge span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--pure-white);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.trust-badge i {
  color: var(--brand-primary);
  font-size: 0.9rem;
}

.hero-image {
  flex: 0.8;
  text-align: center;
}

.hero-silhouette {
  background: linear-gradient(145deg, var(--pure-white), var(--soft-blue));
  border-radius: 50%;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 45px -12px rgba(7, 137, 197, 0.2);
  overflow: hidden;
  border: 4px solid rgba(7, 137, 197, 0.1);
  transition: transform 0.3s ease;
}

.hero-silhouette:hover {
  transform: scale(1.02);
  border-color: rgba(7, 137, 197, 0.2);
}

.hero-silhouette-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ============================================
   MCP Highlight
   ============================================ */
.mcp-highlight {
  background: var(--soft-blue);
  border-radius: 32px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  border-left: 5px solid var(--brand-primary);
}

.mcp-highlight h2 {
  font-size: 1.6rem;
  color: var(--deep-blue);
  margin-bottom: 0.8rem;
}

.mcp-highlight h2 i {
  color: var(--brand-primary);
}

.mcp-highlight p {
  line-height: 1.6;
}

/* ============================================
   Services List
   ============================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: white;
  padding: 1.2rem 1.8rem;
  border-radius: 20px;
  border: 1px solid var(--gray-mid);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.service-item:hover {
  transform: translateX(8px);
  border-color: var(--brand-primary);
  box-shadow: 0 8px 20px rgba(7, 137, 197, 0.1);
}

.service-item i {
  font-size: 1.8rem;
  color: var(--brand-primary);
  width: 48px;
  text-align: center;
}

.service-item h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1;
  margin: 0;
}

/* ============================================
   Locations / Centros
   ============================================ */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.location-card {
  background: white;
  border-radius: 28px;
  padding: 1.5rem;
  flex: 1;
  min-width: 320px;
  border: 1px solid var(--gray-mid);
  transition: 0.2s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.location-card:hover {
  box-shadow: 0 15px 30px -10px rgba(7, 137, 197, 0.1);
  border-color: var(--brand-primary);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.location-header i {
  font-size: 1.8rem;
  color: var(--brand-primary);
}

.location-header h3 {
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin: 0;
}

.address {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.5rem 0 1rem 0;
  line-height: 1.4;
  padding-left: 0.5rem;
  border-left: 3px solid var(--brand-primary);
}

.map-container {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  margin: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.85rem;
  margin-top: 0.8rem;
  margin-right: 0.5rem;
  font-weight: 500;
  transition: 0.2s;
}

.btn-directions:hover {
  background: #066aa0;
  transform: translateY(-2px);
}

.wa-location-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp-green);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.85rem;
  margin-top: 0.8rem;
  font-weight: 500;
  transition: 0.2s;
}

.wa-location-btn:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

/* ============================================
   Carrousel Témoignages
   ============================================ */
.testimonials-carousel {
  background: white;
  overflow: hidden;
  position: relative;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

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

.testimonial-card {
  background: var(--soft-blue);
  border-radius: 28px;
  padding: 2rem;
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: 0;
  transition: 0.2s;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -8px rgba(7, 137, 197, 0.15);
}

.stars {
  color: #FBBF24;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.client-name {
  font-weight: 700;
  color: var(--deep-blue);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid var(--gray-mid);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  color: var(--brand-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

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

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-mid);
  cursor: pointer;
  transition: 0.2s;
}

.dot.active {
  background: var(--brand-primary);
  width: 24px;
  border-radius: 10px;
}

/* ============================================
   Contact WhatsApp
   ============================================ */
.contact-whatsapp {
  background: linear-gradient(120deg, var(--soft-blue), white);
  text-align: center;
}

.wa-card {
  background: white;
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 48px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-mid);
}

.wa-icon-big {
  font-size: 4rem;
  color: var(--whatsapp-green);
  margin-bottom: 1rem;
}

.wa-card h2 {
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.btn-wa-large {
  background: var(--whatsapp-green);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 1.5rem 0;
  transition: 0.2s;
}

.btn-wa-large:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.02);
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--deep-blue);
  color: #CFE3FF;
  padding: 2rem 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-addresses {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.footer-copyright {
  font-size: 0.7rem;
  margin-top: 1rem;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-content p {
    max-width: 100%;
  }

  .btn-group {
    justify-content: center;
  }

  .trust-badge {
    justify-content: center;
  }

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

  .carousel-wrapper {
    padding: 0 40px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .location-card {
    min-width: 280px;
  }

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

  .hero-name {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }

  .hero-title-light {
    font-size: 1.6rem;
  }

  .hero-silhouette {
    width: 260px;
    height: 260px;
  }

  .logo-name {
    font-size: 1.2rem;
  }

  .service-item {
    padding: 1rem 1.2rem;
  }

  .service-item i {
    font-size: 1.5rem;
    width: 40px;
  }

  .service-item h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .carousel-wrapper {
    padding: 0 30px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .map-container {
    height: 180px;
  }

  .hero-silhouette {
    width: 220px;
    height: 220px;
  }

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

  .hero-name {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
  }

  .hero-title-light {
    font-size: 1.3rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-silhouette {
    width: 44px;
    height: 44px;
  }

  .service-item {
    padding: 0.8rem 1rem;
  }

  .service-item i {
    font-size: 1.2rem;
    width: 32px;
  }

  .service-item h3 {
    font-size: 0.85rem;
  }
}