
:root{
  --primary:#4F7F78;
  --accent:#1C3D5A;
  --bg:#F7EFE7;
  --text:#21313D;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;line-height:1.6}
img{max-width:100%;height:auto}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(1100px, 92vw);margin:0 auto;padding:24px}

.header{background: #ffffffcc;backdrop-filter: blur(6px);position:sticky;top:0;z-index:10;border-bottom:1px solid #e5e7eb}

.nav{display:flex;align-items:center;justify-content:space-between;gap:100px;padding:10px 0}

.nav nav{
  flex:1;
  display:flex;          /* face ca gap să funcționeze */
  justify-content:flex-end;
  gap:50px;              /* spațiul între <a> direct în nav */
}


/* Stil de bază pentru linkurile din meniu */
.nav nav a{
  position: relative;
  display: inline-block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
}

/* Efect la hover (opțional) */
.nav nav a:hover{
  color: var(--accent);
}

/* 🔵 STAREA ACTIVĂ – se aplică pe <a class="active"> */
.nav nav a.active{
  color: #fff;
  background: var(--primary);
}



.nav .brand{display:flex;align-items:center;gap:20px}
.nav img.logo{width:150px;height:90px;border-radius:8px;object-fit:contain;background:#fff;padding:4px;border:1px solid #e2e8f0}
.nav a{font-weight:600}



.hero{padding:64px 0;background:linear-gradient(135deg, rgba(79,127,120,.1), rgba(28,61,90,.05));}
.hero h1{font-size:clamp(28px,4vw,44px);margin:0 0 8px 0;color:var(--accent)}
.hero p.lead{font-size:clamp(16px,2vw,20px);max-width:800px;margin:0 0 20px 0}
.btn{display:inline-block;background:var(--primary);color:#fff;padding:12px 18px;border-radius:10px;font-weight:600}
.btn:hover{filter:brightness(0.95)}
.grid{display:grid;gap:18px}
.grid.cols-3{grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:18px;box-shadow:0 2px 8px rgba(0,0,0,.04)}
.card h3{margin-top:0;color:var(--accent)}
.section{padding:48px 0}
.footer{background:#0f172a;color:#e2e8f0;padding:32px 0;margin-top:48px}
.footer a{color:#cbd5e1}
.input, textarea{width:100%;padding:12px;border:1px solid #cbd5e1;border-radius:10px;background:#fff}
label{font-weight:600;display:block;margin:14px 0 6px 0}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:700px){.form-row{grid-template-columns:1fr}}
.badge{display:inline-block;background: #ffffff80;border:1px solid #e5e7eb;padding:6px 10px;border-radius:999px;margin-right:8px}
.breadcrumbs{font-size:14px;color:#64748b;margin-bottom:12px}



/* Stil general */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Buton WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Verde WhatsApp */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s ease;
}
.whatsapp-button img {
    width: 35px;
    height: 35px;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Pop-up chat */
.chat-popup {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header pop-up */
.chat-popup header {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4F7F78; /* Verde închis pentru contrast */
    color: #fff; /* Text alb */
    padding: 10px;
    border-radius: 10px 10px 0 0;
}
.chat-popup header button {
    background: none;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

/* Conținut pop-up */
.chat-popup textarea {
    width: 100%;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px;
    resize: none;
    margin: 15px 0;
    font-size: 14px;
}
.chat-popup button.send-btn {
    width: 100%;
    background-color: #4F7F78; /* Verde WhatsApp */
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
  	vertical-align: middle;
}
.chat-popup button.send-btn:hover {
    background-color: #1ebe57; /* Verde mai închis la hover */
}
