/* ===== 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;
}

}
/* ===================================================
   ZONES & MAP (MOBIL - ORAȘE PE 3 COLOANE)
=================================================== */
@media (max-width: 768px) {
  
  /* Harta și lista se așază una sub alta */
  .zones-map-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 0 10px;
  }

  .zones-map-image {
    width: 100% !important;
    text-align: center !important;
  }

  .zones-map-image img {
    width: 80% !important; /* Harta rămâne vizibilă și centrată */
    height: auto !important;
  }

  /* LISTA RĂMÂNE PE 3 COLOANE COMPACTE */
  .zones-list {
    width: 100% !important;
  }

  .zones-list ul {
    columns: 3 !important; /* Forțăm strict 3 coloane și pe mobil */
    -webkit-columns: 3 !important;
    -moz-columns: 3 !important;
    gap: 10px !important; /* Spațiul dintre cele 3 coloane */
    text-align: left !important;
  }

  /* Micșorăm puțin textul ca să încapă perfect în cele 3 coloane fără să se rupă urât */
  .zones-list li {
    margin-bottom: 8px !important;
    font-size: 13px !important; /* Dimensiune optimizată pentru ecran mic */
    word-break: break-word; /* Dacă un oraș e prea lung, nu iese din coloană */
  }
}
/* ===== 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; }
}


/* ===== FAQ (ADAPTAT DUPĂ TEMATICA TA) ===== */
.srv-faq {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.intrebari-frecvente-item,
.faq-item {
    max-width: 1000px;
    margin: 0 auto 12px auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.srv-faq h2 {
    text-align: center;
    margin-top: 50px;       /* Creează distanța față de blocul de sus */
    margin-bottom: 25px;    /* Spațiul dintre titlu și prima întrebare */
    color: #0f172a;         /* Culoarea închisă premium din tematică */
    font-size: 28px;        /* Dimensiunea textului */
    font-weight: 700;
}

.intrebari-frecvente-item summary,
.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 16px;
    background: #f7f7f7;
    color: #1e293b;
    outline: none;
    
    /* Aliniere text la stânga și indicator la dreapta */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ascundem triunghiul nativ al browserului (Chrome, Safari, Firefox) */
.intrebari-frecvente-item summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
    display: none;
}
.intrebari-frecvente-item summary::marker,
.faq-item summary::marker {
    display: none;
}

/* Stil pentru fundal când e deschis - conform tematicii tale */
.intrebari-frecvente-item details[open] summary,
.faq-item details[open] summary {
    background: #e8f3ff;
    border-bottom: 1px solid #e5e5e5;
}

/* Adăugare indicator + / - în dreapta */
.intrebari-frecvente-item summary::after,
.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: #64748b;
    font-weight: 400;
    margin-left: 15px;
}

.intrebari-frecvente-item details[open] summary::after,
.faq-item details[open] summary::after {
    content: '−';
    color: #2563eb;
}

/* Corpul răspunsului */
.intrebari-frecvente-item .faq-answer,
.faq-item .faq-answer {
    background: #fff;
}

.intrebari-frecvente-item p,
.faq-item p {
    margin: 0;
    padding: 18px 20px;
    line-height: 1.6;
    color: #444;
    font-size: 15px;
}


/* ===================================================
   STRUCTURA PAGINĂ DETALII COȘURI
=================================================== */
/* ===================================================
   STIL INTEGRAL NOU: NEO-BRUTALIST CLEAN (VIMATEH)
=================================================== */

:root {
  /* Culorile Vivateh neschimbate */
  --viva-blue: rgb(15, 112, 183);
  --viva-orange: rgb(243, 146, 0);
  
  /* Fundaluri și accente ultra-curate */
  --viva-orange-light: #fffdf5; /* Un portocaliu-crem cald, foarte discret */
  --viva-blue-light: #f4f8fc;   /* Albastru tehnic foarte deschis pentru tabele/carduri */
  
  /* Culori text optimizate (Nuanțe de Slate/Ardezie) */
  --slate-dark: #0f1e2d;        /* Un bleomarin-închis profund, mult mai elegant decât negrul */
  --slate-body: #3d4e5f;        /* Gri-albăstrui pentru paragrafe (lizibilitate excelentă) */
  --slate-inline: #708599;      /* Pentru texte secundare și legende */
  
  /* Linii structurale */
  --border-flat: #e6edf4;       /* Linii fine cu o tentă ușoară de albastru */
}

/* Container General Aerisit */
.cos-fum-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--slate-body);
  background-color: #ffffff; /* Fundal complet alb, curat */
}

/* ===== HERO SECTION ASIMETRICĂ ===== */
.cos-fum-hero {
  text-align: left; /* Aliniere modernă la stânga */
  margin-bottom: 80px;
  border-bottom: 2px solid var(--slate-dark);
  padding-bottom: 40px;
}

.hero-accent-line {
  display: none; /* Eliminat vechiul separator */
}

.cos-fum-hero h1 {
  font-size: 42px;
  color: var(--slate-dark);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-lead {
  font-size: 18px;
  color: var(--slate-body);
  max-width: 780px;
  margin: 0 0 35px 0;
  line-height: 1.6;
}

.hero-badge-container {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badge {
  background: var(--viva-blue-light);
  color: var(--viva-blue);
  padding: 6px 14px;
  border-radius: 4px; /* Margini drepte, tehnice */
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(15, 112, 183, 0.15);
  box-shadow: none;
}

.hero-badge i {
  color: var(--viva-orange);
  margin-right: 6px;
}

/* ===== LAYOUT SEGMENTE CU LINII STRUCTURALE ===== */
.cos-fum-segments {
  display: flex;
  flex-direction: column;
  gap: 0; /* Lipite pentru a forma o structură continuă */
}

.segment-block {
  background: transparent;
  border-radius: 0;
  padding: 60px 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid var(--border-flat); /* Separatoare fine orizontale */
  transition: opacity 0.3s ease;
}

.segment-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: flex-start;
}

/* ===== FIX ALINIERE RÂND PENTRU SECȚIUNILE REVERSE ===== */
.segment-grid-layout.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.segment-grid-layout.reverse .segment-media {
  grid-column: 2;
  grid-row: 1; /* Forțează imaginea pe rândul 1 */
}

.segment-grid-layout.reverse .segment-content {
  grid-column: 1;
  grid-row: 1; /* Forțează textul pe rândul 1, exact în stânga imaginii */
}

/* Asigură-te că ambele elemente pornesc perfect de la același nivel de sus */
.segment-grid-layout {
  align-items: stretch; /* Schimbat din flex-start pentru a egala înălțimile */
}
/* Cadre Media Fără Umbre - Stil Plan Tehnic */
.segment-media {
  position: relative;
  border-radius: 0;
  border: 1px solid var(--border-flat);
  padding: 8px;
  background: #ffffff;
  
  /* Modificarea esențială: așezare pe verticală */
  display: flex;         
  flex-direction: column;   /* Forțează elementele să stea unul sub altul */
  align-items: stretch;
  height: 100%;          
}

.segment-media img {
  width: 100%;
  flex-grow: 1;             /* Obligă imaginea să ocupe tot spațiul rămas liber */
  height: auto;             /* Îi permite să se dimensioneze flexibil */
  min-height: 300px;     
  object-fit: cover;     
  display: block;
}

.segment-block:hover .segment-media img {
  transform: none; 
}

.media-tech-specs {
  position: static; 
  background: var(--viva-blue-light);
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  color: var(--viva-blue);
  font-size: 12px;
  font-weight: 600;
  
  /* Schimbat marginea pentru a se lipi frumos în interiorul cadrului */
  margin-top: 8px;          /* Creează un spațiu egal cu padding-ul de sus */
  border: 1px solid var(--border-flat); /* O bordură fină în jurul legendei */
}
/* Etichete Solide (Tags) */
.segment-tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.tag-condensare { background: var(--viva-blue); color: #ffffff; }
.tag-conventional { background: var(--viva-orange); color: #ffffff; }
.tag-solid { background: var(--slate-dark); color: #ffffff; }

.segment-content h2 {
  font-size: 28px;
  color: var(--slate-dark);
  margin: 0 0 15px 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.segment-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate-body);
  margin-bottom: 30px;
}

/* Caracteristici în Stil Listă de Specificații */
.tech-features {
  display: grid;
  grid-template-columns: 1fr; /* Listare verticală curată */
  gap: 20px;
  border-top: 2px solid var(--slate-dark);
  padding-top: 25px;
}

.feature-item h4 {
  margin: 0 0 6px 0;
  font-size: 15px;
  color: var(--slate-dark);
  font-weight: 700;
  padding-left: 0;
}

.feature-item h4::before {
  display: none; /* Eliminat punctele rotunde */
}

.feature-item p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--slate-inline);
  margin: 0;
}

/* ===== TABEL MATRICE DE PREȚURI (MINIMALIST) ===== */
.cos-fum-price-table {
  background: transparent;
  border-radius: 0;
  margin: 80px 0;
  box-shadow: none;
  border: none;
}

.table-header-wrapper {
  padding: 0 0 25px 0;
  border-bottom: 2px solid var(--slate-dark);
}

.table-header-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--slate-dark);
}

.table-header-wrapper p {
  font-size: 15px;
  color: var(--slate-inline);
}

.cos-fum-price-table table {
  width: 100%;
  border-collapse: collapse;
}

.cos-fum-price-table th {
  background: transparent;
  padding: 16px 15px;
  font-weight: 750;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--slate-dark);
  border-bottom: 1px solid var(--slate-dark);
  text-align: left;
}

.cos-fum-price-table td {
  padding: 16px 15px;
  border-bottom: 1px solid var(--border-flat);
  font-size: 14px;
  color: var(--slate-body);
}

.cat-primary {
  font-weight: 700;
  color: var(--slate-dark);
}

.cat-group {
  background: transparent;
  font-weight: 700;
  border-right: 1px solid var(--border-flat);
  color: var(--slate-dark);
}

.price-cell {
  font-weight: 700;
  color: var(--viva-blue);
  font-size: 15px;
  text-align: right; /* Prețurile aliniate curat la dreapta */
}

.price-cell small {
  color: var(--slate-inline);
  font-weight: 500;
}

.cos-fum-price-table tr:hover td {
  background-color: var(--viva-blue-light); /* Evidențiere fină la rând */
}

.row-highlight td {
  background-color: #ffffff;
  font-weight: 600;
  border-bottom: 1px solid var(--slate-dark);
}

.row-service td {
  color: var(--slate-body);
  font-size: 13.5px;
  border-bottom: 1px dashed var(--border-flat);
}

/* ===== SECȚIUNE MENTENANȚĂ COMPLET LUMINOASĂ ===== */
.cos-fum-service {
  background: #ffffff;
  color: var(--slate-dark);
  padding: 80px 0 20px 0;
  border-radius: 0;
  box-shadow: none;
  border-top: 2px solid var(--slate-dark);
}

.service-intro {
  text-align: left;
  margin-bottom: 50px;
}

.service-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--slate-dark);
}

.service-intro p {
  color: var(--slate-body);
  font-size: 16px;
  max-width: 750px;
  margin: 10px 0 0 0;
}

/* Grid Tehnic tip "Bento" fără fundaluri închise */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: none;
  border-left: 3px solid var(--viva-blue); /* Linie verticală de accent */
  padding: 10px 0 10px 20px; /* Decalaj fin */
  border-radius: 0;
  text-align: left;
  transition: border-left-color 0.2s ease;
}

.service-card:hover {
  background: transparent;
  border-left-color: var(--viva-orange); /* Comută pe portocaliu la interacțiune */
  transform: none;
  box-shadow: none;
}

.card-icon-box {
  font-size: 22px;
  color: var(--viva-blue);
  margin-bottom: 12px;
}

.service-card:hover .card-icon-box {
  color: var(--viva-orange);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--slate-dark);
}

.service-card p {
  font-size: 13.5px;
  color: var(--slate-inline);
  line-height: 1.6;
}

.service-card:hover p {
  color: var(--slate-body);
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .segment-grid-layout, 
  .segment-grid-layout.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .segment-grid-layout.reverse .segment-media,
  .segment-grid-layout.reverse .segment-content {
    grid-column: auto;
  }
  
  .segment-media img {
    height: 280px;
  }
  
  .cos-fum-hero h1 { font-size: 34px; }
}

@media (max-width: 640px) {
  .cos-fum-page { padding: 40px 16px; }
  .service-grid { grid-template-columns: 1fr; gap: 25px; }
  .cos-fum-hero h1 { font-size: 28px; }
  .table-header-wrapper h2, .service-intro h2 { font-size: 22px; }
  .cos-fum-price-table th { padding: 10px 8px; font-size: 11px; }
  .cos-fum-price-table td { padding: 12px 8px; font-size: 13px; }
}