/* ===== RESET & BODY (OPTIMIZAT PENTRU HVAC) ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f7fa;
    color: #333;
}

/* ===== HEADER / HERO (MAI CURAT, MAI ENERGETIC) ===== */
.pagina-separata-header {
    background: linear-gradient(135deg, rgb(15,112,183), #084f82);
    color: #fff;
    padding: 60px 20px 40px;
    text-align: center;
}

/* ===== HEADER FORM ===== */
.header-form-section {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.header-image {
    flex: 1;
    min-width: 300px;
}

.header-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== FORM ===== */
.reservation-form {
    width: 400px;
    min-width: 300px;
    background-color: #2b3438;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.reservation-form h2 {
    color: #f39200;
    margin-bottom: 1em;
    text-align: center;
    font-size: 1.5em;
}

.reservation-form input,
.reservation-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 1em;
    box-sizing: border-box;
    outline: none;
}

.reservation-form input:focus,
.reservation-form select:focus {
    border-color: rgb(15,112,183);
}

.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: 0.3s;
}

.reservation-form button:hover {
    background-color: rgb(220,130,0);
}


/* ===== WRAP ===== */
.wrap {
    width: auto;
    margin: auto;
    padding: 20px;
}


/* --- Zones + Map (3 coloane cu linkuri fără diacritice) --- */
.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: 65%;
  height: auto;
  border-radius: 8px;
}

.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;
}

/* Responsive mobil */
@media (max-width: 768px) {
  .header-form-section {
    flex-direction: column;
    gap: 20px;
  }
  .header-image, .reservation-form {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .reservation-form h2, .reservation-form p {
    text-align: center;
  }
  .zones-map-container {
    flex-direction: column;
    align-items: center;
  }
  .zones-list ul {
    columns: 1;
  }
}
a i.fa-phone {
    margin-right: 8px;
    color: #000; /* sau culoarea dorită */
}
  <!--/* MOBILE */ -->

@media(max-width:768px){

.header-form-section{
flex-direction:column;
}

.cazan-section,
.cazan-section.reverse{
flex-direction:column;
}

.cazan-section img{
width:100%;
}

.zones-list ul{
columns:2;
}

}

/* ===== SECTIONS ===== */
.section {
    margin-bottom: 60px;
}

.section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
    color: rgb(15,112,183);
    font-weight: 700;
    padding-top: 20px;
}

.section .sub {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}


/* ===== FAQ (FĂRĂ SCHIMBARE STRUCTURĂ) ===== */
.intrebari-frecvente-item,
.faq-item {
    max-width: 1000px;
    margin: 0 auto 12px auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    
}

.intrebari-frecvente-item summary,
.faq-item summary {
    cursor: pointer;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    background: #f7f7f7;

}

.intrebari-frecvente-item details[open] summary,
.faq-item details[open] summary {
    background: #e8f3ff;
}

.intrebari-frecvente-item p,
.faq-item p {
    margin: 0;
    padding: 15px;
    background: #fff;
    line-height: 1.6;
    color: #444;
    
}


/* ===== CTA FINAL (MAI CLEAN, HVAC STYLE) ===== */
.fin {
    position: relative;
    background: linear-gradient(135deg,#0f70b7,#084f82);
    color: #fff;
    padding: 60px 25px;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.fin h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.fin p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e2f0ff;
}

.fin a {
    display: inline-block;
    background: #fff;
    color: #0f70b7 !important;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
}

/* ===== AVANTAJE ===== */
.avantaje {
    background: #f4f7fa;
    padding: 70px 40px;
    margin-top: 50px;
    text-align: center;
}

.avantaje h2 {
    font-size: 30px;
    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;
    text-align: center;
}

.avantaj:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.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: 18px;
    margin-bottom: 10px;
}

.avantaj p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}
/* ===== CTA + IMAGE ===== */
.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-image {
    flex: 1;
    min-width: 200px;
}

.cta-image img {
    width: 50%;
    border-radius: 10px;
}

.cta-text {
    flex: 2;
    min-width: 200px;
    text-align: left;
}

.cta-text h2 {
    font-size: 30px;
    color: #000 !important;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-text a {
    display: inline-block;
    background: rgb(243,146,0);
    color: #000 !important;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.cta-text a:hover {
    background: rgb(220,130,0);
}

/* ===== FOOTER ===== */
.pagina-separata-header ~ footer {
    text-align: center;
    padding: 8px 15px;
    background: #222;
    color: #ddd;
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.2;
    border-top: 1px solid #444;
}

.pagina-separata-header ~ footer a {
    color: #f39a00;
    text-decoration: none;
    margin: 0 5px;
    font-size: 13px;
    transition: 0.2s;
}

/* ===== MEDIA QUERIES ===== */
@media(max-width: 900px){
    .install-wrapper { grid-template-columns: 1fr; }
}

@media(max-width: 768px){
    .header-form-section { flex-direction: column; }
    .cta { flex-direction: column; text-align: center; }
    .cta-text { text-align: center; }
    .cta-text a { width: 100%; font-size: 17px; padding: 16px; }
    .avantaje { padding: 50px 20px; }
    .header-image, .reservation-form { max-width: 100%; flex: 1 1 100%; }
    .faq { padding: 0 10px; }
}

//* =========================
   VIVATEH - INCALZIRE IN PARDOSEALA
   ========================= */


/* =========================
   BASE
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #f4f7fb;
  color: #1a2433;
  line-height: 1.55;
  font-size: 15.5px;
}

/* =========================
   TYPOGRAPHY
========================= */
p {
  font-size: 16px;
  
  line-height: 1.6;
}

.block p,
.block ul {
  max-width: 850px;
}

.block h2 {
  font-size: 28px;
  color: #0f2a4a;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.block h3 {
  color: #0f2a4a;
  margin-top: 18px;
  letter-spacing: -0.2px;
}

/* =========================
   PAGE WRAPPER
========================= */
.page {
  width: 100%;
}

/* =========================
   HERO (COMPACT PREMIUM)
========================= */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px 10%;
  background: linear-gradient(135deg, #ffffff, #eef4ff);
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.2;
  color: #0f2a4a;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 16px;
  color: #5a6b7c;
}

.hero-img img {
  width: 380px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* =========================
   BADGES
========================= */
.badges {
  margin-top: 12px;
}

.badges span {
  display: inline-block;
  padding: 6px 12px;
  margin: 4px 6px 0 0;
  border-radius: 20px;
  font-size: 12.5px;
  color: #0f2a4a;
  background: #eef5ff;
  border: 1px solid #dbe8ff;
}

/* =========================
   SECTIONS (COMPACT)
========================= */
.block {
  padding: 55px 10%;
  background: #ffffff;
}

.block:nth-child(even) {
  background: #f7f9fc;
}

.block ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* =========================
   GRID CARDS (COMPACT)
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 55px 10%;
}

.card {
  background: #fff;
  border: 1px solid #e6eef9;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* =========================
   TIMELINE (PROCESS CARDS PREMIUM STYLE)
========================= */

.vht-guide {
  padding: 80px 10%;
  background: linear-gradient(135deg, #eef4ff, #f7faff);
}

/* HEADER */
.vht-guide-header {
  text-align: center;
  margin-bottom: 50px;
}

.vht-guide-header h2 {
  font-size: 32px;
  color: #0f2a4a;
  margin-bottom: 8px;
}

.vht-guide-header p {
  color: #5a6b7c;
}

/* GRID STYLE TIMELINE (NO LINE, MODERN FLOW) */
.vht-timeline {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* ITEM CARD */
.vht-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e6eef9;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: 0.25s ease;
  position: relative;
}

/* HOVER */
.vht-timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: #dbe8ff;
}

/* NUMBER BADGE */
.vht-dot {
  min-width: 38px;
  height: 38px;
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(59,130,246,0.25);
}

/* CONTENT */
.vht-content {
  flex: 1;
}

.vht-content h3 {
  margin: 0 0 6px 0;
  font-size: 17px;
  color: #0f2a4a;
}

.vht-content p {
  margin: 0;
  font-size: 15px;
  color: #5a6b7c;
  line-height: 1.5;
}

/* SMALL ACCENT BAR */
.vht-timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #3b82f6, #60a5fa);
  border-radius: 14px 0 0 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vht-guide {
    padding: 50px 5%;
  }

  .vht-timeline-item {
    flex-direction: column;
  }

  .vht-dot {
    width: 34px;
    height: 34px;
  }
}
/* =========================
   PRICE TABLE (COMPACT CLEAN)
========================= */
.price {
  padding: 30px 10%;
  background: #f2f6ff;
}

.price h2 {
  font-size: 28px;
  color: #0f2a4a;
  margin-bottom: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

th {
  background: #0f2a4a;
  color: #fff;
  padding: 14px;
  font-size: 14px;
}

td {
  padding: 14px;
  border-bottom: 1px solid #eef2f7;
  color: #516274;
  font-size: 14px;
}

/* =========================
   CTA (CLEAN BLUE LIGHT)
========================= */
.cta-stage {
  padding: 30px 10%;
  background: linear-gradient(135deg, #eaf3ff, #f6faff);
  text-align: center;
  color: #0f2a4a;
}

.cta-stage .cta-box {
  max-width: 800px;
  margin: auto;
  padding: 40px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #dbe8ff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
}

.cta-stage h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.cta-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.cta-info div {
  background: #eef5ff;
  padding: 14px;
  border-radius: 10px;
}

/* BUTTON */
.cta-stage a {
  display: inline-block;
  padding: 13px 30px;
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.2s;
}

.cta-stage a:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* =========================
   COST FACTORS (ENGINEERING SPLIT CARDS STYLE)
========================= */

.cost-factors {
  margin: 70px 10%;
}

/* TITLE */
.cost-factors h3 {
  font-size: 26px;
  color: #0f2a4a;
  margin-bottom: 10px;
  position: relative;
  padding-left: 14px;
  border-left: 4px solid #3b82f6;
}

/* INTRO TEXT */
.cost-intro {
  max-width: 850px;
  color: #5a6b7c;
  margin-bottom: 25px;
  font-size: 16px;
}

/* GRID LAYOUT */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* CARD STYLE */
.cost-item {
  background: #ffffff;
  border: 1px solid #e6eef9;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: 0.25s ease;
  position: relative;
}

/* HOVER */
.cost-item:hover {
  transform: translateY(-4px);
  border-color: #dbe8ff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* TITLE INSIDE CARD */
.cost-item h4 {
  font-size: 16.5px;
  color: #0f2a4a;
  margin-bottom: 8px;
}

/* TEXT */
.cost-item p {
  font-size: 14.8px;
  color: #5a6b7c;
  line-height: 1.6;
}

/* FOOT NOTE */
.cost-note {
  margin-top: 22px;
  padding: 16px 18px;
  background: #f2f6ff;
  border-left: 4px solid #3b82f6;
  border-radius: 10px;
}

.cost-note p {
  margin: 0;
  font-size: 14.8px;
  color: #516274;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cost-factors {
    margin: 40px 5%;
  }

  .cost-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .hero-img img {
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .cta-info {
    grid-template-columns: 1fr;
  }
}