* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Paletă */
:root {
  --green: #2E8B57;
  --lavender: #C7B8EA;
  --cream: #FAF7F2;
  --charcoal: #2E2E2E;
  --white: #FFFFFF;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

/* Header */
header {
  background: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1950&q=80')
    no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}
header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46,139,87,0.55);
}
header .logo {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 3.5em;
  font-weight: 700;
}
header p {
  position: relative;
  z-index: 1;
  font-size: 1.3em;
  margin-top: 10px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background: var(--green);
}
nav a {
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
nav a:hover {
  background: var(--lavender);
  color: var(--charcoal);
}

/* Language Switcher */
.lang-switch {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 20;
}

.lang-switch a {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--green);
  transition: 0.25s ease;
}

.lang-switch a.active {
  background: var(--green);
  color: white;
  border: 1px solid white;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
  transform: translateY(1px);
  cursor: default;
}

.lang-switch a:hover {
  background: var(--lavender);
  color: var(--charcoal);
  border-color: var(--lavender);
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.lang-switch img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 20px;
}

/* Intro */
.intro-text {
  background: var(--white);
  border-left: 6px solid var(--lavender);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.service-box {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  border-top: 5px solid var(--lavender);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(199,184,234,0.35);
}
.service-box img {
  width: 60px;
  margin-bottom: 15px;
}
.service-box h3 {
  color: var(--lavender);
  margin-bottom: 10px;
  font-weight: 700;
}

/* Prices */
#prices {
  margin-top: 50px;
}
#prices h2 {
  color: var(--green);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}
.prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.price-box {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  border-top: 5px solid var(--lavender);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}
.price-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(199,184,234,0.35);
}
.price-box h3 {
  color: var(--lavender);
  margin-bottom: 10px;
  font-weight: 700;
}

/* Languages */
#languages {
  margin-top: 50px;
  text-align: center;
}
#languages h2 {
  color: var(--green);
  margin-bottom: 20px;
  font-weight: 700;
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.languages-grid div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 14px;
  font-size: 17px;
  font-weight: 500;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: 0.25s ease;
}

.languages-grid div:hover {
  background: var(--lavender);
  border-color: var(--lavender);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199,184,234,0.35);
}

.languages-grid img {
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Contact */
#contact {
  margin-top: 50px;
}
#contact h2 {
  margin-bottom: 25px;
  color: var(--green);
  text-align: left;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.input-group .icon {
  font-size: 20px;
}
.textarea-group {
  align-items: flex-start;
}

form {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  border: 1px solid #e6e6e6;
}
form input,
form textarea,
form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: 16px;
  background: #fafafa;
  transition: 0.25s;
}
form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--lavender);
  background: #fff;
  box-shadow: 0 0 8px rgba(199,184,234,0.35);
  outline: none;
}

form button {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: white;
  border: none;
  font-size: 17px;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s;
  letter-spacing: 0.5px;
}
form button:hover {
  background: #246b45;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Location */
#location {
  margin-top: 40px;
}
#location h2 {
  color: var(--green);
  margin-bottom: 10px;
}
#location iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
}

/* Floating buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.2s;
}
.floating-buttons a:hover {
  transform: scale(1.1);
}
.floating-buttons a.whatsapp {
  background: var(--green);
}
.floating-buttons a.call {
  background: var(--lavender);
  color: var(--charcoal);
}

/* Footer */
footer {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 25px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 900px) {
  h1 {
    font-size: 1.6rem !important;
  }
  h2 {
    font-size: 1.25rem !important;
  }
  h3 {
    font-size: 1.1rem !important;
  }

  header {
    padding: 60px 20px;
  }

  header .logo {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.45rem !important;
  }
  h2 {
    font-size: 1.2rem !important;
  }
  h3 {
    font-size: 1.05rem !important;
  }

  .container {
    padding: 0 15px;
  }

  .services,
  .prices,
  .languages-grid {
    grid-template-columns: 1fr;
  }

  header {
    padding: 50px 15px;
  }

  header .logo {
    font-size: 2.1rem;
  }

  nav a {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  form {
    padding: 25px;
  }
}

/* Titluri mai mici (nivel desktop) */
h1 {
  font-size: 1.8rem !important;
}

h2 {
  font-size: 1.35rem !important;
}

h3 {
  font-size: 1.15rem !important;
}

/* Titlul "Serviciile noastre" în verde */
#services-title,
.services-title,
h2.services-title {
  color: var(--green) !important;
}

/* Customizare pentru steaguri sa fie mai mici pe telefone mobile */
@media (max-width: 600px) {
  .lang-switch a {
    font-size: 12px !important;
    padding: 3px 6px !important;
    margin-left: 4px !important;
  }

  .lang-switch img {
    width: 14px !important;
    height: auto !important;
  }

  .lang-switch {
    gap: 4px !important;
  }
}





