* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(to right, #059669, #047857);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-service {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    width: 100%;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-service:hover {
    background: linear-gradient(to right, #059669, #047857);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-service.emerald {
    background: linear-gradient(to right, #059669, #0d9488);
}

.btn-service.emerald:hover {
    background: linear-gradient(to right, #047857, #0f766e);
}

.btn-service.teal {
    background: linear-gradient(to right, #0d9488, #0891b2);
}

.btn-service.teal:hover {
    background: linear-gradient(to right, #0f766e, #0e7490);
}

.custom-header {
  background-color: #ecfdf5; 
  padding: 20px 80px;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.site-header {
  background-color: #f0fdfa; 
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px; 
  flex-wrap: wrap;
}

.logo-center img {
  height: 120px; 
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo-center img:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0e9f6e, #16a34a);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #0e9f6e;
}

.main-nav a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

.services-row {
 background: transparent;
  padding: 4rem 1rem;
  text-align: center;
}


.services-row .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.services-row .section-subtitle {
  color: #374151;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap; 
}

.service-card {
  background-color: #f0fdfa;
  border-radius: 1.25rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 360px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}


.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.service-card p {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card .btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  margin-top: auto;
}

/* Responsivitate */
@media (max-width: 992px) {
  .services-grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .service-card {
    max-width: 100%;
  }
}

.steps {
    padding: 4rem 0;
   background: transparent;
}

.steps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

.steps-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .step {
        grid-template-columns: 1fr 1fr;
    }

    .step.reverse .step-visual {
        order: -1;
    }
}

.step-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

.step-label.emerald {
    color: #059669;
}

.step-label.teal {
    color: #0d9488;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.step-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-highlight {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.step-visual {
    text-align: center;
}

.step-card {
    display: inline-block;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #f3f4f6;
}

.step-illustration {
    width: 12rem;
    height: 12rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-illustration.emerald {
    background: linear-gradient(135deg, #d1fae5, #f0fdfa);
}

.step-illustration.teal {
    background: linear-gradient(135deg, #f0fdfa, #ecfeff);
}

.step-icon {
    position: absolute;
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.25rem;
}

.step-icon.top-left {
    top: 1rem;
    left: 1rem;
}

.step-icon.bottom-right {
    bottom: 1rem;
    right: 1rem;
    width: 4rem;
    height: 3rem;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    font-size: 1.125rem;
}

.step-main-icon {
    font-size: 4rem;
    z-index: 2;
}

.step-dots {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot.green { background: #10b981; }
.dot.emerald { background: #059669; }
.dot.teal { background: #0d9488; }
.dot.cyan { background: #0891b2; }
.dot.blue { background: #3b82f6; }
.dot.indigo { background: #6366f1; }

.reviews {
    padding: 4rem 0;
    background: white;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.google-logo {
    height: 1.75rem;
}

.rating-text {
    color: #6b7280;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.score {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
}

.count {
    color: #6b7280;
}

.review-card {
    background: linear-gradient(to right, #ecfdf5, #d1fae5);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 4xl;
    margin: 0 auto;
    border: 1px solid #bbf7d0;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.review-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.review-text {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 2rem;
    height: 2rem;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.reviewer-name {
    font-weight: 600;
    color: #1f2937;
}

.reviewer-date {
    color: #6b7280;
    font-size: 0.875rem;
}


.stats {
    padding: 4rem 0;
    background: transparent;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .stats-content {
        grid-template-columns: 1fr 1fr;
    }
}

.stats-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-card.green {
    background: linear-gradient(to right, #10b981, #059669);
}

.stat-card.dark {
    background: linear-gradient(to right, #374151, #1f2937);
}

.stat-card.emerald {
    background: linear-gradient(to right, #059669, #0d9488);
}

.stat-card.full-width {
    grid-column: 1 / -1;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number.big {
    font-size: 2.5rem;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.footer {
  background-color: #ffffff; /* fundal alb pentru tot footerul */
  color: #1e2733; /* text închis */
  padding: 3rem 0 0;
}


.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    margin-right: 0.75rem;
}

.footer-logo .logo-name {
    color: white;
}

.footer-logo .logo-domain {
    color: #10b981;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 10rem;
    margin-bottom: 1rem;
}

.google-logo-small {
    height: 1.25rem;
}

.rating-info {
    text-align: left;
}

.rating-info .score {
    font-size: 1.25rem;
    color: white;
}

.stars-small {
    color: #fbbf24;
    font-size: 0.875rem;
}

.count-small {
    color: #9ca3af;
    font-size: 0.75rem;
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.ssl-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #10b981;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.footer-title {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercas;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-legal {
        flex-direction: row;
        gap: 1rem;
    }
}

.footer-legal span {
    color: #9ca3af;
    font-size: 0.875rem;
}

.legal-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    background: #374151;
    border-radius: 0.25rem;
    color: #d1d5db;
    font-size: 0.75rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-highlight {
        padding: 0.375rem 1rem;
        font-size: 0.875rem;
    }

    .illustration-card {
        padding: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .step {
        text-align: center;
    }

    .step-card {
        padding: 1rem;
    }

    .step-illustration {
        width: 8rem;
        height: 8rem;
    }

    .step-main-icon {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.step-card,
.review-card,
.stat-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f8f8f8;
  color: #333;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  background-color: #e8f5e9; /* verde deschis */
  border-bottom: 2px solid #c8e6c9;
}

.hero h1 {
  color: #2e7d32; /* verde închis */
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero p {
  font-size: 1.1rem;
  margin-top: 15px;
}


.service-card.horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 2rem;
    border: 1px solid #e5e7eb;
    padding: 2rem;
}

.service-card.horizontal.reverse {
    flex-direction: row-reverse;
}

.service-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-text {
    flex: 1;
}

/* Responsivitate  ( Despre Noi )*/
@media (max-width: 768px) {
    .service-card.horizontal,
    .service-card.horizontal.reverse {
        flex-direction: column;
        text-align: center;
    }

    .service-img img {
        max-width: 100%;
    }
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.services-row .service-card {
  flex: 1 1 30%;
  min-width: 300px;
}

.about {
  background: transparent;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1 1 50%;
}

.about-title {
  font-size: 2rem;
  color: #000000; /* un albastru profesional */
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-text p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text strong {
  color: #000;
}

/* Responsivitate */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    flex: none;
    width: 100%;
  }
}

.why-us {
  padding: 4rem 0;
  background: transparent;
  text-align: center;
}

.why-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000; 
  margin-bottom: 2rem;
}

.why-image img {
  width: 1200px;
  height: 360px;
  object-fit: cover;
  object-position: center center; /* 👉 Afișează centrul pozei */
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.why-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
}

.icon {
  color: #10b981; /* verde smarald */
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-item p {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-item strong {
  color: #000;
}

/* Responsivitate */
@media (max-width: 768px) {
  .why-title {
    font-size: 1.75rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-item {
    justify-content: center;
  }
}


/* Formular Clienți */
.form-section {
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  padding: 4rem 1rem;
  text-align: center;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.form-subtitle {
  color: #374151;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.client-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  outline: none;
}

.client-form .btn {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
}

.extra-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  background: linear-gradient(135deg, #f0fdfa, #ecfdf5);
  padding: 4rem 1rem;
  position: relative;
}

.extra-info .container {
  max-width: 800px;
  background: white;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease;
}

.extra-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1rem;
}

.extra-text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.extra-info .btn {
  display: inline-block;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right, #10b981, #059669);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.extra-info .btn:hover {
  background: linear-gradient(to right, #059669, #047857);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  transform: translateY(-3px);
}

.hero-image-section {
    height: 550px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(70%);
    /* întunecă ușor imaginea pentru contrast mai bun cu textul */
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%;
    padding: 1rem;
}

.hero-overlay-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-overlay-text p {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}


.footer {
  background-color: #ffffff; /* fundal alb */
  color: #1e2733; /* text închis */
  padding: 3rem 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15rem;
  align-items: start;
  margin-bottom: 0;
}

.footer-title {
  color: #1e2733;
}

.footer-links a {
  color: #1e2733;
  text-decoration: none;
}

.footer-links a:hover {
  color: #0e9f6e;
}

.social-icons img {
  filter: none;
}


.footer-bottom {
  background-color: #1e2733; /* păstrăm fundalul închis */
  color: #ffffff;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-bottom .footer-legal span,
.footer-bottom .badge,
.footer-bottom .footer-copyright {
  color: #ffffff;
}

.footer-bottom .badge {
  border: 1px solid #fff;
  background: transparent;
}



.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: invert(66%) sepia(60%) saturate(400%) hue-rotate(90deg);
}


.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal span {
  color: #9ca3af;
  font-size: 0.875rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  background: #374151;
  border-radius: 0.25rem;
  color: #d1d5db;
  font-size: 0.75rem;
}


.footer-logos {
  display: flex;
  flex-direction: row; /* Așează logourile unul lângă altul */
  align-items: center;
  justify-content: center; /* Centrează pe orizontală */
  gap: 1rem; /* Spațiu între logo-uri */
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  max-width: 250px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}


.collaboration {
  background: linear-gradient(to bottom, #ecfdf5, #d1fae5);
  padding: 4rem 2rem;
  text-align: left;
  color: #111;
  font-family: "Outfit", sans-serif;
}

.collaboration .container {
  max-width: 1100px;
  margin: 0 auto;
}

.collaboration h2 {
  text-align: center;
  color: #065f46;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.collaboration ul {
  list-style-type: disc;
  padding-left: 2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.collaboration li {
  margin-bottom: 1rem;
}

.collaboration strong {
  color: #000;
}


.partner-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.partner-box h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}


.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

.partners-grid img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}

.partners-grid img:hover {
  transform: scale(1.05);
}


.prices-row {
  background: white;
  padding: 4rem 0;
}

.prices-row .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.prices-row .section-title {
  font-size: 2.5rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.prices-row .section-subtitle {
  color: #222;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.prices-grid {
  display: flex;
  flex-direction: row; 
  align-items: center;
  gap: 2rem;
}


.price-card {
  background-color: #f0fdfa; 
  border-radius: 2rem;
  padding: 2rem;
  width: 340px;
  height: 380px;
  text-align: left; 
  color: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:nth-child(3) {
  background-color: #f0fdfa; 
  color: #000000;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 1rem;
}

.price-card:nth-child(3) h3 {
  color: #000000;
}

.price-card p {
  font-size: 0.95rem;
  color: #111;
  margin: 0.5rem 0;
  line-height: 1.5;
}

.price-card:nth-child(3) p {
  color: #000000;
}

/* SUMA */
.price-card h4 {
  text-align: center;
  color: #10b981;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* LISTA */
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.price-card ul li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.price-card ul li::before {
  content: "✔";
  margin-right: 0.5rem;
  color: black;
}

.price-card:nth-child(3) ul li::before {
  color: rgb(0, 0, 0);
}

/* BUTON */
.price-card .btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 0;
  border-radius: 30px;
  background-color: #10b981;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-top: 1.5rem;
}

.price-card .btn:hover {
  background-color: #8bee9b;
}

/* ===== Footer - bara de jos ANPC ===== */
.footer-bottom {
  background-color: #1e2733 !important; /* bara închisă */
  color: #ffffff !important;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  border-top: none;
}

.footer-bottom .footer-legal span,
.footer-bottom .badge,
.footer-bottom .footer-copyright {
  color: #ffffff !important;
}

.footer-bottom .badge {
  border: 1px solid #ffffff;
  background: transparent;
}

.about-gmc {
  font-family: "Outfit", sans-serif;
  color: #1e2733;
  text-align: center;
  background: #f8faf9;
}

.about-hero { 
  background: url('images/desprenoi1.jpeg') center center/cover no-repeat;
  height: 550px;
  position: relative;
}


.about-hero {
  background: url('images/desprenoi1.jpeg') center center/cover no-repeat;
  height: 550px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* efect întunecat subtil */
  z-index: 1;
}


.about-hero .overlay {
  background: rgba(255, 255, 255, 0); /* complet transparent */
  backdrop-filter: none; /* fără efect de blur */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2; /* adăugat pentru a apărea peste overlay */
}


.hero-text h1 {
    color: #ffffff;
    /* alb pentru lizibilitate */
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    /* umbră clară pe text */
}

.hero-text p {
    color: #ffffff;
    /* alb pentru lizibilitate */
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    /* umbră clară pe text */
}

.about-content {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
  background-color: white;
}


.text-box {
  background: #ffffff;
  max-width: 900px;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
  text-align: justify;
  position: relative;
  border: 1px solid #bbf7d0;
}

.text-box::before {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #10b981;
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
}

.text-box p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #374151;
}

.text-box strong {
  color: #047857; /* verde mai închis */
}

/* responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .about-hero {
    height: 300px;
  }

  .text-box {
    padding: 2rem 1.5rem;
  }
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.netopia-logo iframe {
  width: 120px;
  height: 100px;
  border: none;
  display: block;

}

/* pe ecrane mici – redimensionare automată */
@media (max-width: 768px) {
  .netopia-logo iframe {
    width: 100px;
    height: 80px;
  }
}

/* formular */

/* ===== FORMULAR PROFESIONAL (O SINGURĂ COLONĂ) ===== */
.formular-wrapper {
  max-width: 700px;
  margin: 4rem auto;
  background: #ffffff;
  padding: 3rem 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  font-family: "Outfit", sans-serif;
  position: relative;
  overflow: hidden;
}

.formular-wrapper::before {
  content: "";
  position: relative;
  inset: 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  opacity: 0.03;
}

.form-title {
  text-align: center;
  font-size: 2rem;
  color: #064e3b;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: #047857;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  color: #1f2937;
  background-color: #f9fafb;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  outline: none;
  background: #fff;
}

/* Buton */
.btn-submit {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
}

/* textul de confidențialitate */
.privacy-text {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 1.25rem;
}

.privacy-text a {
  color: #059669;
  text-decoration: underline;
}

/* Responsive (mobil) */
@media (max-width: 600px) {
  .formular-wrapper {
    padding: 2rem 1.5rem;
  }
}

.legal-badges a.badge {
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  border: 1px solid #ffffff;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.75rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.legal-badges a.badge:hover {
  background-color: #10b981;
  color: #ffffff;
}

/* ===== FOOTER FINAL ===== */
.footer-final {
  background: #ffffff;
  color: #1e2733;
  font-family: 'Outfit', sans-serif;
  padding: 60px 0;
}

/* === Structura principală === */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  align-items: start;
  /* ✅ Asigură alinierea sus */
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* ✅ Forțează conținutul să înceapă sus */
}

.footer-company {
  align-items: flex-start !important;
  text-align: left !important;
  margin-top: 0 !important;
  /* ✅ Elimină diferența de înălțime */
  padding-top: 0 !important;
}


/* === Coloane === */
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
}

/* === Titluri === */
.footer-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #0e1b2c;
}

/* === Meniu === */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  margin-left: 10px;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #1e2733;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0e9f6e;
}

/* === Social Media === */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
  opacity: 0.8;
}

/* === Logo Netopia === */
.netopia-box {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.8);
  margin-top: 10px;
}

/* === Partener Exclusiv (GMC) === */
.gmc-logo {
  width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}

.gmc-logo:hover {
  transform: scale(1.05);
}

/* === Contact === */
.footer-company {
  text-align: left;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1e2733;
}

.footer-company a {
  color: #0e9f6e;
  text-decoration: none;
}

.footer-company a:hover {
  text-decoration: underline;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-company {
    text-align: center;
    align-items: center;
  }
}

/* ===== FOOTER LEGAL BAR ===== */
.footer-legal-bar {
  background-color: #1e2733;
  color: #fff;
  text-align: center;
  padding: 25px 0 30px;
  border-top: 2px solid #0e9f6e;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.footer-legal-container {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-legal-text {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #f3f4f6;
}

.footer-legal-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-logo-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.legal-logo-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.legal-logo-img {
  height: 85px;
  width: auto;
  border-radius: 6px;
  background-color: #fff;
  padding: 3px 6px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.footer-legal-copy {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 8px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer-legal-bar {
    padding: 20px 10px;
  }

  .legal-logo-img {
    height: 45px;
  }

  .footer-legal-text {
    font-size: 0.95rem;
  }
}

/* ============================
   PRETURI – RESPONSIVE
   ============================ */

/* Hero-ul de preturi sa nu mai fie blocat la 550px */
.about-hero.preturi-hero {
  height: auto;
  padding: 4rem 1rem 5rem;
  align-items: flex-start;
}

.about-hero.preturi-hero .overlay {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-hero.preturi-hero .hero-text {
  max-width: 1100px;
  margin: 0 auto;
}

/* Grila cu cele 3 preturi – mai flexibilă */
.prices-grid {
  display: flex;
  flex-wrap: wrap;          /* permite ruperea pe mai multe linii */
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}

/* Cardurile de pret – nu mai fortăm înălțime fixă */
.price-card {
  width: 340px;
  max-width: 100%;
  height: auto;             /* lasă conținutul să decidă înălțimea */
}

/* ============================
   RESPONSIVE PE TABLETA / TELEFON
   ============================ */
@media (max-width: 1024px) {
  .about-hero.preturi-hero {
    padding: 3rem 1.5rem 4rem;
  }

  .hero-text h1 {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Hero mai compact pe mobil */
  .about-hero.preturi-hero {
    padding: 2.5rem 1rem 3.5rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  /* Cardurile: unu sub altul, full width */
  .prices-grid {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1.6rem 1.4rem;
  }

  .price-card h3 {
    font-size: 1.05rem;
  }

  .price-card h4 {
    font-size: 1.5rem;
  }

  .price-card p,
  .price-card ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.4rem;
  }

  .price-card {
    padding: 1.4rem 1.1rem;
  }
}

.footer-anpc {
    background: #1e2733;
    padding: 25px 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.footer-links-row {
    margin-bottom: 10px;
}

.footer-links-row a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
    font-size: 14px;
}

.footer-copy-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* distanța perfectă între text și imagini */
    flex-wrap: wrap;
}

.footer-anpc-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.anpc-logo {
    height: 45px; /* DIMENSIUNEA CA ÎN A DOUA POZĂ */
    width: auto;
}

footer a {
    transition: color 0.25s ease, opacity 0.25s ease;
}

footer a:hover {
    color: #5e5c5c !important;
    opacity: 5.2;
}

