/* Stiluri Generale */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
    overflow: visible !important;
}
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}
.container {
    max-width: 1200px; /* Ne asigurăm că e destul de lat containerul */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Micșorat */
header {
    background: #ffffff;      /* Fundal solid, să nu se vadă textul prin el când urcă */
    padding: 10px 0;
    position: sticky;         /* Aceasta este comanda principală */
    display: block; /* Asigură-te că nu e inline */
    top: 0;                   /* Îl lipește exact de marginea de sus */
    z-index: 1000;            /* Îl forțează să stea deasupra tuturor elementelor (imagini, carduri) */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Opțional: o umbră fină să pară că "plutește" */
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
}
.logo span {
  color: #3498db;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 15px;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #3498db;
}

.btn-small {
    background-color: #3498db;
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-small:hover {
    background-color: #2980b9;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero .btn-main {
    margin-top: 10px; /* Ajustează valoarea (20px, 30px, 40px) până când arată cum dorești */
    display: inline-block; /* Foarte important pentru ca margin-top să funcționeze corect pe link-uri */
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  width: 100%;
}

/* Servicii (Carduri) */
.services {
    padding: 40px 0 20px 0; /* Distanță micșorată jos spre galerie */
    text-align: center;
}
.services h2 {
  margin-bottom: 40px;
}
.services-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creează 3 coloane egale */
    gap: 20px; /* Spațiul dintre carduri */
    align-items: stretch; /* Face toate cardurile să aibă aceeași înălțime */
}
.card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid #3498db;
    transition: 0.3s;
}
.card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #2c3e50;
}
.card p {
    font-size: 0.95rem;
    color: #666;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Galerie */
.gallery {
  padding: 20px 0 60px 0; /* 20px sus, 0 laterale, 60px jos */
  background: #fff;
  text-align: center;
}
.gallery h2 {
  margin-bottom: 20px;
}
.gallery-grid {
  display: grid;
  /* Forțăm exact 4 coloane egale pe desktop */
  grid-template-columns: repeat(4, 1fr);
  gap: 15px; /* Spațiul dintre fotografii */
  margin-top: 20px;
}
.gallery-item img {
  width: 100%;
  height: 250px; /* Poți ajusta înălțimea după preferință */
  object-fit: cover; /* Imaginile nu se vor deforma */
  border-radius: 10px;
}
.gallery-item img:hover {
  transform: scale(1.03);
}

/* FAQ Drop-down */
.faq {
  padding: 60px 0;
  background: #f4f4f4;
}
.faq h2 {
  text-align: center;
  margin-bottom: 30px;
}
.faq-container {
  max-width: 800px;
  margin: auto;
}
details {
  background: #fff;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  cursor: pointer;
}
details summary {
  font-weight: 700;
  outline: none;
  list-style: none;
}
details summary::before {
  content: "▼ ";
  color: #3498db;
  font-size: 12px;
}
details[open] summary::before {
  content: "▲ ";
}

Contact & Footer
.btn-main {
  display: inline-block;
  background: #3498db;
  color: #fff;
  padding: 6px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.contact {
  background: #5d68da;
  color: #fff;
  padding: 60px 0;  
  text-align: center;
}
#contact-form {
  max-width: 500px;
  margin: auto;
}
#contact-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
}
.btn-main {
    background-color: #3498db; /* Albastru */
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: center; /* Îl centrează în interiorul formularului */
}

.btn-main:hover {
    background-color: #2980b9; /* Albastru mai închis la hover */
    transform: translateY(-2px); /* Mic efect de ridicare */
}

.btn-main:active {
    transform: translateY(0); /* Efect de apăsare */
}
Explicații pentru "Recuperar
footer {
  padding: 40px 0;
  text-align: center;
  background: #fff;
  color: #fff;
  font-size: 0.8rem;
}

footer a :hover{
    color: #ffffff !important;
    text-decoration: none!important;
}
.contact p a {
    color: #e6e8e2 !important; /* Aici poți pune orice culoare: #ffcc00 pentru galben, etc. */
    text-decoration: none;     /* Elimină subliniera */
    font-weight: bold;         /* Îl face mai vizibil */
    transition: color 0.3s;    /* Face trecerea culorii fină la hover */
}

/* Efect la trecerea mouse-ului peste link */
.contact p a:hover {
    color: #e90c0c !important; /* Se schimbă în albastru când pui mouse-ul */
    text-decoration: underline; /* Apare subliniera doar la hover */
}

 */
/* Stiluri pentru Tablete (ecrane sub 992px) */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
  .grid {
    grid-template-columns: repeat(2, 100%); /* Afișează 2 carduri pe rând */
  }
}

/* Stiluri pentru Telefoane (ecrane sub 600px) */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem; /* Micșorăm textul mare să nu iasă din ecran */
  }

  nav ul {
    display: none; /* Ascundem meniul clasic (aici s-ar pune un meniu tip hamburger) */
  }

  .grid {
    grid-template-columns: 1fr; /* Punem cardurile unul sub altul pe o singură coloană */
  }

  .gallery-grid {
    grid-template-columns: 1fr; /* Imaginile din galerie devin mari, una sub alta */
  }

  .card {
    padding: 20px; /* Reducem spațiile interioare pe ecrane mici */
  }
}
/* Stil pentru butonul care urmărește utilizatorul */
.btn-sticky-call {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    background-color: #25D366 !important;
    color: white !important;
    padding: 15px 25px !important;
    border-radius: 50px !important;
    font-weight: bold !important;
    font-size: 18px !important;
    text-decoration: none !important;
    z-index: 10000 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
    display: block !important;
}
.btn-sticky-call:hover {
    transform: scale(1.1); /* Se mărește puțin când pui mouse-ul */
    background-color: #2980b9;
}

/* Stil Buton WhatsApp Sticky */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Poziționat în stânga jos */
    background-color: #25d366; /* Verdele oficial WhatsApp */
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-sticky img {
    width: 25px;
    height: 25px;
}

.whatsapp-sticky:hover {
    transform: scale(1.05);
    background-color: #128c7e;
}

/* Adaptare pentru ecrane mici (mobil) */
@media (max-width: 768px) {
    .whatsapp-sticky span {
        display: none; /* Pe mobil lăsăm doar iconița pentru a nu ocupa ecranul */
    }
    .whatsapp-sticky {
        padding: 12px;
        border-radius: 50%; /* Devine un cerc perfect */
        bottom: 80px; /* Îl ridicăm puțin mai sus ca să nu stea peste butoanele de sistem ale telefonului */
    }
}

/* Pe ecrane foarte mici, îl putem face puțin mai mic */
@media (max-width: 768px) {
    .btn-sticky-call {
        /* Resetăm poziția de pe desktop */
        right: auto !important; 
        
        /* Centrare absolută */
        left: 50% !important;
        bottom: 20px !important;
        transform: translateX(-50%) !important; /* Îl mută exact pe centru */
        
        /* Asigurăm lățimea necesară */
        width: auto !important;
        min-width: 200px !important; 
        max-width: 90% !important;
        
        white-space: nowrap !important; /* Forțează numărul să stea pe un singur rând */
        text-align: center !important;
        font-size: 18px !important;
        padding: 12px 20px !important;
    }
}
/* Media Query pentru Mobil */
@media (max-width: 768px) {
    
    /* Forțăm cardurile de servicii pe o singură coloană */
    .services-flex, .grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px;
    }

    .card {
        width: 100% !important;
        margin-bottom: 10px;
    }

    /* Forțăm galeria de imagini pe o singură coloană */
    .gallery-grid {
        grid-template-columns: 1fr !important; /* 1fr înseamnă o singură coloană întreagă */
        gap: 15px;
    }

    /* Ajustăm înălțimea imaginilor pe mobil să nu ocupe tot ecranul */
    .gallery-item img {
        height: 300px; /* Le facem puțin mai mari pentru vizibilitate pe telefon */
    }

    /* Centrăm titlurile pentru un aspect mai bun pe mobil */
    h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
}