/* ======== VARIABILE & RESET ======== */
:root {
  --gold: #C5A47E; 
  --dark-bg: #111111;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
}

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

/* ======== FUNDAL FIX (STIL SHY AVIATION) ======== */
body {
  font-family: var(--font-body);
  color: white;
  line-height: 1.6;
  background-color: var(--dark-bg);
  overflow-x: hidden;

  /* AICI ESTE MAGIA: */
  background-image: url('input_file_10.jpeg'); /* Poza ta nouă */
  background-size: cover;       /* Acoperă tot ecranul */
  background-position: center;  /* Centrează imaginea */
  background-attachment: fixed; /* IMAGINEA RĂMÂNE FIXĂ LA SCROLL */
  background-repeat: no-repeat;
}

/* Eliminăm pseudo-elementele vechi dacă existau (body::before, body::after) */
body::before, body::after {
    display: none;
}

/* ======== HEADER NOU (Centrat) ======== */
.site-header {
  position: fixed;
  top: 0; 
  width: 100%; 
  height: 90px;
  display: flex; 
  align-items: center; 
  justify-content: space-between; /* Împarte stânga/centru/dreapta */
  padding: 0 40px;
  z-index: 1000;
  transition: 0.4s ease;
  background: rgba(15, 25, 40, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-header.scrolled {
  height: 80px;
  background: rgba(10, 15, 25, 0.95);
}

/* 1. Stânga: Buton Meniu */
.nav-toggle {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 6px;
    z-index: 1001;
}
.nav-toggle .line {
    width: 30px; height: 2px; background-color: white; transition: 0.3s;
}
/* Efect hover pe linii */
.nav-toggle:hover .line:nth-child(2) { transform: translateX(5px); }

/* 2. Centru: Logo (Absolut Centrat) */
.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
/* Logo-ul din Bara de Meniu (Header) */
.logo-img { 
  height: 60px; 
  width: auto; 
  
  /* STARE INIȚIALĂ: Invizibil */
  opacity: 0; 
  transform: translateY(-10px); /* Ușor ridicat */
  transition: all 0.4s ease; /* Tranziție lină */
}

/* Când dăm SCROLL (header-ul primește clasa .scrolled) -> Logo-ul Apare */
.site-header.scrolled .logo-img { 
  opacity: 1; /* Devine vizibil */
  transform: translateY(0); /* Revine la poziția normală */
  height: 50px; /* Se micșorează puțin */
}

/* 3. Dreapta: Limba */
.lang-btn {
    background: transparent; border: 1px solid rgba(255,255,255,0.2);
    color: white; padding: 8px 15px; border-radius: 20px;
    cursor: pointer; font-family: var(--font-head); font-size: 13px;
    display: flex; align-items: center; gap: 8px; transition: 0.3s;
}
.lang-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }


/* ======== MENIUL LATERAL (DRAWER) ======== */
/* Fundalul negru semi-transparent care acoperă site-ul */
.side-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(3px);
    z-index: 1005; opacity: 0; visibility: hidden; transition: 0.4s;
}
.side-overlay.active { opacity: 1; visibility: visible; }

/* Sertarul propriu-zis */
.side-menu-drawer {
    position: fixed; top: 0; left: 0;
    width: 350px; height: 100vh;
    background: #0f151e; /* Albastru foarte închis */
    z-index: 1010;
    transform: translateX(-100%); /* Ascuns în stânga */
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 5px 0 30px rgba(0,0,0,0.5);
    padding: 40px;
    display: flex; flex-direction: column;
}

.side-menu-drawer.active {
    transform: translateX(0); /* Intră în ecran */
}

.close-menu {
    align-self: flex-end;
    background: none; border: none; color: white;
    font-size: 30px; cursor: pointer; margin-bottom: 20px;
}

.side-menu-logo { width: 100px; margin-bottom: 50px; opacity: 0.8; }

.side-links { list-style: none; padding: 0; }
.side-links li { margin-bottom: 25px; }
.side-links a {
    color: white; text-decoration: none;
    font-family: var(--font-head); font-size: 20px; font-weight: 500;
    letter-spacing: 2px; transition: 0.3s; position: relative;
}
.side-links a:hover { color: var(--gold); padding-left: 10px; }

.side-footer { margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.side-footer p { color: #888; font-size: 12px; margin-bottom: 5px; }
.phone-link { color: var(--gold); text-decoration: none; font-size: 18px; }

/* Responsive Mobil */
@media (max-width: 600px) {
    .side-menu-drawer { width: 100%; } /* Pe mobil ocupă tot ecranul */
    .site-header { padding: 0 20px; }
}





/* ======== HERO SECTION ======== */
/* ======== HERO SECTION ======== */
.hero {
  /* Ocupă tot ecranul */
  height: 100vh;
  
  /* Centrează conținutul */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  /* Spațiu sus */
  padding-top: 80px; 

  /* AICI E SCHIMBAREA: Filtrul peste nori */
  /* Culoare de bază semi-transparentă (albastru-gri) */
  background-color: rgba(20, 35, 50, 0.3); 
  
  /* Gradient de sus (mai deschis) în jos (mai închis) pentru contrast la formular */
  background-image: linear-gradient(to bottom, rgba(20,35,50,0.2), rgba(20,35,50,0.6));
  
  /* IMPORTANT: MODIFICAREA PENTRU LISTĂ */
  position: relative;
  z-index: 100 !important; /* Aici era 1. Am pus 100 ca să stea PESTE secțiunile de dedesubt */
  overflow: visible !important; /* Permite listei să iasă din cutie */
}

.hero h1 {
  font-family: 'Montserrat', sans-serif; /* Fontul elegant */
  font-size: 3.5rem;   /* Mărime mare */
  font-weight: 400;    /* IMPORTANT: 400 înseamnă subțire (nu Bold/Gros) */
  color: #C5A47E;      /* Culoarea AURIU (exact ca la Shy Aviation) */
  
  text-transform: uppercase; /* Litere mari */
  letter-spacing: 8px; /* Spațierea mare între litere (aspectul de lux) */
  margin-bottom: 20px;
  line-height: 1.2;
  
  /* O umbră foarte fină, ca să se vadă peste nori, dar fără să fie neagră urâtă */
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-family: 'Lato', sans-serif;
  font-size: 13px;      /* Un pic mai mic pentru finețe */
  color: #ffffff;       /* Alb */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;  /* Spațiere mare și aici */
  margin-bottom: 60px;  /* Spațiu până la formular */
  
  /* Umbră fină */
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Logo-ul Mare din mijlocul ecranului */
/* LOGO MARE CENTRAL */
.hero-large-logo {
    width: 400px;  /* Mult mai mare (era 150px) */
    height: auto;
    margin: 0 auto 10px auto; /* Centrat + spațiu mic sub el */
    display: block;
    
    /* Efecte de tranziție */
    transition: opacity 0.1s ease-out, transform 0.1s ease-out;
    z-index: 2;
    position: relative;
}

/* Pe mobil îl facem puțin mai mic să nu ocupe tot ecranul */
@media (max-width: 768px) {
    .hero-large-logo {
        width: 200px;
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}



/* ======== FORMULAR HERO (DESIGN CORECTAT) ======== */

.form-wrapper {
  /* Fundal închis semi-transparent (Stil Shy Aviation) */
  background: rgba(15, 20, 25, 0.9); 
  backdrop-filter: blur(10px); /* Efect de sticlă */
  
  padding: 15px 25px;
  border-radius: 6px; 
  border: 1px solid rgba(255,255,255,0.15);
  
  display: inline-block;
  width: 95%; /* Mai lat pentru a încăpea 5 elemente */
  max-width: 1300px;
  margin-top: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);

  overflow: visible !important; 
    z-index: 1000000000; /* O aducem în față de tot */
    position: relative;
}

.booking-bar {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 15px; /* Spațiu între grupuri */
  width: 100%;
}

/* Stil pentru fiecare grup (Input + Label) */
.form-group {
  display: flex; 
  flex-direction: column;
  text-align: left;
  position: relative; /* Pentru autocomplete */
}

/* Câmpurile de text mari (Plecare, Destinație) */
.form-group:not(.small) {
  flex: 2; /* Ocupă spațiu dublu față de cele mici */
  min-width: 150px;
}

/* Câmpurile mici (Data, Pasageri, Bagaje) */
.form-group.small {
  flex: 1; 
  min-width: 80px;
}

/* Etichetele (PLECARE, DATA, etc.) */
.form-group label {
  font-size: 10px; 
  color: var(--gold); /* Auriu */
  font-weight: 700; 
  letter-spacing: 1.5px; 
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Input-urile propriu-zise */
.form-group input {
  background: transparent !important; /* FORȚĂM transparența */
  border: none; 
  color: white; /* Textul pe care îl scrii să fie alb */
  font-family: 'Lato', sans-serif;
  font-size: 15px; 
  font-weight: 600; 
  width: 100%; 
  outline: none;
  padding: 0;
}


.form-group input::placeholder {
  color: #666;
  font-weight: 400;
}

/* Linia verticală separatoare */
.separator {
  width: 1px; 
  height: 35px; 
  background: rgba(255,255,255,0.15);
  align-self: center;
}

/* Butonul CERE OFERTA */
.search-btn {
  background: var(--gold); 
  color: black; 
  border: none; 
  padding: 0 35px; /* Lățime buton */
  height: 50px;    /* Înălțime buton */
  
  font-family: var(--font-head); 
  font-weight: 700; 
  font-size: 13px;
  letter-spacing: 1px; 
  text-transform: uppercase;
  
  border-radius: 4px;
  cursor: pointer; 
  transition: 0.3s;
  white-space: nowrap; /* Să nu se rupă textul */
  margin-left: 10px;
}

.search-btn:hover { 
  background: white; 
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* RESPONSIVE: Pe mobil le punem una sub alta */
@media (max-width: 1100px) {
  .booking-bar {
    flex-wrap: wrap;
  }
  
  .separator { display: none; } /* Ascundem liniile pe mobil */
  
  .form-group, .form-group:not(.small), .form-group.small {
    flex: 100%; /* Pe tot rândul */
    min-width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  
  .search-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}

/* ======== AIRCRAFT SHOWCASE (SLIDER) ======== */
.aircraft-showcase {
    position: relative; padding: 80px 5%;
    background-color: #222c37; /* Albastru închis (stil Shy) */
    color: white; text-align: center;
}

.showcase-header { margin-bottom: 50px; }
.gold-subtitle {
    color: var(--gold); font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; display: block; margin-bottom: 10px; font-weight: 600;
}
.aircraft-showcase h2 {
    font-family: var(--font-head); font-size: 36px; font-weight: 400; letter-spacing: 1px;
}

/* TABS */
.fleet-tabs-container { max-width: 1000px; margin: 0 auto 40px; position: relative; }
.fleet-tabs { display: flex; justify-content: center; gap: 40px; margin-bottom: 15px; }
.tab-btn {
    background: none; border: none; color: #8faebb;
    font-family: var(--font-head); font-size: 15px; font-weight: 700;
    cursor: pointer; padding: 10px 0; position: relative; transition: 0.3s;
}
.tab-btn:hover { color: white; }
.tabs-line { width: 100%; height: 1px; background: rgba(255,255,255,0.1); }

/* Tab Activ */
.tab-btn.active { color: var(--gold); }
.tab-btn.active::before {
    content: ''; position: absolute; top: -15px; left: 0;
    width: 100%; height: 4px; background: var(--gold);
}

.category-description {
    color: var(--gold); max-width: 700px; margin: 0 auto 50px;
    font-size: 15px; line-height: 1.5;
}

/* SLIDER CONTENT */
.slider-container {
    display: flex; align-items: center; justify-content: center;
    gap: 30px; max-width: 1300px; margin: 0 auto;
}
.slider-arrow {
    background: transparent; border: none; color: rgba(255,255,255,0.3);
    font-size: 40px; cursor: pointer; transition: 0.3s;
}
.slider-arrow:hover { color: var(--gold); }

.slider-content {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; width: 100%;
}
.plane-images { display: flex; gap: 10px; }
.plane-images img {
    width: 350px; height: 220px; object-fit: cover; border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.plane-info { text-align: left; min-width: 250px; }
.plane-info h3 {
    font-family: var(--font-head); font-size: 28px; font-weight: 700; margin-bottom: 20px;
}
.specs-list { list-style: none; }
.specs-list li {
    font-size: 15px; margin-bottom: 12px; color: #d0d0d0; display: flex; align-items: center;
}
.specs-list li::before {
    content: '•'; color: white; font-size: 20px; margin-right: 10px; line-height: 0;
}


.slider-dots { margin-top: 30px; display: flex; justify-content: center; gap: 10px; }
.dot {
    width: 10px; height: 10px; background: rgba(255,255,255,0.2); border-radius: 50%;
}
.dot.active { background: var(--gold); }

.showcase-cta { margin-top: 50px; text-align: center; }
.btn-outline {
    border: 1px solid rgba(255,255,255,0.3); color: white; padding: 15px 40px;
    text-decoration: none; font-family: var(--font-head); font-size: 12px; letter-spacing: 2px;
    transition: 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ANIMAȚIE SLIDER */
.slider-content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Când adăugăm clasa asta cu JS, conținutul devine invizibil */
.slider-content.hidden {
    opacity: 0;
    transform: translateY(20px); /* Coboară puțin cât e invizibil */
}

/* ======== SERVICES SECTION ======== */
.services-section { padding: 100px 5%; background: #111; }
.section-header { text-align: center; margin-bottom: 60px; }
.subtitle {
  color: var(--gold); font-size: 12px; letter-spacing: 3px;
  font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 10px;
}
.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 20px auto 0; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto;
}
.service-card { background: #1a1a1a; transition: 0.4s; }
.service-card:hover { transform: translateY(-5px); }
.img-holder { height: 250px; overflow: hidden; }
.img-holder img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.service-card:hover .img-holder img { transform: scale(1.1); }
.service-content { padding: 30px; text-align: left; border-bottom: 2px solid transparent; transition: 0.3s; }
.service-card:hover .service-content { border-bottom-color: var(--gold); }
.service-content h3 { font-family: var(--font-head); font-size: 18px; margin-bottom: 10px; }
.read-more { color: var(--gold); text-decoration: none; font-size: 12px; font-weight: 700; text-transform: uppercase; }

/* RESPONSIVE */
@media (max-width: 1000px) {
    .booking-bar { flex-wrap: wrap; }
    .form-group { flex: 50%; min-width: 45%; margin-bottom: 15px; }
    .separator { display: none; }
    .search-btn { width: 100%; }
    .slider-content { flex-direction: column; }
    .plane-images { margin-bottom: 20px; }
    .plane-images img { width: 100%; height: auto; }
    .fleet-tabs { flex-wrap: wrap; gap: 15px; }
    .services-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: block; }
    .main-nav { display: none; }
    .main-nav.active {
        display: flex; flex-direction: column; position: absolute;
        top: 90px; left: 0; width: 100%; background: #000; padding: 20px;
    }
}

/* ======== WHY SECTION (DESIGN SHY AVIATION) ======== */
.why-section {
    position: relative;
    padding: 100px 5%;
    /* Gradient albastru-gri peste imaginea de fundal existentă */
    background: linear-gradient(rgba(40, 55, 75, 0.85), rgba(40, 55, 75, 0.95));
    color: white;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Grid-ul de 4 coloane */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 50px auto;
}

/* Cardul individual */
.why-card {
    border: 1px solid var(--gold); /* CHENARUL AURIU */
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02); /* Foarte ușor transparent */
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Iconițele SVG subțiri */
.why-icon {
    margin-bottom: 25px;
}

.why-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--gold); /* Culoarea aurie */
    stroke-width: 0.8; /* Grosimea liniei (foarte fină, ca în poză) */
}

/* Titlul Cardului */
.why-card h3 {
    font-family: var(--font-head);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}

/* Textul Cardului */
.why-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.6;
    font-weight: 300;
}

.why-cta {
    margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 pe rând pe tablete */
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr; /* 1 pe rând pe mobil */
    }
    .why-section {
        padding: 60px 20px;
    }
}

/* ======== SAFETY & CONTACT SECTIONS ======== */

/* Stil comun pentru fundal (Albastru translucid peste nori) */
.safety-section, .contact-section {
    padding: 100px 5%;
    text-align: center;
    /* Același gradient albastru-gri ca în poză, semi-transparent */
    background: linear-gradient(rgba(40, 60, 85, 0.9), rgba(40, 60, 85, 0.9));
    color: white;
    position: relative;
}

/* --- Safety Section Specifics --- */
.safety-content {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
}

.safety-content p {
    margin-bottom: 20px;
}

/* --- Contact Section Specifics --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.contact-card {
    border: 1px solid var(--gold); /* Chenar Auriu */
    padding: 60px 20px;
    /* Efect de sticlă foarte subtil */
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    transition: transform 0.3s, background 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.contact-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--gold);
    stroke-width: 0.8; /* Linii foarte fine */
    margin-bottom: 25px;
}

.contact-card h3 {
    font-family: var(--font-head);
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.contact-card p {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.contact-card .small-text {
    font-size: 13px;
    color: #a0a0a0;
    margin-top: 10px;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Una sub alta pe mobil */
        gap: 20px;
    }
    .safety-content {
        padding: 0 20px;
    }
}

/* ======== FOOTER (SHY STYLE) ======== */
.site-footer {
    padding: 60px 5% 40px;
    /* Același fundal ca secțiunile anterioare pentru continuitate */
    background: linear-gradient(rgba(30, 45, 65, 0.95), rgba(30, 45, 65, 0.98));
    color: white;
    font-size: 14px;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* TOP SECTION */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
}
.footer-logo-img {
    width: 120px;
    height: auto;
    opacity: 0.9;
}

.footer-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}
.social-icons a {
    color: white;
    transition: 0.3s;
}
.social-icons a:hover {
    color: var(--gold);
}
.social-icons svg {
    width: 20px;
    height: 20px;
}

/* Footer Navigation Grid */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 coloane ca în poză */
    gap: 20px 40px;
    text-align: right;
}
.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: 0.3s;
}
.footer-nav a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* DIVIDERS */
.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--gold); /* Linia aurie */
    opacity: 0.5;
    margin: 0;
}

.footer-lifestyle {
    text-align: center;
    padding: 20px 0;
    color: #ccc;
}
.footer-lifestyle a {
    color: white;
    text-decoration: underline;
}

/* BOTTOM SECTION */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 13px;
    color: #aaa;
}

.legal-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 5px;
    transition: 0.3s;
}
.legal-links a:hover { color: white; }

/* Payment Badge (BitPay imitation) */
.payment-badge {
    display: flex;
    align-items: center;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 5px 10px;
    background: rgba(0,0,0,0.3);
}
.bitpay-text {
    font-weight: 700;
    color: white;
    margin-right: 10px;
    font-style: italic;
    letter-spacing: -1px;
    font-size: 16px;
}
.crypto-icons {
    display: flex;
    gap: 3px;
}
.c-icon {
    width: 18px; height: 18px;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-right {
        align-items: center;
        margin-top: 30px;
        width: 100%;
    }
    .footer-nav {
        grid-template-columns: repeat(2, 1fr); /* 2 coloane pe mobil */
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ======== SCROLL ANIMATIONS (SLIDE UP) ======== */

/* Starea inițială: invizibil și mai jos cu 60px */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease-out; /* Durata animației */
}

/* Când JS adaugă clasa 'active', elementul urcă și devine vizibil */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======== SECȚIUNI SEMI-TRANSPARENTE (GLASS EFFECT) ======== */

/* Aplicăm stilul comun tuturor secțiunilor de sub Hero */
.why-section, 
.aircraft-showcase, 
.services-section, 
.safety-section, 
.contact-section, 
.site-footer {
    /* Albastru foarte închis, dar cu transparență 85% (0.85) */
    background-color: rgba(25, 35, 45, 0.85); 
    
    /* Blur-ul face textul lizibil chiar dacă se văd norii în spate */
    backdrop-filter: blur(8px);
    
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255,255,255,0.05); /* Linie fină între secțiuni */
}

/* Ajustare specială pentru footer ca să fie o idee mai închis */
.site-footer {
    background-color: rgba(20, 30, 40, 0.92);
}

/* ======== AUTOCOMPLETE AEROPORTURI ======== */

/* Wrapper-ul ca să putem poziționa lista relativ la el */
.autocomplete-wrapper {
    position: relative;
}

/* Lista de sugestii (ascunsă implicit) */
/* Lista de sugestii (ascunsă implicit) */
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 999999 !important; /* Număr foarte mare */
    
    top: 100%; 
    left: 0;
    right: 0;
    
    background-color: #ffffff;
    max-height: 300px;
    overflow-y: auto; /* Doar lista are scroll interior */
    border-radius: 0 0 5px 5px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.7); /* Umbră puternică */
    display: none;
}

/* Elementele din listă */
.autocomplete-items div {
    padding: 12px 15px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    font-family: var(--font-body);
    font-size: 13px;
    color: #333;
    display: flex;
    flex-direction: column;
}

/* Hover pe elemente */
.autocomplete-items div:hover {
    background-color: #f1f1f1; /* Gri deschis la hover */
    border-left: 3px solid var(--gold); /* Accent auriu */
}

/* Codul aeroportului (ex: OTP) îngroșat */
.airport-code {
    font-weight: 800;
    color: #000;
    font-size: 14px;
    margin-right: 5px;
}

.airport-name {
    color: #666;
    font-size: 11px;
}

/* Afișăm lista când are conținut */
.autocomplete-items.show {
    display: block;
}

/* ==============================================
   ======== STILURI CURATE PENTRU POP-UP ========
   ============================================== */

/* 1. FUNDAL SI CONTAINER PRINCIPAL */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    
    display: none; /* Ascuns default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    width: 90%;
    max-width: 700px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

/* 2. HEADER (ALBASTRU - STIL SHY AVIATION) */
.modal-header {
    background: #151e2d; 
    padding: 25px;
    color: white;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    color: white; font-size: 28px; cursor: pointer;
    z-index: 10;
}

/* Vizualizare Rută (București .... Londra) */
.flight-route-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-head);
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
}

.route-line {
    flex: 1; display: flex; align-items: center; justify-content: center;
    margin: 0 15px; color: rgba(255,255,255,0.3);
}
.route-line .dot {
    width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
}
.route-line .line {
    letter-spacing: 3px; font-size: 12px; margin: 0 5px;
}

/* Bara cu detalii (Data, Pax, Bagaje) */
.flight-meta-bar {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}
.meta-item { font-size: 14px; color: #ccc; }
.meta-label { color: var(--gold); font-size: 10px; font-weight: 700; margin-right: 5px; }
.meta-icons { display: flex; gap: 15px; }
.meta-icons span { display: flex; align-items: center; gap: 5px; color: white; font-size: 14px; }
.meta-icons svg { width: 16px; height: 16px; stroke: var(--gold); }


/* 3. BODY (ALB - FORMULAR) */
.modal-body {
    padding: 30px;
    text-align: left;
    background: white;
}

.modal-title {
    color: #333; 
    font-family: var(--font-head); 
    margin-bottom: 20px; 
    font-size: 18px;
}

/* Input-uri */
.input-row {
    display: flex; gap: 15px; margin-bottom: 15px;
}
.input-row input, .input-row textarea {
    width: 100%; padding: 12px;
    border: 1px solid #ccc; border-radius: 4px;
    font-family: var(--font-body); font-size: 14px;
    color: #333; /* Text negru în input */
    background: #fff;
}
.input-row textarea { height: 80px; resize: none; }

.phone-group {
    width: 100%; display: flex; position: relative;
}
.phone-group input { padding-left: 40px; }
.flag-icon {
    position: absolute; left: 10px; top: 12px; font-size: 16px;
}

/* 4. PREFERINȚE CONTACT (WhatsApp / Email) */
.contact-preferences {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #eee;
}
.contact-preferences p {
    font-size: 13px; font-weight: 700; margin-bottom: 10px; color: #333;
}
.pref-options {
    display: flex; gap: 30px;
}

/* Checkbox Customizat */
.pref-checkbox {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; cursor: pointer; position: relative;
    color: #333; /* <--- AICI AM REPARAT CULOAREA (Era alb pe alb) */
    font-weight: 500;
}
.pref-checkbox input {
    position: absolute; opacity: 0; cursor: pointer;
}
.checkmark {
    height: 18px; width: 18px;
    background-color: #fff; border: 1px solid #ccc;
    display: flex; align-items: center; justify-content: center;
    border-radius: 3px; transition: 0.2s;
}
.pref-checkbox:hover input ~ .checkmark { background-color: #eee; }
.pref-checkbox input:checked ~ .checkmark {
    background-color: #151e2d; border-color: #151e2d;
}
/* Bifa mică albă */
.checkmark:after {
    content: ""; display: none;
    width: 5px; height: 10px;
    border: solid white; border-width: 0 2px 2px 0;
    transform: rotate(45deg); margin-bottom: 2px;
}
.pref-checkbox input:checked ~ .checkmark:after { display: block; }

/* Stil pentru Email Blocat (Obligatoriu) */
.pref-checkbox.disabled { cursor: default; opacity: 0.7; }
.checkmark.locked {
    background-color: #e0e0e0; border-color: #ccc; color: #555; font-size: 12px;
}
.pref-checkbox.disabled input:checked ~ .checkmark:after { display: none; } 

/* 5. FOOTER SI GDPR */
.gdpr-check {
    display: flex; gap: 10px; font-size: 12px; color: #666; margin: 20px 0; align-items: center;
}
.gdpr-check input { margin: 0; }

.modal-footer { text-align: center; margin-top: 20px; }

.submit-request-btn {
    width: auto; min-width: 200px; padding: 12px 40px; border-radius: 4px;
    background: #151e2d; color: white;
    border: none; font-weight: 700; cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-head);
    text-transform: uppercase; letter-spacing: 1px;
}
.submit-request-btn:hover {
    background: var(--gold); color: black;
}

/* Mobil */
@media (max-width: 600px) {
    .input-row { flex-direction: column; gap: 10px; }
    .pref-options { flex-direction: column; gap: 10px; }
}

/* ================================================== */
/* ======== OPTIMIZARE MOBIL (Responsive) ========== */
/* ================================================== */

@media (max-width: 900px) {

/* 1. HERO & LOGO - REPARAT */
    .hero {
        /* Schimbăm din height: 100vh în min-height */
        height: auto !important; 
        min-height: 100vh; 
        
        padding: 0 20px; 
        background-attachment: scroll; /* Fix pentru iPhone */
        
        /* Adăugăm spațiu sus și JOS ca să aibă loc butonul */
        padding-top: 120px; 
        padding-bottom: 80px; 
        
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Aliniem de sus */
    }

    .hero-large-logo {
        width: 160px !important;
        margin-top: 0 !important;
        margin-bottom: 15px !important;
    }

    .hero h1 {
        font-size: 22px;
        letter-spacing: 2px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    /* 2. FORMULARUL DE CĂUTARE */
    .form-wrapper {
        padding: 20px;
        margin-top: 20px;
    }

    .booking-bar {
        flex-direction: column; /* Punem elementele unul sub altul */
        gap: 0;
    }

    .form-group, 
    .form-group.small {
        width: 100%; /* Să ocupe toată lățimea */
        border-bottom: 1px solid rgba(255,255,255,0.15); /* Linie sub fiecare câmp */
        padding: 10px 0;
        margin-bottom: 5px;
        text-align: left;
    }

    .separator {
        display: none; /* Ascundem liniile verticale */
    }

    .search-btn {
        width: 100%; /* Buton cât tot ecranul */
        margin-top: 20px;
        height: 50px;
    }

    /* 3. MENIUL LATERAL */
    .side-menu-drawer {
        width: 100%; /* Pe mobil meniul ocupă tot ecranul */
    }
    .side-links a {
        font-size: 24px; /* Linkuri mai mari, ușor de apăsat */
    }

   /* 4. SECTIUNEA FLOTĂ - CATEGORII CU SCROLL */
    .fleet-tabs-container {
        width: 100%;
        overflow: hidden; /* Ascundem ce iese din container */
    }

    .fleet-tabs {
        display: flex;
        flex-wrap: nowrap; /* Le forțăm pe un singur rând */
        overflow-x: auto;  /* Activăm scroll orizontal */
        -webkit-overflow-scrolling: touch; /* Scroll fin pe iPhone */
        
        gap: 15px;
        padding-bottom: 15px; /* Loc pentru scrollbar (chiar dacă e invizibil) */
        justify-content: flex-start; /* Aliniere la stânga */
        
        /* Ascundem bara de scroll urâtă */
        scrollbar-width: none; /* Firefox */
    }
    
    .fleet-tabs::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .tab-btn {
        flex: 0 0 auto; /* Butonul nu se micșorează */
        white-space: nowrap; /* Textul nu trece pe rândul doi */
        font-size: 14px;
        padding: 8px 15px;
        margin: 0;
        border: 1px solid rgba(255,255,255,0.1); /* Chenar fin să se vadă limitele */
        border-radius: 20px;
    }
    
    .tab-btn.active {
        background: var(--gold);
        color: black;
        border-color: var(--gold);
    }
    /* Scoatem linia aurie de deasupra pe mobil, că folosim stil de buton */
    .tab-btn.active::before { display: none; }


    /* SLIDER AVIOANE - REPARAT */
    .slider-container {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .slider-content {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .plane-images {
        display: flex;
        flex-direction: column; /* Pozele una sub alta pe mobil */
        gap: 10px;
        width: 100%;
    }
    
    .plane-images img {
        width: 100%;
        height: 220px; /* Înălțime fixă ca să arate bine */
        object-fit: cover; /* Taie poza elegant să umple spațiul */
        border-radius: 8px;
    }

    .plane-info {
        width: 100%;
        text-align: center;
        padding: 0 10px;
    }
    
    .specs-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .specs-list li {
        font-size: 13px;
        margin-bottom: 5px;
    }

    /* Mutăm săgețile sub poze */
    .slider-arrow {
        position: absolute;
        top: 25%; /* Aproximativ la mijlocul pozei */
        z-index: 10;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
        width: 40px; 
        height: 40px;
        display: flex; align-items: center; justify-content: center;
    }
    #prevBtn { left: 0; }
    #nextBtn { right: 0; }


    /* 5. GRIDURI (Why, Services, Contact) - Le facem pe o coloană */
    .why-grid, 
    .services-grid, 
    .contact-grid {
        grid-template-columns: 1fr; /* O singură coloană */
        gap: 40px;
    }
    
    .why-card, .service-card, .contact-card {
        padding: 30px 20px;
    }

    /* 6. FOOTER */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-nav {
        grid-template-columns: 1fr 1fr; /* 2 coloane pe mobil */
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}


/* ==================================================
   ======== STILURI NOI: ABOUT US (Boxed Layout) ====
   ================================================== */

/* 1. Containerul Secțiunii - TRANSPARENT ca să se vadă norii */
.about-section-transparent {
    background-color: transparent; /* Norii se văd prin el */
    padding: 60px 5%; /* Spațiu sus/jos */
    position: relative;
    z-index: 2;
}

/* 2. Cutia Albă (Wrapper) - Aici stă conținutul */
.white-card-wrapper {
    background-color: #ffffff; /* Fundal ALB */
    max-width: 1300px;
    margin: 0 auto; /* Centrat */
    display: flex;
    align-items: stretch; /* Întinde elementele pe înălțime */
    box-shadow: 0 15px 40px rgba(0,0,0,0.3); /* Umbră ca să se separe de nori */
    overflow: hidden; /* Să nu iasă poza */
    /* Nu punem border-radius dacă vrem aspectul "sharp" ca la Shy, sau punem 4px */
}

/* Clasă pentru inversare (Text Dreapta - Poză Stânga) */
.flex-row.reverse {
    flex-direction: row-reverse;
}

/* 3. Conținutul Text (Jumătate din cutia albă) */
.white-content {
    flex: 1; 
    padding: 60px; /* Spațiu interior generos */
    text-align: left;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrează textul pe verticală */
}

.white-content .gold-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
}

.white-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #151e2d; /* Albastru Închis */
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.2;
}

.white-content p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* 4. Imaginile (Cealaltă jumătate) */
.white-image {
    flex: 1; 
    position: relative;
    min-height: 450px; /* Înălțime minimă */
}

.white-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 5. Butonul Închis */
.btn-dark {
    display: inline-block;
    margin-top: 10px;
    padding: 15px 35px;
    background-color: #151e2d;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
    align-self: flex-start; /* Butonul stă la stânga */
}

.btn-dark:hover {
    background-color: var(--gold);
    color: black;
}

/* RESPONSIVE (Mobil) */
@media (max-width: 900px) {
    .white-card-wrapper {
        flex-direction: column !important; /* Mereu una sub alta pe mobil */
    }
    
    .white-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .btn-dark {
        align-self: center; /* Buton centrat pe mobil */
    }
    
    .white-image {
        min-height: 250px;
    }
}

/* ======== SECȚIUNEA ALBASTRĂ (WITHOUT COMPROMISE) ======== */
.blue-section {
    background-color: #151e2d; /* Albastrul închis specific */
    padding: 100px 5%;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2; /* Peste nori */
}

.blue-section .gold-subtitle {
    display: block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blue-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.blue-section p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 300;
}

.blue-section .btn-outline {
    display: inline-block;
    margin-top: 40px;
    border: 1px solid white;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.blue-section .btn-outline:hover {
    background-color: white;
    color: #151e2d;
}

/* Responsive Blue Section */
@media (max-width: 900px) {
    .blue-section { padding: 60px 20px; }
    .blue-section h2 { font-size: 26px; }
    .blue-section p { font-size: 14px; }
}

/* ======== LISTA DIN SECȚIUNEA ALBASTRĂ ======== */
.blue-list {
    list-style: none; /* Scoatem punctele standard */
    padding: 0;
    max-width: 800px;
    margin: 30px auto; /* Centrată pe mijloc */
    text-align: left; /* Textul aliniat la stânga pentru citire ușoară */
}

.blue-list li {
    position: relative;
    padding-left: 30px; /* Loc pentru bulină */
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

/* Punctul (Bullet) Auriu Custom */
.blue-list li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    font-size: 25px;
    position: absolute;
    left: 0;
    top: -5px; /* Ajustare fină pe înălțime */
}

/* Ajustare pe mobil */
@media (max-width: 900px) {
    .blue-list { padding: 0 10px; }
}

html {
  scroll-behavior: smooth;
}


/* ==================================================
   ======== STILURI PAGINA CONTACT ==================
   ================================================== */

.contact-page-section {
    padding: 80px 5%;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

/* Folosim wrapper-ul alb existent, dar îi modificăm interiorul */
.contact-wrapper {
    display: flex;
    flex-direction: row;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* --- PARTEA STÂNGA (INFO) --- */
.contact-info-side {
    flex: 1;
    padding: 50px;
    background-color: #f4f4f4; /* Gri foarte deschis */
    border-right: 1px solid #ddd;
}

.contact-info-side h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #151e2d;
    margin-bottom: 15px;
}

.contact-info-side p {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.c-item .icon {
    font-size: 20px;
}

.c-item div strong {
    display: block;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
}

.c-item div a, .c-item div span {
    color: #333;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- PARTEA DREAPTA (FORMULAR) --- */
.contact-form-side {
    flex: 1.5; /* Mai lat */
    padding: 50px;
}

.contact-form-side h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #151e2d;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    background: #fcfcfc;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    background: white;
}

.input-group textarea {
    height: 150px;
    resize: vertical;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info-side, .contact-form-side {
        padding: 30px 20px;
    }
    .contact-info-side {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
}
/* ======== STILIZARE INPUT DATA (CALENDAR) ======== */

/* Containerul specific pentru dată */
.date-wrapper input[type="date"] {
    color: white;
    background: transparent;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    outline: none;
    cursor: pointer; /* Cursor de mână ca să știe că e clickabil */
    text-transform: uppercase;
}

/* Stilizează iconița de calendar (doar pentru Chrome/Safari/Edge) */
.date-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    /* Acest filtru transformă iconița neagră standard în AURIU (#C5A47E) */
    filter: invert(76%) sepia(13%) saturate(996%) hue-rotate(355deg) brightness(91%) contrast(88%);
    
    cursor: pointer;
    width: 20px;  /* Mai mare */
    height: 20px;
    opacity: 0.8;
    transition: 0.3s;
}

.date-wrapper input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1); /* Se mărește puțin la hover */
}

/* Ascundem textul "dd/mm/yyyy" când nu e selectat nimic (Opțional - pentru un look mai curat) */
/* Dacă vrei să se vadă mereu data, ignoră liniile de mai jos */
.date-wrapper input[type="date"]:invalid::-webkit-datetime-edit {
    color: #999; /* Culoare gri pentru placeholder */
}