/* --------- GENERAL --------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    padding-top: 90px;   /* <-- adăugat aici */
    background: #062446;
    font-family: Arial, sans-serif;
}

/* --------- CONTAINER --------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ---------- NAV BAR B MODERN ---------- */

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-logo {
    height: 55px;
}

.nav-center {
    display: flex;
    gap: 40px;
}

.nav-center a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: 0.2s;
}

.nav-center a:hover {
    color: #ff4d4d;
}

.nav-right {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 5px 12px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* LANGUAGE SELECTOR */
.lang-btns button {
    background: transparent;
    border: 1px solid #fff;
    padding: 5px 12px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}
.lang-btns button:hover {
    background: #ff4242;
    border-color: #ff4242;
  
}
/* --- HERO LAYOUT --- */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0;
}

/* Textul din stânga */
.hero-content {
    max-width: 500px;
    color: #ffffff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hero-content .location {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Buton Book tid */
.cta-button {
    background-color: #ffffff;
    color: #003366;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.25s;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #e6e6e6;
}

/* --- Imaginea din centru --- */
.hero-img {
    width: 520px;
    height: 300px;
    background-image: url("hero.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* --- Caseta MAP în dreapta --- */
.hero-map {
    background: #0e203d;
    padding: 20px;
    border-radius: 10px;
    width: 220px;
    height: 120px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.hero-map h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.map-btn {
    background-color: #ffffff;
    color: #003366;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.map-btn:hover {
    background-color: #e6e6e6;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-img {
        width: 100%;
        height: 260px;
    }

    .hero-map {
        width: 100%;
        height: auto;
    }
}
/* --------- ICON SECTIONS --------- */
.section-title {
    text-align: left;
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-box {
    background: #12325c;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.service-box:hover {
    background: #1a3f73;
}

.service-box img {
    height: 55px;
    margin-bottom: 15px;
}

.service-box h3 {
    margin-top:/* ===========================
   RESPONSIVE – MOBILE & TABLET
   =========================== */

/* Tablete + telefoane mari */
@media (max-width: 1024px) 
  }
  
  
  .container {
    width: 95%;
  }

  header {
    padding: 1rem 0;
  }

  .hero {
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* Telefoane (layout pe o coloană) */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  /* header */
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
  }

  .language-switch {
    margin-left: 0;
    align-self: flex-start;
  }

  /* HERO: text deasupra, imagine dedesubt */
  .hero {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
  }

  /* cardurile de servicii pe o coloană */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-card {
    text-align: left;
  }

  /* coloanele de jos (adresă, contact, programare) una sub alta */
  .bottom-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .booking-form {
    width: 100%;
  }

  .booking-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .booking-form input,
  .booking-form textarea {
    width: 100%;
  }

  footer {
    text-align: center;
  }
}

/* Telefoane foarte mici */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  nav ul {
    flex-wrap: wrap;
  }
}
  /* ======================
   SERVICE CARDS NEW STYLE
   ====================== */

.services-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #0f2347;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: 0.25s;
    cursor: pointer;
}

.service-card:hover {
    background: #153269;
    transform: translateY(-4px);
}

.service-card img {
    width: 60px;
    margin-bottom: 1rem;
}

.service-card span {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Mobile – 1 card per row */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: #0c2340; /* albastru închis elegant */
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-6px);
    background: #12355b;
    border-color: rgba(255, 255, 255, 0.3);
/* iconițe – dimensiune fixă */
  }
.service-card img {
    width: 150px !important;
    height: 150px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 12px auto !important;
}
}

/* text sub iconiță */
.service-card span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: white;
  /* SERVICES – NEW DESIGN */
.services-section {
    margin-top: 40px;
}

.services-section .section-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-card {
    background: #0c2340;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-6px);
    background: #12355b;
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card img {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 12px auto;
}

.service-card span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-top: 8px;
}
  /* DIAGNOSE SECTION */
.diagnose-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.diagnose-card {
    background: #12355b;
    border-radius: 14px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.diagnose-icon img {
    width: 120px;
    height: auto;
    display: block;
}

.diagnose-text h2 {
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.diagnose-text p {
    color: white;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}
  
  
    margin-top: 4px;
}

/* ABOUT US SECTION */
.about-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.about-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;         
}
/* BOOKING SECTION */
.booking-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.booking-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.booking-form {
    max-width: 600px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    background: #c0392b; /* roșu premium */
    color: white;
    border: none;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-submit:hover {
    background: #992e23;
}
/* CONTACT SECTION */
.contact-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.contact-item {
    background: #0c2340;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-item h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-item p, .contact-item a {
    color: #d0d8e0;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.4;
}

.contact-item a:hover {
    color: white;
}
/* ÅBNINGSTIDER */
.hours-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.hours-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hours-box {
    background: #0c2340;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 350px;
}

.hours-box p {
    color: #d0d8e0;
    font-size: 18px;
    margin: 8px 0;
}

.hours-box strong {
    color: white;
}
/* Wrapper hartă + Find os */
.hours-map-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 20px;
}

/* Harta (stânga) */
.map-card {
    flex: 0 0 500px;
    height: 300px;
    background-image: url("icons/map-pattern.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* Find os (dreapta) */
.findus-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    width: 240px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
    text-align: center;
}

/* Titlu Find os */
.findus-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
}

/* Buton */
.map-btn {
    background-color: #ffffff;
    color: #003366;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: 0.25s;
}

.map-btn:hover {
    background-color: #e6e6e6;
}
/* FOOTER MODERN */
.footer {
    background-color: #07182c;
    padding: 50px 20px 20px;
    margin-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-column h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-column p {
    color: #d0d8e0;
    font-size: 16px;
    margin: 6px 0;
}

.footer-column a {
    color: #ff5252;
    text-decoration: none;
    font-weight: 600;
}

.footer-column a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.footer-bottom p {
    color: #8ea0b0;
    font-size: 14px;
}
/* FORMULAR BOOKING MODERN */
.booking-form {
    margin-top: 20px;
}

.booking-form input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #12355b;
    background: #08223c;
    color: #fff;
    outline: none;
    transition: 0.2s ease;
}

.booking-form input:focus {
    border-color: #4da3ff;
    background: #0b2e4d;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn-submit {
    background: #d63c33;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    color: white;
    width: 100%;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #b8322b;
}

/* SUCCES POPUP */
.form-success {
    display: none;
    background: #12355b;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    animation: fadeIn 0.4s ease;
    border-left: 4px solid #4da3ff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* DIAGNOSE SECTION */
.diagnosis-section {
    margin: 70px auto;
}

.diagnosis-box {
    background: linear-gradient(145deg, #0c2340, #0a1b33);
    padding: 35px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(255,255,255,0.08);
}

.diagnosis-icon img {
    width: 110px;
    height: auto;
    filter: brightness(0) invert(1);
}

.diagnosis-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.diagnosis-text {
    color: #d6e3f5;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 15px;
    max-width: 420px;
}

.diagnosis-btn {
    background: #d63c33;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.diagnosis-btn:hover {
    background: #b8322b;
}

/* MOBILE */
@media (max-width: 768px) {
    .diagnosis-box {
        flex-direction: column;
        text-align: center;
    }

    .diagnosis-icon img {
        width: 85px;
    }

    .diagnosis-text {
        max-width: none;
    }
}
.diagnose-card {
    background: #0c2340; /* albastru închis elegant */
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    margin-top: 40px;
}
.diagnose-card img {
    width: 120px;
    height: auto;
    border-radius: 12px;
}
.diagnose-card .diag-text {
    color: white;
}
.diagnose-card h2 {
    margin-bottom: 10px;
    color: white;
    font-size: 26px;
    font-weight: 700;
}
/* --- FOOTER --- */

.footer {
    background: #071a2f;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p,
.footer-col a {
    color: #c8d4e0;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ff4d4d;
    transition: 0.3s;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8fa2b5;
    font-size: 14px;
}
/* ===== HEADER CLEAN MODERN ===== */

.header {
    width: 100%;
    padding: 18px 0;
    background: #041E3A; /* aceeași culoare ca site-ul */
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 55px;
    width: auto;
}

/* MENIU */
.header-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.header-nav a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}

.header-nav a:hover {
    color: #ff4d4d;
}

/* LIMBI */
.header-lang button {
    background: transparent;
    border: 1px solid #ffffff55;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    margin-left: 6px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.header-lang button:hover {
    background: #ffffff20;
}
/* ==========================
   HEADER VARIANTA B
========================== */

.header {
    width: 100%;
    background: #062446; /* navy dark */
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header-logo {
    height: 55px;
    width: auto;
}

/* MENU */
.header-nav {
    display: flex;
    gap: 35px;
}

.header-nav a {
    color: white;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
}

.header-nav a:hover {
    color: #ff4d4d;
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LANGUAGE BUTTONS */
.lang-switch button {
    padding: 5px 10px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
}

.lang-switch button:hover {
    background: #ffffff22;
}

/* BOOK BUTTON */
.header-book-btn {
    background: #e63946;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.header-book-btn:hover {
    background: #c62839;
}/* --- MAP CARD --- */
.map-card {
    width: 500px;
    height: 300px;
    background: url("icons/map-pattern.png") center/cover no-repeat;
    border-radius: 12px;
    position: relative;
    margin: 20px 0;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

/* --- MAP PIN ICON --- */
.map-icon {
    width: 70px;
    height: 70px;
    background: url("icons/pin.png") center/contain no-repeat;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
}
/* Wrapper pentru hartă + cardul Find os */
.hours-map-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

/* Cardul Find os */
.findus-card {
    background: #0e203d;
    padding: 20px;
    border-radius: 12px;
    width: 220px;
    height: 140px;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.findus-card h3 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.map-btn {
    background-color: #ffffff;
    color: #003366;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.map-btn:hover {
    background-color: #e6e6e6;
}

/* Responsive pentru telefon */
@media (max-width: 800px) {
    .hours-map-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .findus-card {
        width: 100%;
        max-width: 300px;
    }
}
.booking-section {
    padding: 60px 0;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

#formStatus {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #ffffff;
}
/* BOOKING SECTION */
.booking-section {
    margin-top: 40px;
}

.booking-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full {
    flex: 2;
}

.form-group label {
    margin-bottom: 6px;
    color: #fff;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #1e3957;
    background: #0e203d;
    color: #fff;
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

@media (max-width: 900px) {
    .form-row {
        flex-direction: column;
    }
}