      /*
   VARIABLES
    */
:root {
    --primary-color: #d4a537;
    --primary-hover: #c49b34;
    --secondary-color: #111;
    --bg-light: #fafafa;
    --text-color: #111;
    --white: #fff;
}

  /* Stil general pagină serviciu */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: disc inside;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
}

/* Buton WhatsApp pe pagină serviciu */
.btn-whatsapp {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #25D366;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: scale(1.05);
}

/* Header și footer simplu */
.site-header, .site-footer {
    background-color: #f8f8f8;
    padding: 1rem 0;
}

 #reviews-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.review-card {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.review-author {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.review-rating {
  color: #f5c518; /* galben stelute */
  margin-bottom: 0.5rem;
}

.review-cta {
  color: #d4a537;
  font-weight: 600;
  text-decoration: none;
}

  
/* Subcategorías dentro de las tarjetas de especialidades */
.spec-card .sub-services {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    list-style: disc;
    color: #555;
    font-size: 0.9rem;
}

.spec-card .sub-services li {
    margin-bottom: 0.3rem;
}

/* CSS pentru stelute review */
.review-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.star {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23ccc" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="12,2 15,9 22,9 16.5,14 18,21 12,17 6,21 7.5,14 2,9 9,9"/></svg>') no-repeat center/contain;
}

.star.filled {
  background: url('data:image/svg+xml;utf8,<svg fill="%23f5c518" stroke="%23f5c518" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="12,2 15,9 22,9 16.5,14 18,21 12,17 6,21 7.5,14 2,9 9,9"/></svg>') no-repeat center/contain;
}



.review-cta:hover {
  text-decoration: underline;
}


#reviews-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.review-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background-color: #fff;
}

.review-text {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.review-author {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.review-rating {
    color: #f5a623; /* culoarea stelutelor */
}
.review-cta {
    display: inline-block;
    margin-top: 0.5rem;
    color: #d4a537;
    font-weight: bold;
    text-decoration: none;
}



/* Reviews */
.reviews-section {
    background:#f9f9f9;
}
.review-card {
    max-width:520px;
    margin:2rem auto;
    padding:1.6rem;
    background:#fff;
    border-radius:14px;
    box-shadow:0 6px 16px rgba(0,0,0,.08);
    text-align:center;
}
.review-stars {
    font-size:1.5rem;
    color:#f5c518;
    margin-bottom:.5rem;
}
.review-text {
    font-size:1rem;
    margin-bottom:.8rem;
}
.review-author {
    font-weight:600;
    margin-bottom:1rem;
}
.review-link {
    display:inline-block;
    padding:.6rem 1rem;
    background:#d4a537;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}
.review-link:hover {
    background:#b38c2c;
}


 /* Botón Google Reviews */
.review-cta {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background-color: #4285F4;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}
.review-cta:hover { background-color: #3367D6; }

/* Tarjeta placeholder */
.review-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.review-text {
    font-size: 1rem;
    color: #333;
}
  /* Buton Volver a Inicio */
.btn-back-home {
    display: inline-block;
    margin: 0.5rem 0 1.5rem 0;
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    color: #25D366;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-back-home:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}


.site-header .main-nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .main-nav a {
    color: #333;
    font-weight: 600;
}

.site-footer p {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}


/* =========================
   RESET & BASE
   ========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--white);
    padding-bottom: 120px; /* spațiu pentru CTA fixed */
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   HELPERS
   ========================= */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    z-index: 9999;
    transition: all 0.3s ease;
}
.skip-link:focus {
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    opacity: 1;
}

/* =========================
   CONTAINER
   ========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HEADER
   ========================= */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =========================
   NAVIGATION
   ========================= */
.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

.main-nav a {
    font-weight: 700;
    padding: 8px 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    background: rgba(0,0,0,0.08);
}

/* Mobile menu button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px 0;
    border-radius: 2px;
}

/* =========================
   MOBILE MENU
   ========================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.menu-panel {
    position: relative;
    padding: 28px;
    text-align: center;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.4rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

.menu-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-panel a {
    color: var(--white);
    font-size: 2rem;
    display: block;
    padding: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.menu-panel a:hover,
.menu-panel a:focus {
    color: var(--primary-color);
}

/* =========================
   HERO
   ========================= */
.hero {
    padding: 64px 0;
    text-align: center;
    background: linear-gradient(110deg, var(--primary-color), #ffe7a3);
    color: var(--secondary-color);
}

.hero h1 {
    font-size: 40px;
    margin: 0;
}

.hero .lead {
    max-width: 720px;
    margin: 12px auto 0;
    font-size: 18px;
}

.hero-cta {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Category buttons */
.category-buttons {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.cat-btn {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.cat-btn:hover,
.cat-btn:focus {
    transform: translateY(-4px);
    background: var(--secondary-color);
    color: var(--white);
}

/* =========================
   SECTIONS
   ========================= */
.section {
    padding: 56px 0;
}

.section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 18px;
}

.bg-light {
    background: var(--bg-light);
}

/* Specialities */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.spec-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.spec-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}
.spec-card:hover,
.spec-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

/* =========================
   ABOUT
   ========================= */
.about-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-img {
    flex: 0 0 360px;
    display: flex;
    align-items: flex-start;
}

.about-img img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-text {
    flex: 1;
}
.about-text h2 {
    margin-top: 0;
    text-align: left;
}
.about-text p {
    line-height: 1.7;
    margin-bottom: 16px;
}

/* =========================
   WHY
   ========================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.why-card {
    background: var(--white);
    padding: 18px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    font-weight: 700;
}

/* =========================
   CONTACT
   ========================= */
.contact-form {
    max-width: 660px;
    margin: 10px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

   .form-status {
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
}


.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form button {
    background: var(--primary-color);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-form button:hover,
.contact-form button:focus {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

/* =========================
   FIXED ELEMENTS
   ========================= */
.cta-fixed {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    z-index: 900;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}
.cta-fixed:hover,
.cta-fixed:focus {
    transform: translate(-50%, -3px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.3);
}

.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 90px;
    background: #0077B6;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 8px 26px rgba(0,0,0,0.18);
    z-index: 850;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp:hover,
.whatsapp:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.whatsapp svg {
    width: 34px;
    height: 34px;
    display: block;
}

/* =========================
   REVEAL
   ========================= */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

  .center {
    text-align: center;
}



 body.menu-open {
    overflow: hidden;
}


/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
    .menu-btn { display: block; }
    .main-nav { display: none; }
    .hero h1 { font-size: 32px; }
}

@media (max-width: 768px) {
    .about-wrapper { flex-direction: column; }
    .about-text h2 { text-align: center; }
}

@media (max-width: 520px) {
    .hero { padding: 44px 0; }
    .hero h1 { font-size: 26px; }
    .cta-fixed { bottom: 12px; padding: 12px 18px; font-size: 14px; }
    .whatsapp { bottom: 70px; padding: 10px; }
}

    .spec-card .sub-services {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    list-style: disc;
    color: #555; /* gri subtil pentru text */
    font-size: 0.9rem;
}

.spec-card .sub-services li {
    margin-bottom: 0.3rem;
}

  .category-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.cat-btn {
    display: block;
    text-align: center;
    padding: 0.8rem 1rem;
    background-color: #d4a537; /* fundal auriu site */
    color: #333; /* text gri închis */
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

  #google-reviews {
  max-width: 800px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

#google-reviews h3 {
  text-align: center;
  margin-bottom: 20px;
}

.review-card {
  background: #f9f9f9;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-text {
  font-style: italic;
  margin-bottom: 8px;
}

.review-author {
  font-weight: bold;
  margin-bottom: 5px;
}

.review-rating {
  color: #f5a623; /* color de las estrellas */
  font-size: 1.2em;
  display: inline-block;
  opacity: 0;
}

/* Animación de estrellas */
@keyframes starFade {
  0% { opacity: 0; transform: scale(0.5);}
  50% { opacity: 1; transform: scale(1.2);}
  100% { opacity: 1; transform: scale(1);}
}

.animate-stars {
  animation: starFade 0.8s ease forwards;
}

   /* Botón WhatsApp flotante */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Verde WhatsApp */
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.whatsapp svg {
    width: 30px;
    height: 30px;
    fill: #fff; /* Iconul rămâne alb */
}


/* Botón CTA */
.review-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #f5a623;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.review-cta:hover {
  background-color: #d4880a;
}

