/* --- STILURI GENERALE --- */
:root {
  --bg-color: #f4f4f4;
  --text-color: #333;
  --sidebar-bg: #fff;
  --border-color: #ddd;
  --item-bg: #fff;
  --item-text: #000;
}

body.dark-theme {
  --bg-color: #000;
  --text-color: #fff;
  --sidebar-bg: #000;
  --border-color: #222;
  --item-bg: #000;
  --item-text: #fff;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Inter", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* --- THEME TOGGLE --- */
.theme-toggle {
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-color);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.theme-toggle:hover {
  transform: rotate(15deg) scale(1.1);
}

/* --- STATS SECTION --- */
.stats-section {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 100px 50px;
  border-top: 1px solid var(--border-color);
  margin-left: 70px; /* Offset for sidebar */
  width: calc(100% - 70px);
}

.stats-section .container {
  display: flex;
  flex-direction: row; /* Ensure row on desktop */
  flex-wrap: nowrap; /* Prevent wrapping on large screens */
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.stat-item {
  text-align: center;
  margin: 20px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  display: block;
  color: var(--text-color);
  /* Gradient text effect matches hero vibe if desired, keeping it clean white for now */
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-top: 10px;
  display: block;
}

@media (max-width: 768px) {
  .stats-section {
    margin-left: 0;
    width: 100%;
    padding: 50px 20px;
    flex-direction: column;
  }

  .stat-number {
    font-size: 3rem;
  }
}

/* --- SIDEBAR (Desktop) --- */
/* Notă: .sidebar este definit în menu.css acum, dar păstrăm layout-ul general aici */

/* ... (restul stilurilor rămân în menu.css) ... */

.sidebar i {
  color: #fff;
  opacity: 0.7;
  cursor: pointer;
  transition: 0.3s;
}
.sidebar i:hover {
  opacity: 1;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* --- GALERIE (Desktop) --- */
.gallery-wrapper {
  display: flex; /* Orizontal pe desktop */
  height: 100vh;
  margin-left: 70px;
  width: calc(100% - 70px);
}

.gallery-item {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(0.7); /* Slightly brighter by default */
  overflow: hidden;
  cursor: pointer;
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.gallery-item:hover::after,
.gallery-item:first-child::after {
  opacity: 1;
}

/* Logică 33% / 16.5% */
.gallery-item:first-child {
  flex: 2;
  filter: brightness(1);
}
.gallery-wrapper:hover .gallery-item {
  flex: 1;
  filter: brightness(0.5);
}
.gallery-wrapper .gallery-item:hover {
  flex: 2;
  filter: brightness(1);
}

/* --- CONȚINUT TEXT --- */
.item-content {
  position: absolute;
  bottom: 60px;
  left: 40px;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  z-index: 10;
}

.gallery-item:first-child .item-content,
.gallery-item:hover .item-content {
  opacity: 1;
  transform: translateY(0);
}

.gallery-wrapper:hover .gallery-item:first-child:not(:hover) .item-content {
  opacity: 0;
  transform: translateY(20px);
}

.title {
  font-size: 3rem;
  font-weight: 900;
  margin: 5px 0;
}
.category {
  background: white;
  color: black;
  padding: 2px 10px;
  font-size: 0.7rem;
  font-weight: bold;
}
.author {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  background-size: cover;
  border: 1px solid white;
}

/* --- ADAPTIVITATE PENTRU TELEFON (Mobil) --- */
@media (max-width: 768px) {
  /* Sidebar devine Header orizontal (definit în menu.css) */

  /* Galeria devine verticală (Stivă) */
  .gallery-wrapper {
    flex-direction: column;
    margin-left: 0;
    margin-top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
  }

  /* Pe mobil, elementele se extind pe ÎNĂLȚIME */
  .gallery-item {
    width: 100%;
    flex: 1;
  }

  /* Proporția 33% / 16.5% adaptată pentru înălțime pe mobil */
  .gallery-item:first-child,
  .gallery-wrapper .gallery-item:hover {
    flex: 2.5; /* Ocupă mai mult spațiu vertical */
  }

  .gallery-wrapper:hover .gallery-item:not(:hover) {
    flex: 1;
  }

  /* Ajustări fonturi mobil */
  .title {
    font-size: 1.8rem;
    white-space: normal;
  }
  .item-content {
    bottom: 20px;
    left: 20px;
  }
}

/* --- BUTTONS --- */
.btn-cta {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--text-color);
  color: var(--bg-color);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  margin-top: 10px;
}

.btn-cta:hover {
  background-color: #f8b500;
  color: #000;
  transform: translateY(-2px);
}

.btn-card {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-card:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
}

/* --- SECTIONS GENERAL --- */
.section {
  background-color: var(--bg-color);
  color: var(--text-color);
  border-top: 1px solid var(--border-color);
  padding-block: 100px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  margin-left: 70px;
  width: calc(100% - 70px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- ABOUT SECTION --- */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-image {
  flex: 1;
  min-width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* --- PROCESS SECTION --- */
.steps-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.step-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-color);
  opacity: 0.8;
}

.step-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
}

.step-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
}

/* --- BENEFITS SECTION --- */
.benefits-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  padding: 30px;
  background: var(--border-color);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: #f8b500;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.benefit-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* --- GALLERY SECTION --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-thumb {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-thumb:hover img {
  transform: scale(1.1);
}

/* --- LIGHTBOX MODAL --- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
  max-height: 80vh;
  object-fit: contain;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  text-decoration: none;
  z-index: 2001; /* Above modal content */
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Position the "prev button" to the left */
.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #f8b500;
}

/* --- TESTIMONIALS SECTION --- */
/* Removed .testimonials-container flex styles as we use bootstrap carousel now */

.testimonial-card {
  background: var(--border-color);
  padding: 40px;
  max-width: 600px; /* Increased width for single slide */
  border-radius: 4px;
  position: relative;
  text-align: center;
  margin: 0 auto; /* Center in slide */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #f8b500; /* Custom color for arrows */
  border-radius: 50%;
  padding: 20px;
  background-size: 50% 50%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%; /* Narow width to not overlap content too much */
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info span {
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- FAQ SECTION --- */
.faq-section .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.faq-section .accordion-button {
  background-color: var(--border-color); /* Slightly lighter/darker than bg */
  color: var(--text-color);
  font-weight: 700;
  border-radius: 4px !important;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #f8b500;
  color: #000;
}

.faq-section .accordion-button::after {
  filter: invert(1); /* White arrow for dark theme */
}

.faq-section .accordion-button:not(.collapsed)::after {
  filter: brightness(0); /* Black arrow for active state */
}

.faq-section .accordion-body {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 20px;
  line-height: 1.6;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 4px 4px;
}

/* --- CTA SECTION --- */
.cta-section {
  text-align: center;
  padding: 80px 20px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* --- CONTACT SECTION --- */
.contact-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.contact-info,
.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
}

.contact-info h3,
.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info i {
  color: #f8b500;
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

.social-links-contact {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.social-links-contact a {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links-contact a:hover {
  color: #f8b500;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f8b500;
}

.contact-form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.contact-form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* --- STICKY SOCIAL BUTTONS --- */
.sticky-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 9999;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  color: white;
}

.whatsapp {
  background-color: #25d366;
}
.whatsapp-help-msg {
  background: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 3;
  color: #2f3542;
  white-space: nowrap;
  position: relative;
  animation: slideInAndPulse 5s infinite;
  border: 1px solid #25d366;
}

.whatsapp-help-msg::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #25d366;
}

@keyframes slideInAndPulse {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }

  5% {
    transform: translateX(0);
    opacity: 1;
  }

  15% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.05);
  }

  25% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.05);
  }

  35% {
    transform: scale(1);
  }

  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.social-btn.whatsapp {
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease;
}

.social-btn.whatsapp:hover {
  transform: scale(1.1);
}

/* --- FOOTER --- */
.main-footer {
  background-color: var(--border-color); /* Footer slightly distinct */
  color: var(--text-color);
  padding: 60px 50px 20px;
  transition: background-color 0.3s ease;
  margin-left: 70px;
  width: calc(100% - 70px);
}

.footer-content {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--bg-color);
  padding-bottom: 40px;
}
.footer-content .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--text-color);
  margin: 0 15px;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social a {
  color: var(--text-color);
  margin-left: 20px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #f8b500;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* --- PROCESS TIMELINE --- */
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.65;
  margin-top: -30px;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Central vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #f8b500, transparent);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  padding-left: 10px;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInTimeline 0.5s ease forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.05s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.15s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.25s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.35s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.45s;
}
.timeline-item:nth-child(6) {
  animation-delay: 0.55s;
}
.timeline-item:nth-child(7) {
  animation-delay: 0.65s;
}
.timeline-item:nth-child(8) {
  animation-delay: 0.75s;
}

@keyframes slideInTimeline {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-number {
  min-width: 44px;
  height: 44px;
  background: #f8b500;
  color: #000;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 4px var(--bg-color),
    0 0 0 6px #f8b500;
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-number {
  transform: scale(1.15);
}

.timeline-icon {
  min-width: 50px;
  height: 50px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #f8b500;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: var(--item-bg);
}

.timeline-item:hover .timeline-icon {
  background: #f8b500;
  color: #000;
  border-color: #f8b500;
}

.timeline-content {
  background: var(--item-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px 25px;
  flex: 1;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 18px;
  width: 14px;
  height: 14px;
  background: var(--item-bg);
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transform: rotate(45deg);
}

.timeline-item:hover .timeline-content {
  border-color: #f8b500;
  transform: translateX(4px);
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px;
}

.timeline-content p {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.6;
  margin: 0;
}

.timeline-badge {
  display: inline-block;
  margin-top: 12px;
  background: #f8b500;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 27px;
  }
  .timeline-item {
    gap: 15px;
  }
  .timeline-number {
    min-width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .timeline-icon {
    display: none;
  }
  .timeline-content {
    padding: 15px;
  }
  .timeline-content::before {
    display: none;
  }
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--item-bg);
  border: 1px solid var(--border-color);
  padding: 30px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #f8b500;
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  font-size: 1rem;
  opacity: 0.8;
}

/* --- PRICING SECTION --- */
.price-table-container {
  overflow-x: auto;
  margin-top: 30px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--item-bg);
}

.price-table th,
.price-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.price-table th {
  background-color: var(--border-color);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* --- DIFFERENTIATORS SECTION --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.diff-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background: var(--item-bg);
  border-radius: 4px;
}

.diff-item i {
  color: #f8b500;
  font-size: 1.5rem;
  margin-top: 5px;
}

.diff-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.diff-content p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

/* --- WARRANTY SECTION --- */
.warranty-block {
  background: linear-gradient(135deg, #f8b500 0%, #ffcc33 100%);
  color: #000;
  padding: 50px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.warranty-block h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.warranty-block ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.warranty-block li {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warranty-block i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .section,
  .main-footer,
  .stats-section,
  .gallery-wrapper {
    margin-left: 0;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-wrapper {
    padding: 0; /* Galeria full width */
  }

  .section {
    margin-block: 60px; /* Spațiere mai mică între secțiuni pe mobil */
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}

/* --- OPTIMIZARE ECRANE MARI (1200px+) --- */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    margin: 0 auto;
  }

  .title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .stats-section {
    padding: 120px 50px;
  }

  .stat-number {
    font-size: 5rem;
  }
}

/* --- OPTIMIZARE TABLETE (769px - 1199px) --- */
@media (min-width: 769px) and (max-width: 1199px) {
  .about-container {
    gap: 30px;
  }

  .title {
    font-size: 2.5rem;
  }

  .stats-section {
    padding: 80px 30px;
  }

  .stat-number {
    font-size: 3.5rem;
  }
}
/* --- HOME SIZE GUIDE --- */
.home-size-guide {
  padding: 80px 0;
  background-color: var(--item-bg);
  border-top: 1px solid var(--border-color);
  margin-left: 70px;
  width: calc(100% - 70px);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.guide-card {
  background: var(--bg-color);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: transform 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: #f8b500;
}

.guide-card i {
  font-size: 2.5rem;
  color: #f8b500;
  margin-bottom: 20px;
}

.guide-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.guide-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

.guide-footer-btn {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .home-size-guide {
    margin-left: 0;
    width: 100%;
    padding: 60px 20px;
  }
}
.contact-hero {
  padding: 80px 0;
  text-align: center;
  background-color: var(--item-bg);
  margin-bottom: 50px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
}

.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-card {
  background: white;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #f0f7ff;
  color: #1e90ff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  font-weight: 700;
}

.info-text p {
  margin: 0;
  color: #636e72;
}

.contact-form .form-label {
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 8px;
}

.contact-form .form-control {
  border-radius: 12px;
  padding: 12px 15px;
  border: 1px solid #dfe6e9;
  margin-bottom: 20px;
}

.contact-form .form-control:focus {
  border-color: #1e90ff;
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

.btn-send {
  background: #1e90ff;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-send:hover {
  background: #2f3542;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.social-links-contact {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link-contact {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #f1f2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f3542;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link-contact:hover {
  background: #1e90ff;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
