@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* :root {
  --primary-orange: #ff9ed5;
  --secondary-gradient: linear-gradient(135deg, #ff9ed5 0%, #fabfd3 100%);
} */

:root {
  --primary-pink: #fabfd3;
  --secondary-pink: #f8a5c2;
  --dark-pink: #e691b5;
  --light-pink: #fdd4e3;
  --secondary-gradient: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* HEADER CU VIDEO */
.header {
  position: relative;
  height: 98vh;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
}

/* Video și overlay rămân la fel */
.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(250, 191, 211, 0.25) 45%,
      rgba(250, 191, 211, 0.15) 100%
    );
  z-index: 1;
}


/* Animație val (funcționează doar în browsere moderne) */
#wavePath {
  animation: waveAnimation 6s ease-in-out infinite;
}

@keyframes waveAnimation {
  0% {
    d: path("M0,80 C360,120 720,40 1080,80 1440,120 1440,0 1440,0 L0,0 Z");
  }
  50% {
    d: path("M0,100 C360,80 720,120 1080,100 1440,80 1440,0 1440,0 L0,0 Z");
  }
  100% {
    d: path("M0,80 C360,120 720,40 1080,80 1440,120 1440,0 1440,0 L0,0 Z");
  }
}

.wave-svg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

@media (max-width: 768px) {
.wave-svg_about_bottom-wave  {
  position: absolute;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
  top: 6420px;
}
}

.header-wave {
  bottom: -2px;
  transform: rotate(180deg);
}

.header-wave-about {
  bottom: -5480px;
  transform: rotate(180deg);
}


#wavePathTop, #wavePathBottom {
  animation: waveAnimation 8s ease-in-out infinite;
}

.header-content,
.navbar {
  position: relative;
  z-index: 2;
}

/* ====== NAVBAR MODERN - UNIFORM DESKTOP & MOBILE ====== */
.navbar {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

/* Navbar sticky cu fundal mai vizibil la scroll */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 15px 40px;
}

/* LOGO MODERN */
.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 12;
}

.logo:hover {
  transform: scale(1.05);
}

.logo span {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* NAV LINKS - DESKTOP */
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

/* Efect underline modern */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fabfd3;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Active link */
.nav-links a.active {
  color: #fabfd3;
}

.nav-links a.active::after {
  width: 100%;
}

/* HAMBURGER MODERN */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 12;
  padding: 10px;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger activ - transformare în X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: #fabfd3;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
  background: #fabfd3;
}

/* ====== MOBILE MENU ====== */
@media (max-width: 768px) {
  .navbar {
    padding: 18px 25px;
  }

  .navbar.scrolled {
    padding: 15px 25px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding: 60px 30px;
    z-index: 11;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Delay pentru animație în cascadă */
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

  .nav-links a {
    font-size: 26px;
    font-weight: 600;
    padding: 12px 0;
  }

  .nav-links a::after {
    height: 3px;
  }

  /* Efect special pentru hover pe mobil */
  .nav-links a:hover {
    transform: scale(1.1);
    letter-spacing: 2px;
  }
}

/* Responsive pentru tablete */
@media (max-width: 1024px) and (min-width: 769px) {
  .navbar {
    padding: 18px 30px;
  }

  .nav-links {
    gap: 25px;
  }

  .nav-links a {
    font-size: 14px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .nav-links a {
    font-size: 24px;
  }
}

/* TEXT DIN HEADER - TIPOGRAFIE PUTERNICĂ */
.header-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.header-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 400;
}

/* BUTOANE CU BOX-SHADOW ANIMATE */
.btn-1 {
  padding: 12px 30px;
  background: var(--secondary-gradient);
  color: #000;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(255, 126, 216, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.btn-1:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 126, 216, 0.5);
}

/* ====== SECTIONS ====== */
.section {
  padding: 40px 0;
}



/* TITLURI CU GRADIENT TEXT */
.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
  filter: brightness(1.1);
}

/* === SECTIUNE PACHETE - STYLING CA BELAQUA === */
#pachete {
  position: relative;
  padding: 80px 5% 120px 5%;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
  overflow: hidden;
}

/* Efect subtil de fundal pentru pachete */
#pachete::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  /* background: radial-gradient(circle, rgba(255,121,0,0.08) 0%, transparent 70%); */
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

#pachete > * {
  position: relative;
  z-index: 1;
}

.pachete-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

@keyframes fadeInDownPachete {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ====== SECTIUNEA HOME - STIL UNIFORM CU RESTUL ====== */
.yellow-bg {
  position: relative;
  padding: 120px 5%;
  /* background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%); */
  background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);
  overflow: hidden;
}

/* Wave-uri poziționate absolut */
.wave-svg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.top-wave {
  top: 0px;
}

.bottom-wave {
  /* bottom: 30px; */
  transform: rotate(180deg);
}

/* Animație wave */
#wavePathTop, #wavePathBottom {
  animation: waveAnimation 8s ease-in-out infinite;
}

/* Efect subtil de fundal */
.yellow-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.home_container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

/* === HEADER ELEGANT === */
.home_container h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #555;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
   text-shadow:
    4px 4px 0 rgba(0,0,0,0.08),
    8px 8px 25px rgba(253, 211, 232, 0.75);
  letter-spacing: 1px;
  text-transform: none;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.home_container h2.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === GRID PENTRU BENEFICII - 2 COLOANE === */
.home-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 0;
  padding: 0;
}

/* === CARD-URI MODERNE PENTRU FIECARE BENEFICIU === */
.home-text p {
  background: white;
  border-radius: 25px;
  padding: 40px 35px 40px 75px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin: 0;
  text-align: left;
  min-height: 140px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out, box-shadow 0.4s ease, transform 0.4s ease;
}

.home-text p.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Linie portocalie sus - ca la cardurile Belaqua */
.home-text p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e691b5 0%, #e691b5 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.home-text p:hover::before {
  transform: scaleX(1);
}

/* Icon cu checkmark modern */
.home-text p::after {
  content: "✓";
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #fabfd3, #f8a5c2);
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(250, 191, 211, 0.4);
  transition: all 0.3s ease;
}

.home-text p:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 60px rgba(226, 106, 165, 0.28);
}

.home-text p:hover::after {
  transform: translateY(-50%) scale(1.15) rotate(5deg);
  box-shadow:
    0 6px 18px rgba(226, 106, 165, 0.45);
}


/* Delay pentru animații */
.home-text p:nth-child(1) { transition-delay: 0.01s; }
.home-text p:nth-child(2) { transition-delay: 0.01s; }
.home-text p:nth-child(3) { transition-delay: 0.01s; }
.home-text p:nth-child(4) { transition-delay: 0.01s; }
.home-text p:nth-child(5) { transition-delay: 0.01s; }
.home-text p:nth-child(6) { transition-delay: 0.01s; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .home_container {
    max-width: 1100px;
  }

  .home_container h2 {
    font-size: 48px;
    margin-bottom: 70px;
  }

  .home-text {
    gap: 30px;
  }

  .home-text p {
    padding: 35px 30px 35px 70px;
    font-size: 15px;
    min-height: 130px;
  }
}

@media (max-width: 900px) {
  .home-text {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .home-text p {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .yellow-bg {
    padding: 80px 20px;
  }

  .home_container {
    padding: 40px 0;
  }

  .home_container h2 {
    font-size: 38px;
    margin-bottom: 50px;
  }

  .home-text {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-text p {
    padding: 30px 25px 30px 65px;
    font-size: 15px;
    min-height: 110px;
  }

  .home-text p::after {
    left: 22px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .yellow-bg {
    padding: 60px 15px;
  }

  .home_container h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .home-text p {
    padding: 25px 20px 25px 58px;
    font-size: 14px;
    min-height: 100px;
  }

  .home-text p::after {
    left: 20px;
    width: 28px;
    height: 28px;
    font-size: 15px;
  }
}

/* Responsive pentru titlu pachete */
@media (max-width: 768px) {
  #pachete {
    padding: 60px 20px 100px 20px;
  }

  #pachete h2 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  #pachete h2 {
    font-size: 32px;
  }
}

.section p {
  font-family: 'Poppins', sans-serif;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  color: #444;
}

/* Program overlay pe imagine */
.program-overlay {
  position: absolute;
  top: 0; /* Schimbat de la bottom: 0 */
  left: 0;
  right: 0;
  bottom: 0; /* Acoperă toată înălțimea */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Titlu sus, buton jos */
  align-items: center;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); /* Gradient de jos în sus */
  border-radius: 12px;
  z-index: 2;
}

.program-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  align-self: flex-start; /* Aliniat la stânga sus */
  text-align: center;
  width: 100%;
}

.program-overlay p {
  font-family: 'Poppins', sans-serif;
  margin: 0 0 12px;
  font-size: 14px;
  color: #eee;
  opacity: 0.9;
}

/* BUTOANE CU BOX-SHADOW ANIMATE */
.program-overlay .buy-button {
  padding: 10px 20px;
  background: var(--secondary-gradient);
  color: #000;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(255, 126, 216, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

.program-overlay .buy-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 126, 216, 0.5);
}

/* === SECTIUNE RETREAT - STIL UNIFORM CU CARD - VARIANTA MARE === */
.retreat-section {
  position: relative;
  padding: 120px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

/* Efect subtil de fundal */
.retreat-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,121,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.retreat-container {
  max-width: 1400px; /* Mărit de la 1200px */
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Card cu efect hover ca la Belaqua */
.retreat-card {
  background: white;
  border-radius: 30px;
  padding: 60px; /* Mărit de la 50px */
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

/* Linie portocalie sus - ca la cardurile Belaqua */
.retreat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff9ed5 0%, #fabfd3 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

/* Activează linia la hover sau scroll visible */
.retreat-card:hover::before {
  transform: scaleX(1);
}

.retreat-card:hover {
  transform: translateY(-10px);
   box-shadow:
    0 25px 60px rgba(226, 106, 165, 0.28);
}

/* Header */
.retreat-header {
  text-align: center;
  margin-bottom: 60px; /* Mărit de la 50px */
}

.retreat-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px; /* Mărit de la 48px */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 30px; /* Mărit de la 25px */
  line-height: 1.2;
}

.retreat-header h2 .highlight {
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.retreat-header .subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; /* Mărit de la 17px */
  color: #666;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.9; /* Mărit de la 1.8 */
}

/* GALERIE MASONRY STYLE PINTEREST - MAI MARE */
/* Grid galerie cu imagini complete (nu tăiate) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-auto-rows: 400px; */
  grid-auto-rows: auto;

  gap: 18px;
  width: 100%;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow:
    0 25px 60px rgba(226, 106, 165, 0.28);
}

/* Carousel pentru mobil */
.gallery-carousel {
  display: none !important;
}

/* Animație */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive pentru tablete medii */
@media (max-width: 1024px) and (min-width: 769px) {
  .retreat-container {
    max-width: 1200px;
  }

  .retreat-card {
    padding: 50px;
  }

  .retreat-header h2 {
    font-size: 46px;
  }

  .retreat-header .subtitle {
    font-size: 17px;
  }

  /* Galerie cu 2 coloane pentru tablete */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 15px;
  }
}

/* Pentru rezoluții foarte mici de tablete */
@media (max-width: 900px) and (min-width: 769px) {
  /* Galerie cu 2 coloane pentru tablete mici */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }
}

/* Mobil: ascundem grid-ul, afișăm caruselul */
@media (max-width: 768px) {
  .retreat-section {
    padding: 80px 20px;
  }

  .retreat-card {
    padding: 40px 30px; /* Mai mult spațiu pe mobil */
  }

  .retreat-header {
    margin-bottom: 40px;
  }

  .retreat-header h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .retreat-header .subtitle {
    font-size: 16px;
  }

  .gallery-grid { 
    display: none !important; 
  }

  .gallery-carousel {
    display: block !important;
    width: 100%;
    margin: 0 auto;
  }

  .gallery-carousel img {
    width: 100%;
    height: 320px; /* Mărit de la 300px */
    object-fit: cover;
    border-radius: 20px;
  }

  /* Puncte Swiper personalizate */
  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #fabfd3 !important;
    opacity: 0.5;
    border-radius: 50%;
    margin: 0 6px !important;
    box-shadow: 0 0 4px rgba(255, 126, 216, 0.5);
    transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    background-color: #fabfd3 !important;
    opacity: 1;
    box-shadow:
      0 16px 45px rgba(184,68,120,0.55);
  }
}

@media (max-width: 480px) {
  .retreat-card {
    padding: 35px 25px;
  }

  .retreat-header h2 {
    font-size: 32px;
  }

  .retreat-header .subtitle {
    font-size: 15px;
  }

  .gallery-carousel img {
    height: 280px;
  }
}

/* CUSTOM SCROLLBAR CU GRADIENT */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-gradient);
  border-radius: 10px;
  border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background:linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);
}

/* WAVE ANIMATIONS FLUIDE */
.path-0{
  animation:pathAnim-0 8s ease-in-out infinite;
}

@keyframes pathAnim-0{
  0%{
    d: path("M 0,400 L 0,225 C 136.85714285714286,199.625 273.7142857142857,174.25 389,157 C 504.2857142857143,139.75 598,130.625 727,117 C 856,103.375 1020.2857142857144,85.25 1145,65 C 1269.7142857142856,44.75000000000001 1354.8571428571427,22.375000000000004 1440,0 L 1440,400 L 0,400 Z");
  }
  25%{
    d: path("M 0,400 L 0,225 C 151.85714285714286,232.16071428571428 303.7142857142857,239.32142857142858 407,205 C 510.2857142857143,170.67857142857142 564.9999999999999,94.875 690,83 C 815.0000000000001,71.125 1010.2857142857144,123.17857142857143 1147,120 C 1283.7142857142856,116.82142857142857 1361.8571428571427,58.410714285714285 1440,0 L 1440,400 L 0,400 Z");
  }
  50%{
    d: path("M 0,400 L 0,225 C 154.35714285714286,237.33928571428572 308.7142857142857,249.67857142857142 405,241 C 501.2857142857143,232.32142857142858 539.5000000000001,202.625 662,183 C 784.4999999999999,163.375 991.2857142857142,153.82142857142856 1135,125 C 1278.7142857142858,96.17857142857143 1359.357142857143,48.089285714285715 1440,0 L 1440,400 L 0,400 Z");
  }
  75%{
    d: path("M 0,400 L 0,225 C 130.07142857142856,257.2321428571429 260.1428571428571,289.4642857142857 387,273 C 513.8571428571429,256.5357142857143 637.5,191.375 767,141 C 896.5,90.625 1031.857142857143,55.03571428571429 1145,34 C 1258.142857142857,12.96428571428571 1349.0714285714284,6.482142857142855 1440,0 L 1440,400 L 0,400 Z");
  }
  100%{
    d: path("M 0,400 L 0,225 C 136.85714285714286,199.625 273.7142857142857,174.25 389,157 C 504.2857142857143,139.75 598,130.625 727,117 C 856,103.375 1020.2857142857144,85.25 1145,65 C 1269.7142857142856,44.75000000000001 1354.8571428571427,22.375000000000004 1440,0 L 1440,400 L 0,400 Z");
  }
}


/* ====== FOOTER ====== */
.footer {
  padding: 5px 0;
  text-align: center;
  font-size: 14px;
  color: #777;
  background-color: #fabfd3;
}

/* Animatie pentru titlul și descrierea din header */
.header-content h1,
.header-content p,
.header-content .btn-1 {
  opacity: 0;
  transform: translateY(40px);
}

.header-content.visible h1 {
  animation: headerFadeUp 1s cubic-bezier(.77,0,.18,1) forwards;
  animation-delay: 0.1s;
}

.header-content.visible p {
  animation: headerFadeUp 1s cubic-bezier(.77,0,.18,1) forwards;
  animation-delay: 0.4s;
}

.header-content.visible .btn-1 {
  animation: headerFadeUp 1s cubic-bezier(.77,0,.18,1) forwards;
  animation-delay: 0.7s;
}

@keyframes headerFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home*/
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}


.about_ioana {
  padding: 55px;
  background-color: #fabfd3;
}

/* Layout general */
.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px;
}

/* Imagine */
.about-img {
  width: 620px;
  border-radius: 15px;
  margin-top: 80px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  flex-shrink: 0;
  transform: translateX(20px);
}

.about-img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-img-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text */
.about-text {
  margin-top: 40px;
  flex: 1;
  color: #fff;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  color: #fff; /* Alb */
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 1.5); /* Shadow mai puternic */
}

.about-text h2.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-text p {
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateY(20px);
}

.about-text p.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.social-links {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-links a {
  color: white;
  font-size: 1.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-links a.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-links a:hover {
  color: #222;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-img {
    order: -1;
    width: 430px;
    height: 300px;
    margin: 0px auto 0px auto;
    transform: translateX(0);
  }

  .about-text {
    order: 2;
    margin-top: 0;
  }
}

/* Counter */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-box {
  background: #fff;
  color: #000;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(17, 8, 0, 0.6);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-box p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

/* Responsive Design Additions */

/* Tablete (max-width: 1024px) */
@media (max-width: 1024px) {
  .coverflow {
    flex-wrap: wrap;
    perspective: none;
    height: auto;
  }
  .coverflow-item {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    width: 45%;
    margin: 30px 30px;
  }
  .coverflow-controls {
    display: none;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-img {
    order: -1;
    width: 500px;
    height: 450px;
    margin: 0 auto 20px auto;
    transform: translateX(0);
  }

  .about-text {
    order: 2;
    margin-top: 0;
  }
}

/* Extra mic (max-width: 480px) */
@media (max-width: 480px) {
  .coverflow-item {
    width: 80%;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-img {
    order: -1;
    width: 280px;
    height: 300px;
    margin: 0 auto 20px auto;
    transform: translateX(0);
  }

  .about-text {
    order: 2;
    margin-top: 0;
  }
}

/* Ajustări pentru mobil - centrare text și fonturi mai mici */
@media (max-width: 768px) {
  h1, h2, h3, p, .section h2, .section p {
    text-align: center;
  }

  h1 {
    font-size: 28px;
    padding: 10px;
    line-height: 1.2;
  }
  h2 {
    font-size: 24px;
    padding: 10px;
    line-height: 1.3;
  }
  h3 {
    font-size: 20px;
    padding: 10px;
    line-height: 1.3;
  }
  p {
    font-size: 15px;
    padding: 10px;
    line-height: 1.6;
  }

  .btn-1, .btn-2 {
    padding: 10px 20px;
    font-size: 14px;
  }

  .bg-video {
    justify-content: center;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 32px;
  }
  .header-content p {
    font-size: 16px;
  }

  h1, h2, h3, p, .section h2, .section p {
    text-align: center;
  }
  h1 {
    font-size: 28px;
    padding: 10px;
    line-height: 1.2;
  }
  h2 {
    font-size: 24px;
    padding: 10px;
    line-height: 1.3;
  }
  h3 {
    font-size: 20px;
    padding: 10px;
    line-height: 1.3;
  }
  p {
    font-size: 15px;
    padding: 10px;
    line-height: 1.6;
  }

  .btn-1, .btn-2 {
    padding: 10px 20px;
    font-size: 14px;
  }

  .coverflow-item {
    width: 80%;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .coverflow-item {
    width: 75%;
  }
}


@media (max-width: 480px) {
  h1 {
    font-size: 22px;
    line-height: 1.2;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  p {
    font-size: 14px;
    line-height: 1.5;
  }

  .btn-1, .btn-2 {
    font-size: 12px;
    padding: 8px 16px;
  }

  section {
    padding: 15px 10px;
    min-height: auto;
  }

  .retreat-section {
    flex-direction: column;
    min-height: auto;
    padding: 40px 15px;
  }

  .retreat-text {
    padding: 30px 20px;
  }

  .retreat-text h2 {
    font-size: 26px;
  }

  .retreat-text p {
    font-size: 15px;
  }

  .gallery-carousel {
    max-width: 100%;
  }

  .gallery-carousel img {
    height: 250px;
  }

  .coverflow-item {
    width: 80%;
  }

  form {
    max-width: 100%;
    padding: 0 10px;
  }
  
  input, textarea {
    font-size: 14px;
    padding: 10px;
  }
}

.gallery-grid {
  display: grid;
}
.gallery-carousel {
  display: none !important;
}

/* Mobil: ascundem grid-ul, afișăm caruselul */
@media (max-width: 768px) {
  .gallery-grid { 
    display: none !important; 
  }
  .retreat-section {
    flex-direction: column;
    min-height: auto;
    padding: 60px 20px;
    gap: 40px;
  }

  .retreat-text {
    max-width: 100%;
    padding: 40px 30px;
    order: 1; /* Text vine primul pe mobil */
  }

  .retreat-text h2 {
    font-size: 32px;
  }

  .retreat-text p {
    font-size: 16px;
  }

  .gallery-carousel {
    display: block !important; /* Arătăm caruselul pe mobil */
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    order: 2; /* Carousel vine al doilea */
  }

  .gallery-carousel img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
  }

  /* Puncte Swiper personalizate */
  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #fabfd3 !important;
    opacity: 0.5;
    border-radius: 50%;
    margin: 0 6px !important;
    box-shadow: 0 0 4px rgba(255, 126, 216, 0.5);
    transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    background-color: #fabfd3 !important;
    opacity: 1;
    box-shadow: 0 0 4px rgba(255, 126, 216, 0.5);
  }
}

@media (min-width: 769px) and (max-width: 1599px) {
  .retreat-section {
    flex-direction: column;
    height: auto;
    padding: 60px 40px;
    gap: 50px;
  }

  .retreat-text {
    max-width: 100%;
    order: 1; /* Text sus */
  }
}

/* Responsive pentru tablete și rezoluții medii */
@media (max-width: 1024px) and (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    max-width: 100%;
    padding: 40px 30px;
    gap: 10px;
  }
  
  .gallery-grid .gallery-item:nth-child(1) { 
    grid-column: span 2; 
    grid-row: span 2; 
  }
  
  .gallery-grid .gallery-item:nth-child(2) { 
    grid-column: span 2; 
    grid-row: span 1; 
  }
  
  .gallery-grid .gallery-item:nth-child(3) { 
    grid-column: span 2; 
    grid-row: span 1; 
  }
  
  .gallery-grid .gallery-item:nth-child(4) { 
    grid-column: span 2; 
    grid-row: span 1; 
  }
  
  .gallery-grid .gallery-item:nth-child(5) { 
    grid-column: span 2; 
    grid-row: span 2; 
  }
  
  .gallery-grid .gallery-item:nth-child(6) { 
    grid-column: span 2; 
    grid-row: span 1; 
  }
  
  .gallery-grid .gallery-item:nth-child(7) { 
    grid-column: span 2; 
    grid-row: span 1; 
  }
  
  .gallery-grid .gallery-item:nth-child(8) { 
    grid-column: span 2; 
    grid-row: span 1; 
  }
}

/* Pentru rezoluții foarte mici de tablete */
@media (max-width: 900px) and (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 130px;
    gap: 8px;
  }
  
  .gallery-grid .gallery-item:nth-child(1),
  .gallery-grid .gallery-item:nth-child(5) { 
    grid-column: span 2; 
    grid-row: span 2; 
  }
  
  .gallery-grid .gallery-item:nth-child(2),
  .gallery-grid .gallery-item:nth-child(3),
  .gallery-grid .gallery-item:nth-child(4),
  .gallery-grid .gallery-item:nth-child(6),
  .gallery-grid .gallery-item:nth-child(7) { 
    grid-column: span 1; 
    grid-row: span 1; 
  }

  .gallery-grid .gallery-item:nth-child(8){
    grid-column: span 2; 
    grid-row: span 1; 
  }
}

/* === SECTIUNEA BELAQUA - MODERN DESIGN === */
.belaqua-section {
  position: relative;
  padding: 120px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

/* Efect subtil de fundal */
.belaqua-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,121,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.belaqua-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* === HEADER INTEGRAT === */
.belaqua-intro {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInDown 0.8s ease;
}

.belaqua-badge {
  display: inline-block;
  padding: 10px 25px;
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(255, 126, 216, 0.5);
}

.belaqua-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.belaqua-intro h2 .highlight {
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === SECTIUNEA BELAQUA - MODERN DESIGN (IZOLAT) === */
.belaqua-section {
  position: relative;
  padding: 120px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

/* Efect subtil de fundal - DOAR în belaqua-section */
.belaqua-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,121,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.belaqua-section .belaqua-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* === HEADER INTEGRAT === */
.belaqua-section .belaqua-intro {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInDownBelaqua 0.8s ease;
}

.belaqua-section .belaqua-badge {
  display: inline-block;
  padding: 10px 25px;
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(255, 126, 216, 0.5);
}

.belaqua-section .belaqua-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.belaqua-section .belaqua-intro h2 .highlight {
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.belaqua-section .subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === GRID MODERN PENTRU PROGRAME === */
.belaqua-section .belaqua-programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

/* === CARD-URI MODERNE === */
.belaqua-section .program-card {
  background: white;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.belaqua-section .program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff9ed5 0%, #fabfd3 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.belaqua-section .program-card:hover::before {
  transform: scaleX(1);
}

.belaqua-section .program-card:hover {
  transform: translateY(-10px);
   box-shadow:
    0 25px 60px rgba(226, 106, 165, 0.28);
}

/* === HEADER CARD === */
.belaqua-section .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.belaqua-section .card-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.belaqua-section .program-badge {
  padding: 8px 20px;
  background: linear-gradient(
  135deg,
  #f8e2eb 0%,
  #ffffff 100%
  );
  color: #ff9ed5;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 20px;
  border: 2px solid rgba(255, 126, 216, 0.5);
}

/* === DESCRIERE === */
.belaqua-section .program-description {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* === GALERIE MODERNĂ CU DIMENSIUNI FIXE === */
.belaqua-section .program-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.belaqua-section .belaqua-item {
  position: relative;
  border-radius: 25px; /* Colțuri mai rotunjite */
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 250px; /* Înălțime fixă pentru toate imaginile */
}

/* Eliminăm comportamentul special pentru main-image */
.belaqua-section .belaqua-item.main-image {
  grid-row: auto; /* Nu mai ocupă 2 rânduri */
  height: 250px; /* Aceeași înălțime ca restul */
}

.belaqua-section .belaqua-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.belaqua-section .belaqua-item:hover img {
  transform: scale(1.15);
}

/* Overlay pentru imagini */
.belaqua-section .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
  135deg,
  rgba(226, 106, 165, 0.9) 0%,
  rgba(250, 191, 211, 0.9) 100%
);

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 25px; /* Același border-radius pentru overlay */
}

.belaqua-section .belaqua-item:hover .image-overlay {
  opacity: 1;
}

.belaqua-section .view-more {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === ANIMAȚII === */
@keyframes fadeInDownBelaqua {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .belaqua-section .belaqua-programs {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 60px auto 0;
  }
}

@media (max-width: 768px) {
  .belaqua-section {
    padding: 80px 20px;
  }

  .belaqua-section .belaqua-intro h2 {
    font-size: 40px;
  }

  .belaqua-section .subtitle {
    font-size: 16px;
  }

  .belaqua-section .program-card {
    padding: 35px;
  }

  .belaqua-section .card-header h3 {
    font-size: 28px;
  }

  .belaqua-section .program-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .belaqua-section .belaqua-item {
    height: 200px; /* Înălțime mai mică pe mobil */
  }

  .belaqua-section .belaqua-item.main-image {
    grid-column: span 2;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .belaqua-section .belaqua-intro h2 {
    font-size: 32px;
  }

  .belaqua-section .program-gallery {
    grid-template-columns: 1fr;
  }

  .belaqua-section .belaqua-item {
    height: 220px;
  }

  .belaqua-section .belaqua-item.main-image {
    grid-column: span 1;
    height: 220px;
  }
}

/* === SECTIUNE PACHETE - STIL UNIFORM CU BELAQUA === */
.pachete-section {
  position: relative;
  padding: 120px 5%;
  background: #ffffff;
  overflow: hidden;
}

/* Efect subtil de fundal */
.pachete-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  /* background: radial-gradient(circle, rgba(255,121,0,0.08) 0%, transparent 70%); */
  border-radius: 50%;
  z-index: 0;
}

.pachete-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.pachete-intro {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInDownPachete 0.8s ease;
}

.pachete-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pachete-intro h2 .highlight {
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Grid pentru carduri */
.pachete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* Card design */
.pachete-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.pachete-card:hover {
  transform: translateY(-10px);
   box-shadow:
    0 25px 60px rgba(226, 106, 165, 0.28);
}

/* Imagine */
.pachete-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.pachete-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pachete-card:hover .pachete-image img {
  transform: scale(1.1);
}

/* Overlay */
.pachete-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
  135deg,
  rgba(226, 106, 165, 0.9) 0%,
  rgba(250, 191, 211, 0.9) 100%
);

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pachete-card:hover .pachete-overlay {
  opacity: 1;
}

.view-details {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Content */
.pachete-content {
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pachete-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.pachete-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Button */
.pachete-button {
  width: 100%;
  padding: 14px 30px;
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 126, 216, 0.5);
  display: inline-block;
  margin-top: auto;
}

.pachete-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(241, 155, 184, 0.3);
}

/* Animație */
@keyframes fadeInDownPachete {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1270px) and (min-width: 768px) {
  .pachete-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
    /* Al treilea card ocupă 2 coloane și se centrează */
  .pachete-card:nth-child(3) {
    grid-column: 1 / -1; /* Ocupă toată lățimea */
    max-width: 400px; /* Limitează lățimea */
    margin: 0 auto; /* Centrează */
  }

}

@media (max-width: 768px) {
  .pachete-section {
    padding: 80px 20px;
  }

  .pachete-intro h2 {
    font-size: 40px;
  }

  .pachete-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
    .pachete-card:nth-child(1) {
    grid-column: 1 / -1; /* Ocupă toată lățimea */
    max-width: 400px; /* Limitează lățimea */
    margin: 0 auto; /* Centrează */
  }
    .pachete-card:nth-child(2) {
    grid-column: 1 / -1; /* Ocupă toată lățimea */
    max-width: 400px; /* Limitează lățimea */
    margin: 0 auto; /* Centrează */
  }

    .pachete-card:nth-child(3) {
    grid-column: 1 / -1; /* Ocupă toată lățimea */
    max-width: 400px; /* Limitează lățimea */
    margin: 0 auto; /* Centrează */
  }

  .pachete-image {
    height: 250px;
  }

  .pachete-content {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .pachete-intro h2 {
    font-size: 32px;
  }
}

/* ====== SECȚIUNE DESPRE - VERSIUNE CURATĂ ====== */
.despre-section-clean {
  position: relative;
  padding: 120px 5% 140px 5%;
  background: linear-gradient(180deg, #fabfd3 0%, #fabfd3 100%);
  overflow: hidden;
}

/* Wave de jos */
.despre-bottom-wave-clean {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 130px;
  transform: rotate(180deg);
  z-index: 5;
}

#wavePathBottom {
  animation: gentleWaveBottom 10s ease-in-out infinite;
}

@keyframes gentleWaveBottom {
  0%, 100% {
    d: path("M0,80 C250,120 620,40 900,80 1440,120 1400,0 1300,0 L0,0 Z");
  }
  50% {
    d: path("M0,100 C250,60 620,100 900,60 1440,100 1400,0 1300,0 L0,0 Z");
  }
}

/* Efect subtil de fundal */
.despre-section-clean::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.despre-container-clean {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* === HEADER ELEGANT === */
.despre-header-clean {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInDown 1s ease;
}

.despre-badge {
  display: inline-block;
  padding: 10px 30px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.despre-header-clean h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.highlight-text {
  color: #1a1a1a;
  text-shadow: 
    1px 1px 2px rgba(255, 255, 255, 0.3),
    -1px -1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
  font-weight: 900;
}

.header-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.despre-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.95);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

/* === CARD PRINCIPAL === */
.despre-main-card {
  background: #fff;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  animation: fadeInUp 1s ease 0.3s both;
}

/* === GRID LAYOUT === */
.despre-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: stretch;
}

/* === COLOANA IMAGINE === */
.despre-image-col {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 5px solid #fff;
  height: 100%;
  min-height: auto; /* eliminăm restricția fixă */
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.despre-main-card:hover .image-frame img {
  transform: scale(1.05);
}

.image-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

/* === COLOANA TEXT === */
.despre-text-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.text-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255,121,0,0.1), rgba(255,152,0,0.1));
  border-left: 4px solid #ff9ed5;
  border-radius: 8px;
  color: #ff9ed5;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.despre-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.despre-story p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
}

.despre-story p:last-child {
  margin-bottom: 0;
}

.despre-story strong {
  color: #ff9ed5;
  font-weight: 600;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(
  135deg,
  #fde8f0,
  #fabfd3
  );
  padding: 25px 30px;
  border-radius: 20px;
  border-left: 5px solid #ff9ed5;
  box-shadow: 0 5px 20px rgba(255,121,0,0.1);
}

.cta-message {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
}

.cta-message i {
  color: #ff9ed5;
  margin-right: 8px;
}

.cta-message strong {
  color: #ff9ed5;
  font-weight: 700;
  font-size: 18px;
}

/* === SOCIAL LINKS === */
.despre-social-clean {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.social-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.social-link-clean {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9ed5, #fabfd3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 126, 216, 0.5);
}

.social-link-clean:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(250, 191, 211, 0.9);
}

/* === STATISTICI MARI === */
.despre-stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding-top: 50px;
  border-top: 3px solid #f5f5f5;
}

.stat-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9ed5, #fabfd3);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: #fabfd3;
  background: linear-gradient(
  135deg,
  #f8d5e3 0%,
  #ffffff 100%
  );

box-shadow: 0 15px 40px rgba(226, 106, 165, 0.18);
}

.highlight-stat {
  background: linear-gradient(
  135deg,
  #f8d5e3 0%,
  #ffffff 100%
  );
  border-color: #fabfd3;
  transform: scale(1.05);
}

.highlight-stat:hover {
  transform: translateY(-8px) scale(1.05);
}

.stat-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9ed5, #fabfd3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(255, 126, 216, 0.5);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.15) rotate(5deg);
}

.stat-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ff9ed5;
  margin: 15px 0 10px;
  line-height: 1;
}

.stat-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #666;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.stat-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff9ed5, #fabfd3);
  margin: 0 auto;
  border-radius: 2px;
}

/* === ANIMAȚII === */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .despre-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .despre-header-clean h2 {
    font-size: 46px;
  }
}

@media (max-width: 1024px) {
  .despre-section-clean {
    padding: 100px 30px 120px;
  }

  .despre-main-card {
    padding: 50px 40px;
  }

  .despre-grid {
    grid-template-columns:  1fr;
    gap: 60px;
    margin-bottom: 45px;
  }
}

@media (max-width: 768px) {
  .despre-section-clean {
    padding: 80px 20px 100px;
  }

  .despre-header-clean {
    margin-bottom: 50px;
  }

  .despre-header-clean h2 {
    font-size: 38px;
  }

  .despre-lead {
    font-size: 17px;
  }

  .despre-main-card {
    padding: 35px 25px;
  }

  .despre-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 45px;
  }

  .despre-image-col {
    max-width: 500px;
    margin: 0 auto;
  }

  .image-frame {
    min-height: 400px;
  }

  .despre-subtitle {
    font-size: 26px;
  }

  .despre-story p {
    font-size: 15px;
  }

  .despre-social-clean {
    justify-content: center;
  }

  .despre-stats-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .highlight-stat {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .despre-header-clean h2 {
    font-size: 32px;
  }

  .despre-lead {
    font-size: 16px;
  }

  .despre-main-card {
    padding: 30px 20px;
  }

  .image-frame {
    min-height: 350px;
  }

  .despre-subtitle {
    font-size: 24px;
  }

  .stat-card h4 {
    font-size: 42px;
  }

  .stat-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

/* ====== CONTACT FORM MODERN - VERSIUNE CURATĂ ====== */
#contact {
  position: relative;
  z-index: 1;
  /* margin-top: 80px; */
  padding: 80px 5% 100px 5%;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
}

/* Efect subtil de fundal */
#contact::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,121,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

#contact > * {
  position: relative;
  z-index: 1;
}

#contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  text-align: center;
}

/* Container pentru form - cu card */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Linie portocalie sus */
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff9ed5 0%, #fabfd3 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-form-wrapper:hover::before,
.contact-form-wrapper.visible::before {
  transform: scaleX(1);
}

.contact-form-wrapper:hover {
  transform: translateY(-5px);
   box-shadow:
    0 25px 60px rgba(226, 106, 165, 0.28);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0;
}

/* INPUTS */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  font-family: 'Poppins', sans-serif;
  padding: 20px 24px;
  border-radius: 15px;
  border: 2px solid #e0e0e0;
  font-size: 17px;
  resize: vertical;
  transition: all 0.3s ease;
  background: #f8f9fa;
  width: 100%;
  box-sizing: border-box;
}

#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #ff9ed5;
  background: white;
  box-shadow: 0 5px 20px rgba(255, 121, 0, 0.15);
  transform: translateY(-2px);
}

#contact-form textarea {
  min-height: 180px;
}

/* BUTON */
#contact-form .btn-2 {
  font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  color: #fff;
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 10px 30px rgba(255, 126, 216, 0.5);
  margin-top: 10px;
  width: 100%;
}

#contact-form .btn-2:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 126, 216, 0.5);
}

#contact-form .btn-2:active {
  transform: translateY(-2px);
}

#form-status {
  margin-top: 20px;
  color: green;
  display: none;
  font-size: 17px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Animații */
#contact h2 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

#contact h2.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition-delay: 0.3s;
}

.contact-form-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-form-wrapper {
    max-width: 700px;
    padding: 50px;
  }

  #contact h2 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 60px 20px 80px 20px;
    /* margin-top: 60px; */
  }

  #contact h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .contact-form-wrapper {
    padding: 40px 30px;
    max-width: 100%;
  }

  #contact-form input[type="text"],
  #contact-form input[type="email"],
  #contact-form textarea {
    padding: 16px 20px;
    font-size: 16px;
  }

  #contact-form textarea {
    min-height: 150px;
  }

  #contact-form .btn-2 {
    padding: 16px 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #contact h2 {
    font-size: 32px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  #contact-form input[type="text"],
  #contact-form input[type="email"],
  #contact-form textarea {
    padding: 14px 18px;
    font-size: 15px;
  }

  #contact-form textarea {
    min-height: 130px;
  }

  #contact-form .btn-2 {
    padding: 14px 35px;
    font-size: 15px;
  }
}

/* === Carousel mobil pentru Belaqua === */
.belaqua-carousel {
  display: none!important; /* ascuns implicit */
}

@media (max-width: 768px) {
  /* ascundem galeria clasică */
  .belaqua-section .program-gallery {
    display: none;
  }

  /* afișăm doar caruselul pe mobil */
  .belaqua-carousel {
    display: block !important;
    width: 100%;
    margin: 0 auto;
  }

  .belaqua-carousel img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
  }

  /* punctele (bullets) */
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fabfd3 !important;
    opacity: 0.4;
    transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
    background-color: #ff9ed5 !important;
  }
}

/* ====== SECTIUNEA TESTIMONIALE - DESIGN MODERN ====== */
.testimoniale-section {
  position: relative;
  padding: 120px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

/* Efect subtil de fundal */
.testimoniale-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,121,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.testimoniale-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* === HEADER === */
.testimoniale-intro {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInDown 0.8s ease;
}

.testimoniale-badge {
  display: inline-block;
  padding: 10px 25px;
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(255, 126, 216, 0.5);
}

.testimoniale-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.testimoniale-intro h2 .highlight {
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === CAROUSEL TESTIMONIALE === */
.testimoniale-carousel {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 50px;
  position: relative;
}

/* === CARD TESTIMONIAL === */
.testimonial-card {
  background: white;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Linie portocalie sus */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff9ed5 0%, #fabfd3 100%);
}

.testimonial-card:hover {
  transform: translateY(-10px);
   box-shadow:
    0 25px 60px rgba(226, 106, 165, 0.28);
}

/* Quote Icon */
.quote-icon {
  width: 60px;
  height: 60px;
 background: linear-gradient(135deg, #fcd7e3 0%, #ffd0df 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.quote-icon i {
  font-size: 24px;
  color: #ff90cf;
}

/* Stars */
.stars {
  margin-bottom: 25px;
}

.stars i {
  color: #f5b1c8;
  font-size: 18px;
  margin-right: 5px;
}

/* Testimonial Text */
.testimonial-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 35px;
  font-style: italic;
  flex-grow: 1;
}

/* Author Info */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff9ed5;
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 5px 0;
}

.author-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #ff9ed5;
  margin: 0;
  font-weight: 500;
}

/* === NAVIGARE SWIPER === */
.testimonial-nav {
  width: 50px;
  height: 50px;
    background: linear-gradient(135deg, #fabfd3 0%, #f8a5c2 100%);

  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 126, 216, 0.5);
}

.testimonial-nav:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 126, 216, 0.5);
}

.testimonial-nav::after {
  font-size: 20px;
  font-weight: bold;
}

/* === PAGINARE === */
.testimonial-pagination {
  margin-top: 40px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #fabfd3;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 6px;
  box-shadow: 0 0 4px rgba(255, 126, 216, 0.5);
  transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  opacity: 1;
  box-shadow: 0 0 4px rgba(255, 126, 216, 0.5);
}

/* === SOCIAL PROOF === */
.social-proof {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 60px;
  border-top: 3px solid #f0f0f0;
}

.proof-item {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffd9e6 0%, #fff 100%);
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  min-width: 250px;
}

.proof-item:hover {
  transform: translateY(-8px);
  border-color: #fabfd3;
  background: linear-gradient(135deg, #FFF8F0 0%, #fff 100%);
  box-shadow: 0 0 4px rgba(255, 126, 216, 0.5);
}

.proof-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fabfd3, #fabfd3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(255, 126, 216, 0.5);
  transition: transform 0.3s ease;
}

.proof-item:hover .proof-icon {
  transform: scale(1.15) rotate(5deg);
}

.proof-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ff9ed5;
  margin: 15px 0 10px;
}

.proof-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* === ANIMAȚII === */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .testimoniale-intro h2 {
    font-size: 48px;
  }

  .testimoniale-carousel {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .testimoniale-section {
    padding: 80px 20px;
  }

  .testimoniale-intro {
    margin-bottom: 50px;
  }

  .testimoniale-intro h2 {
    font-size: 38px;
  }

  .subtitle {
    font-size: 16px;
  }

  .testimoniale-carousel {
    padding: 0 15px;
    margin-bottom: 60px;
  }

  .testimonial-card {
    padding: 35px 30px;
    min-height: 350px;
  }

  .testimonial-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .testimonial-nav {
    width: 45px;
    height: 45px;
  }

  .testimonial-nav::after {
    font-size: 18px;
  }

  .social-proof {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 50px;
  }

  .proof-item {
    padding: 25px;
  }

  .proof-item h4 {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .testimoniale-intro h2 {
    font-size: 32px;
  }

  .testimonial-card {
    padding: 30px 25px;
    min-height: 320px;
  }

  .quote-icon {
    width: 50px;
    height: 50px;
  }

  .quote-icon i {
    font-size: 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .author-image {
    width: 60px;
    height: 60px;
  }

  .author-info h4 {
    font-size: 16px;
  }

  .proof-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .proof-item h4 {
    font-size: 36px;
  }
}

/* === NAVIGARE SWIPER - SĂGEȚI SIMPLE === */
.testimonial-nav {
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0;
  color: #ff9ed5;
  transition: all 0.3s ease;
  box-shadow: none;
}

.testimonial-nav:hover {
  transform: scale(1.2);
  color: #fabfd3;
  box-shadow: none;
}

.testimonial-nav::after {
  font-size: 40px;
  font-weight: bold;
  color: #ff9ed5;
}

.testimonial-nav:hover::after {
  color: #fabfd3;
}

/* Poziționare săgeți */
.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

/* === ANIMAȚII LA SCROLL - APARIȚIE TREPTATĂ === */

/* starea inițială */
.scroll-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* când devine vizibil */
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* variații pentru efecte secvențiale */
.scroll-delay-1 {
  transition-delay: 0.2s;
}

.scroll-delay-2 {
  transition-delay: 0.4s;
}

.scroll-delay-3 {
  transition-delay: 0.6s;
}


/* ====== ANIMAȚII GENERALE LA SCROLL ====== */

/* Stare inițială - invisible */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Stare vizibilă */
.fade-in-up.visible,
.fade-in-down.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-in.visible {
  opacity: 1;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Delay-uri pentru efecte în cascadă */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* ====== ANIMAȚII SPECIFICE PACHETE ====== */
.pachete-intro {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.pachete-intro.visible {
  opacity: 1;
  transform: translateY(0);
}

.pachete-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.pachete-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== ANIMAȚII SPECIFICE BELAQUA ====== */
.belaqua-intro {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.belaqua-intro.visible {
  opacity: 1;
  transform: translateY(0);
}

.program-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.program-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== ANIMAȚII SPECIFICE DESPRE ====== */
.despre-header-clean {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.despre-header-clean.visible {
  opacity: 1;
  transform: translateY(0);
}

.despre-main-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.despre-main-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.despre-image-col {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.2s;
}

.despre-image-col.visible {
  opacity: 1;
  transform: translateX(0);
}

.despre-text-col {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.4s;
}

.despre-text-col.visible {
  opacity: 1;
  transform: translateX(0);
}

.despre-stats-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.6s;
}

.despre-stats-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== ANIMAȚII TESTIMONIALE ====== */
.testimoniale-intro {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.testimoniale-intro.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimoniale-carousel {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.3s;
}

.testimoniale-carousel.visible {
  opacity: 1;
  transform: scale(1);
}

.social-proof {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.5s;
}

.social-proof.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SECTIUNE RETREAT - ANIMAȚII === */
.retreat-header {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.retreat-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.retreat-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.2s;
}

.retreat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animații pentru fiecare imagine din galerie */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay pentru fiecare imagine - efect cascadă */
.gallery-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-item:nth-child(2) { transition-delay: 0.2s; }
.gallery-item:nth-child(3) { transition-delay: 0.3s; }
.gallery-item:nth-child(4) { transition-delay: 0.4s; }
.gallery-item:nth-child(5) { transition-delay: 0.5s; }
.gallery-item:nth-child(6) { transition-delay: 0.6s; }
.gallery-item:nth-child(7) { transition-delay: 0.7s; }
.gallery-item:nth-child(8) { transition-delay: 0.8s; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow:
    0 25px 60px rgba(226, 106, 165, 0.28);
}

/* ====== AJUSTĂRI GENERALE - DIMENSIUNI MAI MICI ====== */

/* TITLURI PRINCIPALE */
.section h2,
.pachete-intro h2,
.belaqua-intro h2,
.despre-header-clean h2,
.testimoniale-intro h2 {
  font-size: 46px !important; /* redus de la 56px */
}

/* SUBTITLURI */
.subtitle,
.pachete-intro .subtitle,
.belaqua-intro .subtitle,
.despre-lead {
  font-size: 17px !important; /* redus de la 20px */
}

/* BADGE-URI */
.belaqua-badge,
.testimoniale-badge,
.despre-badge {
  font-size: 11px !important; /* redus de la 12px */
  padding: 8px 20px !important; /* redus de la 10px 25px */
}

/* ====== HEADER ====== */
.header-content h1 {
  font-size: 32px !important; /* redus de la 50px */
}

.header-content p {
  font-size: 16px !important; /* redus de la 18px */
}

/* ====== NAVBAR ====== */
.logo {
  font-size: 22px !important; /* redus de la 26px */
}

.nav-links a {
  font-size: 15px !important; /* redus de la 16px */
}

/* ====== HOME ====== */
.home_container h2 {
  font-size: 46px !important; /* redus de la 56px */
  margin-bottom: 60px !important; /* redus de la 80px */
}

.home-text p {
  font-size: 15px !important; /* redus de la 16px */
  padding: 35px 30px 35px 65px !important; /* redus padding */
  min-height: 120px !important; /* redus de la 140px */
}

.home-text p::after {
  width: 30px !important; /* redus de la 34px */
  height: 30px !important;
  font-size: 16px !important; /* redus de la 18px */
  left: 24px !important;
}

/* ====== PACHETE ====== */
.pachete-section {
  padding: 100px 5% !important; /* redus de la 120px */
}

.pachete-card {
  border-radius: 25px !important; /* redus de la 30px */
}

.pachete-content h3 {
  font-size: 22px !important; /* redus de la 26px */
}

.pachete-content p {
  font-size: 14px !important; /* redus de la 15px */
}

/* .pachete-image {
  height: 260px !important; 
} */

.pachete-button {
  padding: 12px 26px !important; /* redus de la 14px 30px */
  font-size: 13px !important; /* redus de la 14px */
}

/* ====== BELAQUA ====== */
/* .belaqua-section {
  padding: 100px 5% !important; 
} */

.belaqua-section .program-card {
  /* padding: 40px !important; redus de la 50px */
  border-radius: 25px !important;
}

.belaqua-section .card-header h3 {
  font-size: 30px !important; /* redus de la 36px */
}

.belaqua-section .program-description {
  font-size: 15px !important; /* redus de la 16px */
  margin-bottom: 30px !important;
}

.belaqua-section .belaqua-item {
  height: 220px !important; /* redus de la 250px */
  border-radius: 20px !important;
}

.belaqua-section .program-badge {
  font-size: 10px !important; /* redus de la 11px */
  padding: 6px 16px !important;
}

/* ====== RETREAT ====== */
.retreat-section {
  padding: 100px 5% !important; /* redus de la 120px */
}

.retreat-card {
  padding: 50px !important; /* redus de la 60px */
  border-radius: 25px !important;
}

.retreat-header h2 {
  font-size: 46px !important; /* redus de la 52px */
  margin-bottom: 25px !important;
}

.retreat-header .subtitle {
  font-size: 16px !important; /* redus de la 18px */
}

.gallery-grid {
  grid-auto-rows: 120px !important; /* redus de la 140px */
  gap: 15px !important;
}

.gallery-item {
  border-radius: 18px !important;
}

/* ====== DESPRE ====== */
.despre-section-clean {
  padding: 100px 5% 120px 5% !important; /* redus de la 120px */
}

.despre-main-card {
  padding: 50px !important; /* redus de la 60px */
  border-radius: 25px !important;
}

.despre-subtitle {
  font-size: 28px !important; /* redus de la 32px */
}

.despre-story p {
  font-size: 15px !important; /* redus de la 16px */
  margin-bottom: 16px !important;
}

.image-frame {
  border-radius: 20px !important;
}

.stat-card {
  padding: 30px 22px !important; /* redus de la 35px 25px */
  border-radius: 18px !important;
}

.stat-icon-wrapper {
  width: 60px !important; /* redus de la 70px */
  height: 60px !important;
  font-size: 28px !important; /* redus de la 32px */
  margin-bottom: 16px !important;
}

.stat-card h4 {
  font-size: 42px !important; /* redus de la 48px */
  margin: 12px 0 8px !important;
}

.stat-card p {
  font-size: 14px !important; /* redus de la 15px */
}

.cta-box {
  padding: 22px 26px !important; /* redus de la 25px 30px */
  border-radius: 18px !important;
}

.cta-message {
  font-size: 15px !important; /* redus de la 17px */
}

.social-link-clean {
  width: 40px !important; /* redus de la 45px */
  height: 40px !important;
  font-size: 16px !important;
}

/* ====== TESTIMONIALE ====== */
.testimoniale-section {
  padding: 100px 5% !important; /* redus de la 120px */
}

.testimonial-card {
  padding: 42px !important; /* redus de la 50px */
  border-radius: 25px !important;
  min-height: 360px !important; /* redus de la 400px */
}

.quote-icon {
  width: 52px !important; /* redus de la 60px */
  height: 52px !important;
  margin-bottom: 20px !important;
}

.quote-icon i {
  font-size: 20px !important; /* redus de la 24px */
}

.stars i {
  font-size: 16px !important; /* redus de la 18px */
}

.testimonial-text {
  font-size: 16px !important; /* redus de la 18px */
  margin-bottom: 30px !important;
}

.author-image {
  width: 60px !important; /* redus de la 70px */
  height: 60px !important;
}

.author-info h4 {
  font-size: 16px !important; /* redus de la 18px */
}

.author-info p {
  font-size: 13px !important; /* redus de la 14px */
}

.testimonial-nav {
  width: 45px !important; /* redus de la 50px */
  height: 45px !important;
}

.testimonial-nav::after {
  font-size: 35px !important; /* redus de la 40px */
}

.proof-item {
  padding: 36px !important; /* redus de la 30px */
  min-width: 30px !important;
  border-radius: 18px !important;
}

.proof-icon {
  width: 60px !important; /* redus de la 70px */
  height: 60px !important;
  font-size: 28px !important;
  margin-bottom: 16px !important;
}

.proof-item h4 {
  font-size: 38px !important; /* redus de la 42px */
  margin: 12px 0 8px !important;
}

.proof-item p {
  font-size: 14px !important; /* redus de la 15px */
}

/* ====== CONTACT ====== */
#contact {
  padding: 70px 5% 90px 5% !important; /* redus de la 80px */
}

#contact h2 {
  font-size: 46px !important; /* redus de la 56px */
  margin-bottom: 50px !important;
}

.contact-form-wrapper {
  padding: 50px !important; /* redus de la 60px */
  border-radius: 25px !important;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  padding: 18px 22px !important; /* redus de la 20px 24px */
  font-size: 15px !important; /* redus de la 17px */
  border-radius: 12px !important;
}

#contact-form textarea {
  min-height: 160px !important; /* redus de la 180px */
}

#contact-form .btn-2 {
  padding: 18px 45px !important; /* redus de la 20px 50px */
  font-size: 16px !important; /* redus de la 18px */
}

/* ====== BUTOANE GENERALE ====== */
.btn-1 {
  padding: 11px 26px !important; /* redus de la 12px 30px */
  font-size: 14px !important;
  border-radius: 25px !important;
}

/* ====== RESPONSIVE - AJUSTĂRI ====== */
@media (max-width: 1200px) {
  .section h2,
  .pachete-intro h2,
  .belaqua-intro h2,
  .despre-header-clean h2,
  .testimoniale-intro h2 {
    font-size: 40px !important;
  }
}

@media (max-width: 768px) {
  .section h2,
  .pachete-intro h2,
  .belaqua-intro h2,
  .despre-header-clean h2,
  .testimoniale-intro h2 {
    font-size: 34px !important;
  }

  .subtitle,
  .despre-lead {
    font-size: 15px !important;
  }

  .home-text p {
    font-size: 14px !important;
    padding: 28px 22px 28px 58px !important;
  }

  html, body {
  overflow-x: hidden;
}
}

@media (max-width: 480px) {
  .section h2,
  .pachete-intro h2,
  .belaqua-intro h2,
  .despre-header-clean h2,
  .testimoniale-intro h2 {
    font-size: 28px !important;
  }

  .home-text p {
    font-size: 13px !important;
  }

  html, body {
  overflow-x: hidden;
}
}



/* ====== FOOTER MODERN INTEGRAT CU WAVE ====== */
.footer {
  position: relative;
  z-index: 10;
  margin-top: -100px;
  padding: 40px 20px 30px;
  background: transparent;
  text-align: center;
}

.footer p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.footer p:hover {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

