body {
  font-family: 'Sora', sans-serif;
  
}

body {
  color: #111111; /* în loc de #666 sau gri */
}


html {
  scroll-behavior: smooth;
}

body, html{
  overflow-x: hidden;
}

header {
  background-color: #ffffff;
  background-image:
    radial-gradient(circle at 5% 15%, rgba(147, 197, 253, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 95% 20%, rgba(147, 197, 253, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(147, 197, 253, 0.25) 0%, transparent 50%);
  background-repeat: no-repeat;
  background-size: cover;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navFade {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    background: linear-gradient(90deg, #ccfbf1 0%, #99f6e4 100%);
  }
}

.animate-navbar {
  animation: navFade 1s ease-in-out forwards;
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out;
}

/* Efecte hover rafinate */
a:hover {
  transition: color 0.3s ease;
  color: #14b8a6;
}

button:hover {
  transform: scale(1.03);
  transition: all 0.3s ease;
}

/* Carduri interactive */
.card-hover {
  transition: all 0.4s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Slide in animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slideInUp {
  animation: slideInUp 0.8s ease-out forwards;
}

/* Stil modern pentru carduri & butoane */
.card-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}
.card-glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-modern {
  background: linear-gradient(135deg, #0dd5c0, #48c6ef);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  text-align: left;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #14b8a6, #48c6ef);
  border-radius: 2px;
  animation: grow 1s ease-out forwards;
}

@keyframes grow {
  from { width: 0; }
  to { width: 100%; }
}

/* Hero background complet pe latime si inaltime */
#acasa {
  background-image: url('hero.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
  padding-top: 5rem;
  padding-bottom: 6rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}

#acasa::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

#acasa > * {
  position: relative;
  z-index: 2;
  
}

@media (min-width: 768px) {
  #acasa {
    padding-top: 7rem;
    padding-bottom: 9rem;
  }
  .section-title-custom {
    font-size: 1.75rem;
  }

  .title-leaf {
    width: 30px;
    height: 30px;
    opacity: 0.2;
  }
}

/* Stil text hero cu accent */
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: white;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle span {
  font-weight: 600;
  color: #00fff7;
  text-shadow: 0 0 8px #00fff7;
}

.nav-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}


.btn-modern {
  background: linear-gradient(to right, #0dd5c0, #48c6ef);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  #mobile-menu {
  background: radial-gradient(circle at top left, rgba(255,255,255,0.95), rgba(240,248,255,0.85));
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  background-repeat: repeat;
 }

  #mobile-menu .flex {
    gap: 1.5rem;
    padding-top: 0.5rem;  /* mai puțin spațiu sus */
    padding-bottom: 0.5rem;
  }

  #mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f766e;
    transition: all 0.3s ease;
  }

  #mobile-menu a:hover {
    color: #14b8a6;
    transform: scale(1.05);
  }

  #mobile-menu .btn-modern {
    display: inline-block !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    width: auto !important;
    text-align: center !important;
    background: linear-gradient(to right, #0dd5c0, #48c6ef) !important;
    color: white !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  }
}


@media (min-width: 768px) {
  #mobile-menu {
    display: none !important;
  }
  #acasa {
    background-position: center 30%;
  }
  .custom-divider svg {
    height: 70px;
  }
  .despre-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1024px) {
  .custom-divider svg {
    height: 100px;
  }
}

@keyframes fadeMenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.neon {
  color: #00fff7;
  font-weight: 700;
  text-shadow:
    0 0 1px #00fff7,
    0 0 2px #00f0e9;
}

.neon-title {
  color: #00fff7;
  font-weight: 900;
  text-shadow:
    0 0 2px #00fff7,
    0 0 3px #00f0e9;
}

@keyframes fadeInMenu {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quote-img {
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}




.quote-text {
  animation: softPulse 4s ease-in-out infinite;
}

@keyframes softPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

.quote-section {
  background: linear-gradient(135deg, rgba(250,235,220,0.9), rgba(225,245,240,0.9));
  padding: 4rem 1rem;
  margin: 0;
  width: 100%;
  color: #333;
}

.quote-section .inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}


@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.quote-image-section {
  background: linear-gradient(180deg, #d7f5f5, #ffffff);
  background-size: cover;
  background-repeat: no-repeat;
   padding: 6rem 1rem 1.5rem;
   padding-top: 4rem;     /* păstrăm */
  padding-bottom: 0rem;
  text-align: center;

}

.quote-image-section .quote-text {
  margin-top: 3rem; /* sau padding-top: 3rem; */
}

.quote-image-section .max-w-3xl {
  padding-top: 4rem !important;
}


.bg-textured {
  background-image: url('https://www.transparenttextures.com/patterns/white-wall-3.png');
  background-repeat: repeat;
  background-size: 300px;
}

.custom-divider {
  line-height: 0;
  transform: translateY(1px);
}

.custom-divider svg {
  
  display: block;
  height: 80px; /* păstrăm valul, dar nu mare */
  margin-top: -20px;
}

.custom-divider {
  line-height: 0;
  transform: translateY(1px);
}

.custom-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

#despre {
  background: linear-gradient(to bottom, #e6fafa, #ffffff);
padding: 2rem 1.5rem 5rem;
  text-align: center;
  position: relative;

}

#despre h2 {
  font-family: 'Sora', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #00b4b6;
  margin-bottom: 2rem;
}

#despre p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
}


.about-decor {
  background: url('f70a22df-c5cf-40a0-b7f1-debc7d10caa6.png') repeat top center,
              linear-gradient(to bottom, #fff8fa, #f1fff9);
  background-size: auto, cover;
  background-attachment: scroll;
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
}


.about-header {
  font-size: 2rem;
  color: #e264a1;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.about-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  max-width: 800px;
  margin: 1.5rem auto;
}

.about-text {
  max-width: 750px;
  margin: 1.5rem auto;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

/* DECORAȚIUNI STELUȚE/FLORICELE pur CSS */
.despre-heading {
  position: relative;
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  color: #00A896;
  margin-bottom: 1rem;
}

.despre-heading::before,
.despre-heading::after {
  content: '✧';
  position: absolute;
  color: rgba(0, 168, 150, 0.6);
  font-size: 1.5rem;
}

.despre-heading::before {
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.despre-heading::after {
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
}

/* TEXT CITAT OK */
.despre-citat {
  font-family: 'Sora', sans-serif;
  font-style: italic;
  color: #555;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.5;
  text-align: center;
}

/* SECȚIUNE "Despre" cu gradient fundal + text aerisit */
#despre {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, rgba(0,168,150,0.1), rgba(255,255,255,0.9));
}

#despre img {
  max-width: 70%;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-radius: 1rem;
}

/* Textul descriptiv mai aerisit */
.despre-text {
  max-width: 700px;
  margin: 2rem auto 0;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

.floral-frame {
  position: relative;
  display: inline-block;
  margin: 2rem auto;
  z-index: 1;
}

.floral-frame img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
  z-index: 2;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,168,150,0.2);
}

/* Floricele abstracte – stânga sus și dreapta jos */
.floral-frame::before,
.floral-frame::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at center, #00a896 0%, transparent 70%);
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
  border-radius: 50%;
}

.floral-frame::before {
  top: -40px;
  left: -40px;
}

.floral-frame::after {
  bottom: -40px;
  right: -40px;
}

/* Mai multe floricele: folosim elemente extra */
.floral-frame .dot {
  position: absolute;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle at center, #00c9a7 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
}

.floral-frame .dot1 { top: -20px; left: 30%; }
.floral-frame .dot2 { top: 50%; left: -25px; }
.floral-frame .dot3 { bottom: 10px; right: -20px; }
.floral-frame .dot4 { bottom: -30px; left: 50%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 1024px) {
  .floral-frame::before,
  .floral-frame::after,
  .floral-frame .dot {
    display: none;
  }
}


.section-anchor {
  scroll-margin-top: 100px;
}
#despre {
  scroll-margin-top: 100px;
}


.floating-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-decor::before,
.floating-decor::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,168,150,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatDecor 18s ease-in-out infinite;
}

.floating-decor::before {
  top: -50px;
  left: 10%;
  animation-delay: 0s;
}

.floating-decor::after {
  bottom: -60px;
  right: 15%;
  animation-delay: 4s;
}

@keyframes floatDecor {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.05); opacity: 0.8; }
  100% { transform: translateY(0) scale(1); opacity: 0.6; }
}


.despre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.despre-box {
  background: #f5fbfc;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.despre-box h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
  color: #00a8b5;
}

.despre-box p {
  font-size: 1rem;
  color: #111;
  line-height: 1.6;
}

.emoji {
  font-size: 2rem;
  display: block;
}


@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ✨ Animații direcționale lente și fluide */
.slide-in-left,
.slide-in-right {
  opacity: 0;
  filter: blur(3px);
  transition:
    transform 7s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 7s ease-in-out,
    filter 3s ease-out;
}

.slide-in-left {
  transform: translateX(-400px);
}

.slide-in-right {
  transform: translateX(400px);
}

.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.emoji-lg {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.emoji-lg:hover {
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(0 0 8px #00e0d1);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00b4b6; /* intens, terapeutic, vizibil */
  margin-bottom: 0.75rem;
  text-shadow: none;
}


/* Text card */
.service-text {
  font-size: 1.1rem;
  color: #087f89; /* contrastant, clar, cald */
  font-weight: 500;
  line-height: 1.6;
  padding: 0 1rem;
  text-shadow: none;
}


.card-glass {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.08);
}

.card-glass > * {
  position: relative;
  z-index: 1;
}


/* Optional - card height fix pentru uniformitate */
.service-card {
  min-height: 300px;
  padding: 2rem 1.25rem;
  text-align: center;
}

.section-title-custom {
  font-family: 'Sora', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f766e;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@keyframes growTitle {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-up {
  opacity: 0;
  transform: translateY(80px);
  transition: transform 1.8s ease-out, opacity 1.8s ease-out;
}

.slide-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes popEmoji {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.emoji-lg {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: popEmoji 0.8s ease forwards;
  transition: transform 0.3s ease;
}

.emoji-lg:hover {
  transform: scale(1.15) rotate(3deg);
}

.section-title-custom {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f766e;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.6s ease-out forwards;
}



.section-title-custom.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatInUp {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.slide-in-up {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: none; /* important: we're using keyframes */
}

.slide-in-up.visible {
  animation: floatInUp 1.6s ease-out forwards;
}

@keyframes floatInDiagonal {
  0% {
    opacity: 0;
    transform: translate3d(40px, 80px, 0) scale(0.94);
  }
  50% {
    opacity: 0.8;
    transform: translate3d(-8px, -10px, 0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.slide-in-up {
  opacity: 0;
  transform: translate3d(40px, 80px, 0) scale(0.94);
}

.slide-in-up.visible {
  animation: floatInDiagonal 1.8s ease-out forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#servicii {
  min-height: 100vh;
  padding: 6rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to bottom, #e6fafa 0%, #ffffff 100%);
}

@media (max-width: 768px) {
  .section-title-custom {
    font-size: 1.75rem;
  }

  #servicii {
    padding: 4rem 1rem;
  }
}

.title-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

.leaf-icon {
  position: absolute;
  width: 36px;
  height: 36px;
  opacity: 0.2;
  z-index: 0;
  transform-origin: center;
}

.left-leaf {
  left: -60px;
  top: 0;
  transform: rotate(-20deg);
}

.right-leaf {
  right: -60px;
  top: 0;
  transform: rotate(20deg);
}

.icon-wrap {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lucide-icon {
  width: 42px;
  height: 42px;
  stroke: #0f766e;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.card-glass:hover .lucide-icon {
  transform: scale(1.1);
}


@media (min-width: 1024px) {
  
    .despre-wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .despre-content {
    flex: 1;
    max-width: 600px;
  }

  .floral-frame {
    flex: 1;
    max-width: 500px;
  }
  .despre-citat {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.despre-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.despre-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.despre-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f766e;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.despre-citat {
  font-style: italic;
  font-weight: 500;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 1.2rem auto 1.5rem auto;
  max-width: 600px;
}


.despre-text {
  font-size: 1.1rem;
  color: #2e2e2e;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  text-align: justify;
}

.highlight {
  color: #0f766e;
  font-weight: 600;
  background: linear-gradient(to top, #d5f7f4 30%, transparent 30%);
}

.despre-image-wrapper {
  margin: 2rem auto;
  max-width: 500px;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.despre-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}


.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
 background: none;
 position: relative;
  z-index: 0;
}

.contact-wrapper {
  background: linear-gradient(to bottom, #f7fdfd, #ffffff);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 40px rgba(0,0,0,0.05);
  z-index: 2;
  position: relative;
}


.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f766e;
  margin-bottom: 1rem;
}

.contact-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0f766e;
}

.contact-form button {
  background-color: #0f766e;
  color: white;
  font-weight: 600;
  padding: 1rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #115e59;
}

.contact-icons-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 5rem; /* ← mai mult spațiu vizual */
}



.contact-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease;
}

.contact-icon:hover {
  transform: scale(1.1);
}

.custom-icon {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.footer-strip {
  width: 100%;
  background-color: #0f766e;
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 4rem;
}

.footer-strip .footer-credit {
  font-size: 0.85rem;
  opacity: 0.9;
  font-style: italic;
  margin-top: 0.25rem;
}


@media (max-width: 480px) {
  .left-leaf {
    left: -30px; /* în loc de -60px */
  }

  .right-leaf {
    right: -30px; /* în loc de -60px */
  }
}

.contact-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}


.contact-bubbles span {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(0, 166, 153, 0.4) 0%, transparent 70%);
  animation: floatBubbles 14s infinite ease-in-out;
  opacity: 0.8;
}



.contact-bubbles span:nth-child(1) { left: 20%; bottom: -40px; animation-delay: 0s; }
.contact-bubbles span:nth-child(2) { left: 45%; bottom: -60px; animation-delay: 2s; }
.contact-bubbles span:nth-child(3) { left: 70%; bottom: -50px; animation-delay: 4s; }
.contact-bubbles span:nth-child(4) { left: 30%; bottom: -80px; animation-delay: 6s; }
.contact-bubbles span:nth-child(5) { left: 60%; bottom: -70px; animation-delay: 8s; }

@keyframes floatBubbles {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-80px) scale(1.2); /* ← mai vizibil */
    opacity: 0.5;
  }
  100% {
    transform: translateY(-160px) scale(1); /* ← urcă mai mult */
    opacity: 0.2;
  }
}

