* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* NAVBAR */
.sia-navbar {
  width: 100%;
  background-color: #0B1E5B;   /* bleumarin */
  border-bottom: 3px solid #FFC400; /* galben auto */
}

/* CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 30px;
  display: flex;
  justify-content: center; /* centru real */
}

/* MENIU */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

/* ITEM */
.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* ICON */
.icon {
  font-size: 18px;
}

/* HOVER */
.nav-item:hover {
  color: #FFC400;
}

/* UNDERLINE */
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background-color: #FFC400;
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}




/* Container formular */
.contact-container {
  max-width: 600px;
  margin: 50px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-top: 6px solid #FFC400; /* accent sus */
}

/* Titlu formular */
h2 {
  text-align: center;
  color: #0B1E5B;
  margin-bottom: 25px;
}

/* Label câmpuri */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #0B1E5B;
}

/* Input-uri și textarea */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
  transition: border 0.3s;
}

/* Focus câmpuri */
input:focus,
select:focus,
textarea:focus {
  border-color: #FFC400;
  outline: none;
}

/* Textarea resize */
textarea {
  resize: vertical;
  min-height: 100px;
}

/* Select cursor */
select {
  cursor: pointer;
}

/* Buton trimite */
button {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #0B1E5B;
  color: #FFC400;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover buton */
button:hover {
  background-color: #FFC400;
  color: #0B1E5B;
}

/* Hamburger styling */
.hamburger {
  display: none; /* ascuns pe desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #333; /* sau culoarea textului tău */
}

/* Ascuns pe desktop, vizibil pe mobil */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger .line {
  width: 30px;
  height: 3px;
  background-color: #f8e008; /* culoare vizibilă */
}

/* Mobile */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #08035a;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }
}

body {
  font-family:  "Iceberg", sans-serif;
  margin: 0;
  padding: 0;

    background: url('./Pinterest\ Profile\ Image.png') no-repeat center center fixed;
  background-size: cover;       /* umple ecranul fără deformare */
  background-attachment: fixed; /* rămâne fix când scroll-ezi */
  margin: 0;
  padding: 0;
  
  color: #0B1E5B;               /* text vizibil pe fundal */
}


/* Overlay pentru transparență */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Alb semi-transparent pentru lizibilitate */
  background: rgba(255, 255, 255, 0.75);

  z-index: -1;
}

/* Hero content centrat pe pagină */
.hero-content {
  position: relative;      /* peste overlay */
  z-index: 1;              /* textul să fie deasupra overlay-ului */
  max-width: 900px;        /* textul să nu fie prea întins pe ecrane mari */
  margin: auto;            /* centrare verticală și orizontală */
  padding: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #03103b;          /* culoarea principală a textului */
}


.recovery-icon {
  position: fixed;       
  bottom: 40px;          
  right: 40px;           
  width: 100px;          
  height: 100px;
  z-index: 1000;         
  cursor: pointer;
  animation: bounce 1s infinite; /* animație bounce continuă */
}

.recovery-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s;
}

.recovery-icon:hover img {
  transform: scale(1.2); /* zoom la hover */
}

/* Animație bounce / pulse */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* iconița sare 10px */
  }
}

.tyres-text {
  max-width: 900px;
  margin: 120px auto 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.tyres-text h2 {
  color: #0B1E5B;
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 700;
}

.tyres-text p {
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.tyres-text strong {
  color: #0B1E5B;
  font-weight: 700;
}
.car-tyres,
.truck-tyres {
  display: none; /* ascuns implicit */
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Checkbox/Radio CSS trick cu :checked + selector */
input[type="radio"][value="car"]:checked ~ .car-tyres {
  display: block;
}

input[type="radio"][value="truck"]:checked ~ .truck-tyres {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .tyres-text {
    margin: 100px 16px 60px;
    padding: 24px;
  }

  .tyres-text h2 {
    font-size: 24px;
  }

  .tyres-text p {
    font-size: 16px;
  }
}
.tyre-form {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tyre-form h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 800;
}

.tyre-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tyre-form label {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 14px;
}

.tyre-form input,
.tyre-form select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.tyre-form button {
  margin-top: 15px;
  padding: 12px;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.tyre-form button:hover {
  background: #333;
}


.tyre-cards {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.tyre-cards h2 {
  color: #0B1E5B;
  margin-bottom: 20px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Passenger Car Tyres – same layout as Truck Tyres */
/* ----------------- FORMULAR ----------------- */
.tyre-form {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tyre-form h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 800;
  color: #0B1E5B;
}

.tyre-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tyre-form label {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
}

.tyre-form input,
.tyre-form select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.tyre-form input[type="radio"] {
  width: auto;
  margin-right: 8px;
}

.tyre-form button {
  margin-top: 15px;
  padding: 12px;
  background: #0B1E5B;
  color: #FFC400;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tyre-form button:hover {
  background: #FFC400;
  color: #0B1E5B;
}

/* ----------------- SECȚIUNI ASCUNSE ----------------- */
.car-tyres,
.truck-tyres {
  display: none;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 12px;
  margin-bottom: 20px;
  background: #f9f9f9;
}

/* CSS pentru a afișa secțiunea corectă în funcție de radio selectat */
input[type="radio"][value="car"]:checked ~ .car-tyres {
  display: block;
}

input[type="radio"][value="truck"]:checked ~ .truck-tyres {
  display: block;
}

/* ----------------- CARDURI ANVELOPE (mașini și tiruri) ----------------- */
.tyre-cards, .truck-tyres-section {
  padding: 60px 20px;
  text-align: center;
  color: #0B1E5B;
}

.tyre-cards h2, .truck-tyres-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.cards-container, .truck-tyres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
}

.tyre-card, .tyre-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 220px;
}

.tyre-card img, .tyre-item img {
  max-width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.tyre-card h3, .tyre-item p {
  font-weight: bold;
  color: #0B1E5B;
}

.tyre-card:hover, .tyre-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ----------------- RESPONSIVE ----------------- */
@media (max-width: 768px) {
  .tyre-form {
    margin: 50px 16px;
    padding: 20px;
  }

  .tyre-form h2,
  .tyre-cards h2,
  .truck-tyres-section h2 {
    font-size: 24px;
  }

  .tyre-form label {
    font-size: 13px;
  }

  .tyre-form button {
    font-size: 14px;
    padding: 10px;
  }
}
.information {
 
  text-align: center;


}
.information-color {
  color: #0B1E5B;
}
.reviews-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
}

.reviews-btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  background: #0B1E5B;
  color: #FFC400;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.reviews-btn:hover {
  background: #FFC400;
  color: #0B1E5B;
}


.reviews {
  max-width: 1200px;
  margin: 90px auto;
  padding: 0 20px;
  font-family:  Iceberg , sans-serif;
}

.reviews h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 60px;
  color: #0B1E5B;
  font-weight: 600;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  border: 2px solid #c5990a;   /* border discret */
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #042053;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.review-header strong {
  display: block;
  font-size: 15px;
  color: #0B1E5B;
}

.stars {
  font-size: 14px;
  color: #FFC400;
  letter-spacing: 1px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  border-color: #0B1E5B;
}

.brands-footer {
  background: #f7f7f7;
  padding: 50px 20px 30px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.brands-title {
  font-size: 16px;
  font-weight: 600;
  color: #0B1E5B;
  margin-bottom: 30px;
}

.brands-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.brands-logos img {
  max-height: 45px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brands-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.brands-disclaimer {
  font-size: 12px;
  color: #777;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-us-section {
  padding: 80px 20px;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: Iceberg, sans-serif;
  color: #0B1E5B;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9); /* fundal alb semi-transparent */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  gap: 40px;
}

.about-us-text {
  flex: 1 1 600px;
  text-align: center;
}

.about-us-text h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #0B1E5B;
}

.about-us-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-us-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-us-image img {
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Pozele stânga/dreapta */
.about-us-image.left {
  order: 1;
}

.about-us-text {
  order: 2;
}

.about-us-image.right {
  order: 3;
}

/* Responsive – pe mobil textul apare deasupra sau sub poze */
@media (max-width: 992px) {
  .about-us-container {
    flex-direction: column;
    padding: 20px;
  }
  .about-us-text {
    order: 2;
    text-align: center;
  }
  .about-us-image.left,
  .about-us-image.right {
    order: 1;
    margin-bottom: 20px;
  }
}

.services-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 2.5rem;
  color: #0b1e5b;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 1.1rem;
  color: #5a6b82;
  max-width: 600px;
  margin: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f59e0b, #0b1e5b);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #f59e0b;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0b1e5b;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.cta {
  text-align: center;
  margin-top: 60px;
}

.cta a {
  display: inline-block;
  background-color: #0b1e5b;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta a:hover {
  background-color: #091742;
}
/* Notice text */
.notice {
  text-align: center;
  background-color: #0b1e5b; /* light blue background */
  color:#FFC400;
  padding: 15px 25px;
  border-radius: 12px;
  margin: 40px auto 20px auto;
  max-width: 800px;
  font-size: 1rem;
  line-height: 1.5;
}

.notice .terms {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
/* Modal overlay */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

/* Modal content box */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 25px;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: left;
}

/* Close button */
.modal-content .close {
  color: #0b1e5b;
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
/* Pictograma Tips & Tricks */
.tips-icon-section {
  text-align: center;
  margin: 40px 0;
}

.tips-card {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.tips-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.tips-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.tips-text {
  font-size: 1.2rem;
  font-weight: 600;
  color:#FFC400;
}

/* Modal */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 25px;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: left;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-content .close {
  color: #0b1e5b;
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.modal-content h3 {
  color: #0B1E5B;
  margin-bottom: 15px;
}

.modal-content h4 {
  margin-top: 20px;
  color: #1E3A8A;
}

.modal-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.modal-content li {
  margin-bottom: 10px;
  line-height: 1.5;
}