/* =====================
   RESET & GLOBAL
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  margin: 0;
  background: #f8fafc;
  color: #0f172a;
}

/* =====================
   CONTAINER
===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =====================
   HEADER / NAVBAR
===================== */
.header {
  background: #0ea5e9;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #fffb00;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger activ */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobil nav */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #0ea5e9;
    flex-direction: column;
    padding-top: 80px;
    gap: 24px;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

/* =====================
   HERO
===================== */
.hero {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: white;
  padding: 80px 0;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.btn-call {
  background: #0ea5e9;
  color: white;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-offer {
  background: #334155;
  color: white;
}

.btn-white {
  background: white;
  color: #0ea5e9;
}

/* CTA buttons wrapper */
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* =====================
   SERVICES
===================== */
.services-section {
  padding: 80px 0;
}

.services-section h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.service-image {
  height: 180px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 22px;
}

.service-content h3 {
  color: #0ea5e9;
  margin-bottom: 10px;
}

/* =====================
   UPDATE SECTION (BLUE)
===================== */
.update-section-blue {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  padding: 60px 0;
  color: white;
}

/* =====================
   CONTACT
===================== */
.contact-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.form {
  display: grid;
  gap: 16px;
  max-width: 500px;
  width: 100%;
}

input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
}

button {
  background: #0ea5e9;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
}

/* =====================
   FOOTER
===================== */
.footer {
  text-align: center;
  padding: 32px;
  background: #020617;
  color: #cbd5e1;
}


@media (max-width: 768px) {
  .hamburger {
    position: relative;
    z-index: 1001; /* PESTE meniu */
  }

  .nav-links {
    z-index: 1000;
  }
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger span {
  transition: all 0.3s ease;
}


.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-modern-card {
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.service-modern-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}
/* ===== DESPRE NOI ===== */
.about-section {
  padding: 80px 0;
  background: #f8fafc;
}

.about-wrapper{
  display: grid;
  grid-template-columns: 1fr;
}

.about-text h2 {
  font-size: 2.3rem;
  margin: 0 0 14px;
  color: #0f172a;
}

.about-text p {
  color: #475569;
  line-height: 1.8;
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.about-pill {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.about-card {
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-card h3 {
  margin: 0 0 12px;
  color: #0ea5e9;
  font-size: 1.25rem;
}

.about-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #334155;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0ea5e9;
  font-weight: 800;
}

.about-note {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}
.about-section h2{
  text-align:center;
  font-size:2.3rem;
  margin-bottom:48px;
  color:#0f172a;
}
.section-title{
  text-align: center !important;
  font-size: 2.3rem !important;
  margin-bottom: 48px !important;
  color: #0f172a !important;
}
.why-blue{
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: white;
  padding: 70px 0;
}

.why-wrapper{
  max-width: 980px;
  margin: 0 auto;
}

.why-text h2{
  text-align: center;
  font-size: 2.3rem;
  margin: 0 0 10px;
}

.why-subtitle{
  text-align: center;
  margin: 0 0 26px;
  opacity: 0.95;
  font-size: 1.08rem;
}

.why-list{
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.why-list li{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 14px 14px 14px 44px;
  border-radius: 14px;
  position: relative;
  line-height: 1.5;
}

.why-list li::before{
  content: "✔";
  position: absolute;
  left: 16px;
  top: 14px;
  font-weight: 900;
  color: #e0f2fe;
}

.why-blue .cta-buttons{
  justify-content: center;
}

.why-blue .btn-white{
  background: white;
  color: #0ea5e9;
}
.about-pill {
  text-align: center;
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px auto;
  
  justify-content: center; /* centrează pill-urile */
  align-items: center;

  width: 100%; /* să ocupe full container */
}

.intabulare-section {
  padding: 90px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: #0f172a;
}

.section-subtitle {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 55px;
  color: #475569;
  line-height: 1.7;
  font-size: 1.08rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.info-card {
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-card h3 {
  color: #0ea5e9;
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.info-card ul {
  padding-left: 18px;
  margin: 0;
  color: #334155;
  line-height: 1.6;
}

.small-note {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #64748b;
}

.cta-center {
  margin-top: 55px;
  text-align: center;
}
.recaptcha-wrap{
  display:flex;
  justify-content:center;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  white-space: nowrap;
}
.nav-links {
  flex-wrap: nowrap;
  white-space: nowrap;
}
.map-responsive{
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 35%;        /* înălțime pe desktop (ajustează 30–45%) */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.map-responsive iframe{
  position: absolute;
  inset: 0;                  /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Pe mobil o faci mai înaltă */
@media (max-width: 768px){
  .map-responsive{
    padding-bottom: 70%;
  }
}
.service-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #334155;
}

.service-text h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: #0ea5e9;
}

.service-text ul {
  margin: 0 0 10px;
  padding-left: 20px;
}

.service-text li {
  margin-bottom: 10px;
}
.service-text {
  max-width: 900px;
  margin: 0 auto;
  color: #475569;
}

.service-text h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 700;
}

.service-text ul {
  padding-left: 22px;
}

.service-text li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.service-text { font-family: inherit; }
body{
  font-family: 'Inter', Arial, sans-serif;
}
.service-text{
  max-width: 900px;
  margin: 0 auto;
}
/* ===== MENIU MOBILE - SPATIERE ===== */

@media (max-width: 768px) {

  /* Containerul meniului */
  .mobile-nav,
  .menu-mobile,
  .navbar-mobile {
    padding-top: 40px !important;   /* spațiu sus */
    padding-left: 25px !important;  /* spațiu stânga */
  }

  /* Linkurile din meniu */
  .mobile-nav a,
  .navbar-mobile a {
    display: block;
    padding: 14px 0 !important;   /* spațiere între elemente */
    font-size: 20px !important;   /* text mai mare */
    font-weight: 600 !important;  /* mai bold */
    letter-spacing: 0.5px;        /* mai elegant */
    color: white !important;
    text-transform: none;
  }

  /* Hover / activ */
  .mobile-nav a:hover,
  .navbar-mobile a:hover {
    opacity: 0.8;
  }

}

@media (max-width: 768px) {

  .navbar-mobile a {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

}
@media (max-width: 768px) {

  .navbar-mobile {
    text-align: left;
  }

  .navbar-mobile a {
    font-family: "Poppins", sans-serif;
  }

}
