/* --- Stiluri generale pentru pagina --- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fa;
  color: #333;
}

.pagina-separata-header {
  background: rgb(15,112,183);
  color: #fff;
  padding: 60px 20px 40px;
  text-align: center;
}

.container {
  max-width: auto;
  margin: auto;
  padding: 0 20px;
}

h2 {
  color: rgb(15,112,183);
  margin-top: 40px;
}

/* HERO */
.header-form-section {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.header-image {
  flex: 1;
}

.header-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

/* FORMULAR */
.reservation-form {
  width: 420px;
  min-width: 400px;
  background: #293336;
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.reservation-form h2 {
  color: rgb(15,112,183);
  margin-bottom: 1em;
  text-align: center;
  font-size: 1.5em;
}

.reservation-form p {
  font-size: 1em;
  margin-bottom: 1.5em;
  text-align: center;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
  box-sizing: border-box;
}

.reservation-form button {
  width: 100%;
  padding: 14px;
  background-color: rgb(243,146,0);
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.reservation-form button:hover {
  background-color: rgb(220,130,0);
}

/* CAZANE */
.cazan-container {
  display: flex;
  align-items: flex-start;
  gap: 20px; /* spațiul dintre imagine și descriere */
  margin-bottom: 40px;
}

.cazan-section img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0; /* nu se micșorează */
}

.cazan-description {
  background: #fff;
  padding: 20px;
  border-left: 6px solid rgb(243,146,0);
  border-radius: 4px;
  flex: 1; /* descrierea ocupă restul spațiului */
}

/* AVANTAJE */
.avantaje {
  background: #f4f7fa;
  padding: 70px 40px;
  margin-top: 50px;
  text-align: center;
}

.avantaje h2 {
  font-size: 34px;
  color: rgb(15,112,183);
  margin-bottom: 15px;
}

.avantaje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.avantaj {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.avantaj:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* cerc pentru icon */
.avantaj-icon {
  width: 70px;
  height: 70px;
  background: rgb(15,112,183);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.avantaj-icon img {
  width: 35px;
  height: 35px;
}

.avantaj h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.avantaj p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* PRICE */
.prices table {
  width: 100%;
  border-collapse: collapse;
}

.prices th,
.prices td {
  padding: 12px;
  border: 1px solid #ddd;
}

.prices th {
  background: rgb(243,146,0);
  color: #fff;
}

/* CTA cu poza stanga */
.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  background: rgb(15,112,183);
  color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 50px;
}

.cta .cta-image {
  flex: 1;
  min-width: 200px;
}

.cta .cta-image img {
  width: 50%;       /* ocupă toată lățimea containerului */
  max-width: 400px;  /* opțional: limitează lățimea maximă */
  height: auto;      /* păstrează proporțiile */
  object-fit: contain;
  border-radius: 10px;
}

.cta .cta-text {
  flex: 2;
  min-width: 200px;
  text-align: left;
}

.cta .cta-text h2 {
  font-size: 32px;
  color: #000 !important;
  margin-bottom: 10px;
}

.cta .cta-text p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta .cta-text a {
  display: inline-block;
  background: rgb(243,146,0);
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.cta .cta-text a:hover {
  background: rgb(220,130,0);
}

/* ZONES + MAP */
.zones-map-container {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.zones-map-image {
  flex: 1;
  min-width: 250px;
}

.zones-map-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
}

.zones-list {
  flex: 1;
  min-width: 250px;
}

.zones-list ul {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  list-style: none;
  padding: 0;
  margin: 0;
}

.zones-list li {
  margin-bottom: 6px;
  font-size: 16px;
}

.zones-list li a {
  text-decoration: none;
  color: rgb(15,112,183);
}

.zones-list li a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer.main-footer {
  width: 100%;
  text-align: center;
  padding: 20px 15px;
  background: #222;
  color: #ddd;
  font-size: 14px;
  line-height: 1.5;
  border-top: 2px solid #0f70b7;
  box-sizing: border-box;
}

footer.main-footer a {
  color: #f39a00;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer.main-footer a:hover {
  color: #fff;
}

/* ICON PHONE */
a i.fa-phone {
  margin-right: 8px;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-form-section,
  .cazan-section,
  .cazan-section.reverse,
  .zones-map-container {
    flex-direction: column;
    align-items: center;
  }

  .cazan-section img,
  .zones-map-image img {
    width: 100%;
    height: auto;
  }

  .reservation-form h2,
  .reservation-form p,
  .cta .cta-text {
    text-align: center;
  }

  .zones-list ul {
    columns: 1;
  }

  .cta .cta-text a {
    width: 100%;
    font-size: 17px;
    padding: 16px;
  }
}