:root {
    /* Light Mode Variables - Solid Colors */
    --bg-color: #ffffff;
    --text-primary: #1c1c1c;
    --text-secondary: #444;
    --panel-bg: #f8f9fa;
    --border-color: #e5e5e5;
    --input-bg: #ffffff;
    --slide-left-bg: rgba(255, 255, 255, 0.8);
    --accent-color: #4285f4;
}

body.dark-mode {
    /* Dark Mode Variables - Solid Colors */
    --bg-color: #0a0a0a;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --panel-bg: #141416;
    --border-color: #2a2a2c;
    --input-bg: #1e1e20;
    --slide-left-bg: rgba(10, 10, 12, 0.8);
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--bg-color);
    transition: background 0.5s ease;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    position: relative;
}

/* Navbar */
.navbar {
    width: 100%;
    position: fixed;
    top: 10px;
    z-index: 1000;
}

.navbar-limit {
    max-width: 1920px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.navbar-margin {
    width: 100%;
    height: 48px;
    margin: 0 50px;
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.navbar-logo-p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 48px;
}

.navbar-links {
    display: flex;
    gap: 25px;
}

.navbar-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #4285f4;
}

.theme-toggle {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.theme-toggle:hover { background: rgba(0,0,0,0.05); }
body.dark-mode .theme-toggle:hover { background: rgba(255,255,255,0.05); }

/* Section 1 */
#section-1 { margin-top: 72px; margin-bottom: 10px; }
.section-limit { max-width: 1920px; margin: 0 auto; }
.section-margin { margin: 0 50px; overflow: hidden; position: relative; }

/* Title Area */
.top-title-area { margin-bottom: 10px; position: relative; z-index: 2; }
.main-top-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 50px;
    opacity: 0.9;
    overflow: hidden;
}

.main-top-title span {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    animation: letterReveal 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes letterReveal { to { transform: translateY(0); opacity: 1; } }



.beneficii {
  width: 100%;
  background-color: var(--panel-bg);
  border-radius: 20px;
}

.beneficii-panel {
  width: 25%;
  height: 70px;
}

/* Panouri */
.section-1-left {
    width: calc(70% - 14px);
    height: 500px;
    background-color: var(--slide-left-bg);
    border-radius: 24px;
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 60px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: background 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: panelReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.4s;
}

.section-1-right {
    width: 30%;
    height: 500px;
    background-color: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: panelReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.55s;
    position: relative;
}

@keyframes panelReveal { to { opacity: 1; transform: translateY(0); } }

/* Media Container */
.media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: opacity 0.5s ease-in-out;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.02) 10%, black 50%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.02) 10%, black 50%);
}

body.dark-mode .media-container { opacity: 0.6; }
.media-container img, .media-container video { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }

/* Carousel */
.carousel { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.carousel-track { position: relative; height: 300px; }
.carousel-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; visibility: hidden; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(30px); }
.carousel-slide.active { opacity: 1; visibility: visible; transform: translateY(0); }

.slide-tag { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: #4285f4; margin-bottom: 20px; }
.slide-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 48px; color: var(--text-primary); margin: 0 0 20px 0; line-height: 1.1; letter-spacing: -1.5px; text-shadow: 0 0 30px var(--bg-color); }
.slide-subtitle { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 17px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 45px; max-width: 500px; }
body.dark-mode .slide-subtitle { color: #d1d1d6; }
.slide-cta { display: inline-block; padding: 15px 30px; background: var(--text-primary); color: var(--bg-color); text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.carousel-dots { display: flex; gap: 15px; margin-top: 30px; }
.dot { width: 25px; height: 3px; background: var(--border-color); cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: var(--text-primary); width: 50px; }

/* Contact Panel */
.contact-panel { width: 100%; }
.contact-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 28px; color: var(--text-primary); margin: 0 0 5px 0; letter-spacing: -1px; }
.contact-lead { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-secondary); margin: 0 0 20px 0; line-height: 1.4; }

.mini-form { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}

.form-row {
    display: flex;
    gap: 10px;
}

.mini-input, .mini-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background: var(--input-bg);
    color: var(--text-primary);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.mini-input:focus, .mini-textarea:focus { outline: none; border-color: #4285f4; background: var(--bg-color); box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.1); }
.mini-textarea { height: 80px; resize: none; }

.file-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    background: var(--input-bg);
}

.file-scroll {
    display: flex;
    gap: 5px;
    overflow-x: auto;
}

.preview-box {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--border-color);
}
.preview-box img { width: 100%; height: 100%; object-fit: cover; }

.mini-submit {
    margin-top: 5px;
    padding: 12px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.2);
}
.mini-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(66, 133, 244, 0.3); filter: brightness(1.1); }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .services-list-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .section-1-left { width: 100%; float: none; margin-bottom: 20px; }
    .section-1-right { width: 100%; float: none; height: auto; }
    .services-list-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Sidebar Header Styles */
.sidebar-header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    body, html { overflow-y: auto; height: auto; }
    
    .navbar-margin { margin: 0 10px; }
    .navbar-links { display: none; }
    
    .section-margin { margin: 0 10px; }
    #section-1 { margin-top: 80px; }
    
    .main-top-title { font-size: 16px; letter-spacing: 2px; line-height: 1.4; margin-bottom: 15px; }
    
    .section-1-left { 
        height: auto; 
        min-height: 480px; 
        padding: 30px 20px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }
    
    .media-container {
        opacity: 0.8;
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    }
    
    .carousel {
        width: 100%;
    }

    .slide-title { font-size: 26px; line-height: 1.2; }
    .slide-subtitle { font-size: 14px; margin-bottom: 25px; }
    
    .carousel-track { height: 220px; }
    .carousel-slide { 
        position: absolute; 
        display: block; 
        transform: translateY(20px);
    }
    .carousel-slide.active { transform: translateY(0); }
    
    .section-1-right { height: auto; padding: 20px; margin-top: 10px; }
    .contact-title { font-size: 22px; }
    .contact-lead { margin-bottom: 15px; }
    
    .form-row { flex-direction: column; gap: 10px; }
    .mini-submit { width: 100%; }
}

.service-item {
  background: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* section recomandate */
#recomandate {
  margin-top: 50px;
  margin-bottom: 50px;
}

.recomandate-grid {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.recomandate-cell {
  width: calc(25% - 12px);
  background: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.recomandate-cell:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.recomandate-img-wrapper {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.recomandate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recomandate-cell:hover .recomandate-img {
  transform: scale(1.05);
}

.recomandate-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recomandate-category {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.recomandate-item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.recomandate-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* section servicii list */
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 30px;
}
.services-catalog-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

#servicii, 
#servicii .section-limit, 
#servicii .section-margin {
  overflow: visible !important;
  transform: none !important;
  contain: none !important;
}

.services-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 70px; 
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: 15px;
  height: fit-content;
  align-self: flex-start;
  z-index: 100;
}

.services-main-content {
  flex: 1;
  min-width: 0;
}

/* ... existing code ... */

.sticky-search-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  z-index: 9;
  padding-bottom: 20px;
  margin-bottom: 20px;
  background: transparent;
}

.services-main-content {
  flex: 1;
  min-width: 0;
}

/* Minimalist Categories */
.category-dropdown-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 2px;
}

.parent-category-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: var(--text-primary);
}

.parent-category-wrapper:hover {
  background: rgba(0,0,0,0.03);
}

.category-dropdown-container.open .parent-category-wrapper {
  background: rgba(0,0,0,0.03);
  color: #0056b3;
}

.parent-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.category-icon {
  font-size: 20px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.category-dropdown-container.open .category-icon {
  color: #0056b3;
}

.category-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.dropdown-toggle {
  font-size: 18px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.category-dropdown-container.open .dropdown-toggle {
  transform: rotate(180deg);
  color: #0056b3;
}

.category-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 14px;
  margin-top: 4px;
  margin-bottom: 8px;
  position: relative;
}

/* Vertical line for hierarchy */
.category-dropdown-content::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 0;
  bottom: 10px;
  width: 2px;
  background: var(--border-color);
  opacity: 0.5;
  border-radius: 2px;
}

.category-dropdown-container.open .category-dropdown-content {
  display: flex;
  animation: slideDown 0.2s ease-out;
}

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

.filter-btn-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 8px 15px 8px 25px;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
  margin-left: 10px;
  position: relative;
  display: block;
}

.filter-btn-sub:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.02);
}

.filter-btn-sub.active {
  color: #0056b3;
  background: rgba(0, 86, 179, 0.08);
  font-weight: 600;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 50px;
}

.category-section {
  margin-bottom: 60px;
  scroll-margin-top: 120px;
}

.category-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 25px;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.sticky-search-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  z-index: 9;
  background: transparent;
  padding-bottom: 20px;
}

.service-item {
  background: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-img-wrapper {
  width: calc(100% - 20px);
  aspect-ratio: 1 / 1;
  margin-left: 10px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.hover-zones {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
}

.hover-zone {
  flex: 1;
  height: 100%;
}

.hover-indicators {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
}

.hover-indicator {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  transition: background 0.2s ease;
}

.hover-indicator.active {
  background: rgba(255, 255, 255, 0.9);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item-content {
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #f4f4f4;
  border-radius: 10px;
}

.service-item-cat {
  font-family: 'Inter', sans-serif;
  font-size: 10px !important;
  color: var(--text-secondary);
  margin: 0 0 8px 0;
  position: absolute;
  left: 20px;
  top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #f4f4f4;
  border-radius: 10px;
}

.service-rating .material-icons-round {
  color: #FFD700;
  font-size: 16px;
}

.service-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}

.service-item p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.service-actions {
  display: flex;
  gap: 10px;
  padding: 0 10px 10px 10px;
}

.btn-action {
  width: auto;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-action.btn-primary {
  background-color: #000;
  color: white;
}

.btn-action.btn-primary:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.btn-action.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-action.btn-outline:hover {
  background-color: var(--border-color);
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  body, html { overflow-y: auto; height: auto; }
  .navbar-margin { margin: 0 10px; }
  .navbar-links { display: none; }
  .section-margin { margin: 0 10px; }
  #section-1 { margin-top: 80px; }
  
  .main-top-title { font-size: 16px; letter-spacing: 2px; line-height: 1.4; margin-bottom: 15px; }
  
  .section-1-left { 
      height: auto; 
      min-height: 480px; 
      padding: 30px 20px;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
  }
  
  .media-container { opacity: 0.8; }
  .carousel { width: 100%; }
  .slide-title { font-size: 26px; line-height: 1.2; }
  .slide-subtitle { font-size: 14px; margin-bottom: 25px; }
  .carousel-track { height: 220px; }
  .carousel-slide { position: absolute; display: block; transform: translateY(20px); }
  .carousel-slide.active { transform: translateY(0); }
  
  .section-1-right { height: auto; padding: 20px; margin-top: 10px; }
  .contact-title { font-size: 22px; }
  .contact-lead { margin-bottom: 15px; }
  .form-row { flex-direction: column; gap: 10px; }
  .mini-submit { width: 100%; }

  .recomandate-grid { flex-direction: column; gap: 15px; }
  .recomandate-cell { width: 100%; min-width: 0; flex: none; margin-bottom: 0; }
  
  .services-catalog-wrapper { flex-direction: column; gap: 20px; }
  
  /* UPDATED MOBILE SIDEBAR STYLES */
  .services-sidebar { width: 100%; position: relative !important; max-height: none; padding-right: 0; background-color: transparent; top: 0 !important; }
  .section-1-right-title { margin-bottom: 0 !important; font-size: 18px; }
  #mobile-category-toggle { display: flex !important; align-items: center; justify-content: center; }
  #category-filters { display: none; margin-top: 15px; background: var(--panel-bg); padding: 15px; border-radius: 16px; border: 1px solid var(--border-color); }
  #category-filters.show-mobile { display: block; animation: fadeIn 0.3s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
  /* End updated styles */

  .filter-container { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .filter-btn { flex: 1 1 calc(50% - 5px); min-width: 140px; }
  .services-list-grid { grid-template-columns: 1fr; gap: 15px; }
  
  .footer-content { flex-direction: column; gap: 30px; }
  .footer-col { min-width: 0; }
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #0056b3;
  margin: 0;
}

.stat-text {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Brands Section */

.brands-panel {
  padding: 40px !important;
  height: auto !important;
  min-height: 200px;
}

.section-tag {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #999;
  margin-bottom: 30px;
}

.brands-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.5;
  filter: grayscale(1);
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  color: #333;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -1px;
}

/* ERP Layout */
.erp-container {
  display: flex;
  min-height: 100vh;
  background-color: #f8f9fa;
}

.erp-sidebar {
  width: 260px;
  background-color: white;
  border-right: 1px solid #eee;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
}

.erp-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 50px;
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.erp-nav-item {
  padding: 15px 20px;
  margin-bottom: 8px;
  border-radius: 15px;
  color: var(--text-secondary);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Inter', sans-serif;
}

.erp-nav-item:hover {
  background-color: #f4f8fd;
  color: #0056b3;
}

.erp-nav-item.active {
  background-color: #0056b3;
  color: white;
  box-shadow: 0 4px 15px rgba(0,86,179,0.2);
}

.erp-content {
  flex: 1;
  margin-left: 260px; /* Width of sidebar */
  padding: 40px;
}

.erp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.erp-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.erp-card {
  background: var(--bg-color);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  border: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

/* Status Badges */
.status-pill {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

.status-primit { background: #eee; color: #666; }
.status-diagnostic { background: #fff3cd; color: #856404; }
.status-in_lucru { background: #cce5ff; color: #004085; }
.status-finalizat { background: #d4edda; color: #155724; }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-box {
  background: var(--bg-color);
  width: 500px;
  padding: 40px;
  border-radius: 25px;
  animation: fadeInUp 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.fc {
  font-family: 'Inter', sans-serif;
  --fc-button-bg-color: #0056b3;
  --fc-button-border-color: #0056b3;
  --fc-button-hover-bg-color: #004494;
  --fc-button-active-bg-color: #004494;
  --fc-event-bg-color: #0056b3;
  --fc-today-bg-color: rgba(0, 86, 179, 0.05);
}

.fc .fc-toolbar-title {
  font-size: 1.2em;
  font-weight: 800;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(0, 86, 179, 0.1) !important;
}

.fc-daygrid-day:hover {
  background-color: #f8f9fa;
  cursor: pointer;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.close-modal { cursor: pointer; font-size: 24px; color: #999; }

/* Mobile */
@media (max-width: 768px) {
  .erp-sidebar { display: none; }
  .erp-content { margin-left: 0; padding: 20px; }
}


.footer {
  background-color: #ffffff;
  color: var(--text-primary);
  padding-top: 60px;
  padding-bottom: 30px;
  margin-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.footer-header {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0056b3;
}

.footer-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 5px 0;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}

.footer-copy {
  font-size: 13px;
  color: #999;
}

/* Animații la scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* COMPREHENSIVE DARK MODE - Aplicat peste tot */
body.dark-mode * {
  color: inherit;
}

body.dark-mode p,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode span,
body.dark-mode div,
body.dark-mode a:not(.btn-primary):not(.btn-outline) {
  color: var(--text-primary);
}

body.dark-mode .footer-header {
  color: #4285f4;
}

body.dark-mode .footer-text {
  color: var(--text-secondary);
}

body.dark-mode .footer-copy {
  color: #666;
}

body.dark-mode .footer-bottom {
  border-top-color: var(--border-color);
}

body.dark-mode .section {
  background: var(--bg-color);
}

body.dark-mode .service-item,
body.dark-mode .service-card,
body.dark-mode .offer-box,
body.dark-mode .info-box {
  background: var(--panel-bg);
  border-color: var(--border-color);
}

body.dark-mode .service-item h3,
body.dark-mode .service-card h3 {
  color: var(--text-primary);
}

body.dark-mode .service-item p,
body.dark-mode .service-card p {
  color: var(--text-secondary);
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background: var(--input-bg);
  color: var(--text-primary);
  border-color: var(--border-color);
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: var(--text-secondary);
}

body.dark-mode .modal-box,
body.dark-mode .modal-content {
  background: var(--panel-bg);
  color: var(--text-primary);
}

body.dark-mode .modal-overlay {
  background: rgba(0, 0, 0, 0.8);
}

body.dark-mode .category-btn {
  background: var(--panel-bg);
  color: var(--text-primary);
  border-color: var(--border-color);
}

body.dark-mode .category-btn:hover,
body.dark-mode .category-btn.active {
  background: #4285f4;
  color: white;
}

body.dark-mode .filter-btn {
  background: var(--panel-bg);
  color: var(--text-primary);
}

body.dark-mode .stat-item {
  background: var(--panel-bg);
}

body.dark-mode .review-card {
  background: var(--panel-bg);
}

body.dark-mode .brand-logo {
  filter: brightness(0.8) contrast(1.2);
}

body.dark-mode .hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

body.dark-mode .testimonials-section {
  background: var(--panel-bg);
}

body.dark-mode .about-section {
  background: var(--bg-color);
}

body.dark-mode .contact-section {
  background: var(--panel-bg);
}

body.dark-mode .section-title {
  color: var(--text-primary);
}

body.dark-mode .section-subtitle {
  color: var(--text-secondary);
}

body.dark-mode .service-price {
  color: #4285f4;
}

body.dark-mode .mini-input {
  background: var(--input-bg);
  color: var(--text-primary);
  border-color: var(--border-color);
}

body.dark-mode .mini-form label {
  color: var(--text-secondary);
}

body.dark-mode .services-sidebar {
  background: var(--panel-bg);
}

body.dark-mode .parent-btn {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
}

body.dark-mode .parent-btn:hover {
  background: rgba(255,255,255,0.1);
}

body.dark-mode .filter-btn-wrapper:hover .filter-btn {
  background: rgba(255,255,255,0.1);
}

body.dark-mode .sub-btn {
  color: var(--text-secondary);
}

body.dark-mode .sub-btn:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

body.dark-mode .service-actions .btn-action.btn-outline {
  border-color: var(--border-color);
  color: var(--text-primary);
}

body.dark-mode .service-actions .btn-action.btn-outline:hover {
  background: var(--border-color);
}

body.dark-mode .service-item::before {
  background: linear-gradient(135deg, rgba(66,133,244,0.1) 0%, transparent 100%);
}

body.dark-mode .navbar {
  background: rgba(10, 10, 10, 0.9);
}

body.dark-mode .logo {
  color: var(--text-primary);
}

body.dark-mode .navbar-links a {
  color: var(--text-secondary);
}

body.dark-mode .navbar-links a:hover {
  color: var(--text-primary);
}

body.dark-mode .theme-toggle {
  background: rgba(255,255,255,0.1);
}

body.dark-mode .typing-indicator {
  background: var(--panel-bg);
}

body.dark-mode .message.received {
  background: var(--panel-bg);
  color: #ffffff !important;
}

body.dark-mode .message.received * {
  color: #ffffff !important;
}

body.dark-mode .chat-window {
  background: var(--bg-color);
}

body.dark-mode .chat-input {
  background: var(--input-bg);
  color: var(--text-primary);
}

body.dark-mode .chat-input-area {
  background: var(--panel-bg);
  border-top-color: var(--border-color);
}

body.dark-mode .chat-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

body.dark-mode .chat-service-card {
  background: linear-gradient(135deg, #1a1a1f 0%, #0f0f12 100%);
  border-color: #2a2a35;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  color: #ffffff !important;
}

body.dark-mode .chat-service-card:hover {
  background: linear-gradient(135deg, #202025 0%, #15151a 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  border-color: #3a3a45;
}

body.dark-mode .chat-service-card * {
  color: #ffffff !important;
}

body.dark-mode .service-item-content {
  background-color: #1e1e24;
  color: var(--text-primary);
}

body.dark-mode .footer-section {
  background: #0a0a0a;
}
