:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --text-dark: #0f172a;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
  --radius-lg: 16px;
  --logo-blur: 0.5px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-dark);
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #93c5fd, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
}

.nav-item > a {
  padding: 8px 0;
  display: inline-block;
}

.nav-item:hover > a,
.nav-item.active > a {
  color: var(--primary);
}

/* Dropdowns */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease-out;
  z-index: 40;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: #111827;
}

.dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 15px rgba(37, 99, 235, 0.3);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  background: #ffffff;
  cursor: pointer;
}

.btn-outline {
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 13px;
  padding: 8px 12px;
  cursor: pointer;
}

/* Mobile nav button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Slider */
.hero {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  gap: 32px;
  color: #fff;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  transition: all 0.8s ease;
}

/* Slide backgrounds */
.hero .slide:nth-child(1) { background-image: url('../images/slide1.png'); justify-content: flex-start; padding-top: 100px; }
.hero .slide:nth-child(2) { background-image: url('../images/slide2.jpg'); justify-content: center; }
.hero .slide:nth-child(3) { background-image: url('../images/slide3.png'); justify-content: flex-end; padding-bottom: 100px; }
.hero .slide:nth-child(4) { background-image: url('../images/slide4.png'); justify-content: flex-end; padding-bottom: 60px; }

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.65);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.dot.active {
  background: #fff;
  transform: scale(1.3);
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* Hero content */
.hero-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #020617;
  padding: 16px;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card-title {
  font-size: 16px;
  font-weight: 600;
}

.hero-card-text {
  font-size: 13px;
  color: #cbd5f5;
}

.hero-camera {
  border-radius: 12px;
  background: linear-gradient(135deg, #1f2937, #020617);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-camera-lens {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 3px solid #1d4ed8;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.45);
}

.hero-camera-text {
  font-size: 13px;
}

.hero-camera-text span {
  color: #9ca3af;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}

.hero-badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

/* Sections */
section {
  padding: 32px 0;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.section-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.section-gray {
  background: var(--bg-light);
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.benefit-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0ebff;
  font-size: 16px;
}

.benefit-title {
  font-size: 14px;
  font-weight: 600;
}

.benefit-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.categories-grid .category-card:nth-child(1) .category-thumb {
    background-image: url('../images/interno6.png');
}
.categories-grid .category-card:nth-child(1) .category-thumb {
    background-image: url('../images/interno6.png');
}
.categories-grid .category-card:nth-child(2) .category-thumb {
    background-image: url('../images/esterno.png');
}
.categories-grid .category-card:nth-child(3) .category-thumb {
    background-image: url('../images/misti.png');
}
.categories-grid .category-card:nth-child(4) .category-thumb {
    background-image: url('../images/allarme.png');
}
.categories-grid .category-card:nth-child(5) .category-thumb {
    background-image: url('../images/completi.png');
}
.categories-grid .category-card:nth-child(6) .category-thumb {
    background-image: url('../images/kituri.png');
}

.category-card.category-allarmi .category-thumb {
  background-image: url('../images/allarme.png');
}

/* Și restul rămâne la fel */
.category-thumb {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

.category-card:hover .category-thumb {
    transform: scale(1.05);
}

.category-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-title {
  font-size: 16px;
  font-weight: 600;
}

.category-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Recommended Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.product-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  align-self: flex-start;
}

.product-thumb {
  height: 180px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

.products-grid .product-card:nth-child(1) .product-thumb { background-image: url('../images/interno8.png'); }
.products-grid .product-card:nth-child(2) .product-thumb { background-image: url('../images/allarme.png'); }
.products-grid .product-card:nth-child(3) .product-thumb { background-image: url('../images/misti5-2.png'); }
.products-grid .product-card:nth-child(4) .product-thumb { background-image: url('../images/kiturfi.png'); }

.product-card:hover .product-thumb {
  transform: scale(1.05);
}

.product-title {
  font-weight: 600;
}

.product-price {
  font-weight: 700;
  color: var(--primary-dark);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #1d4ed8, #1e293b);
  color: #ffffff;
  border-radius: 24px;
  padding: 24px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.cta-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cta-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #020617;
  color: #9ca3af;
  padding: 24px 0 16px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  font-size: 13px;
}

.footer-title {
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.footer-links li + li {
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  margin-top: 16px;
  padding-top: 12px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* About Section */
.about-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #e0ebff 0%, #f9fbff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 40px;
}

.about-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.about-content h2.section-title {
  text-align: left;
  color: var(--primary-dark);
}

.about-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-list {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-image {
  border-radius: var(--radius-lg);
  background: url('../images/about.png') center/cover no-repeat;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.4s ease;
}

.about-image:hover {
  transform: scale(1.03);
}

/* Quote / Offer Section */
.quote-section {
  background: linear-gradient(135deg, rgba(56,189,248,0.25), rgba(37,99,235,0.3));
  padding: 100px 0;
  position: relative;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  align-items: stretch;
  gap: 48px;
}

.quote-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.quote-label {
  font-size: 15px;
  color: #dc2626;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.quote-title {
  font-size: 38px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.quote-text {
  color: #374151;
  line-height: 1.6;
  font-size: 15px;
  max-width: 460px;
}

.quote-benefits {
  margin-top: 10px;
  color: #111827;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote-form-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.12);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-form-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 45px rgba(15, 23, 42, 0.15);
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.quote-steps .step {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: #374151;
  transition: all 0.3s ease;
}

.quote-steps .step.active {
  background: var(--primary);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 4px 10px rgba(37,99,235,0.3);
}

.quote-steps .step span {
  display: block;
  font-size: 11px;
  opacity: 0.85;
  font-weight: 500;
}

.quote-step {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.quote-step.hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.quote-step:not(.hidden) {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.quote-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}

.quote-step label {
  display: block;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.quote-step label:hover {
  border-color: var(--primary);
  background: #eff6ff;
}

.quote-step input[type="radio"] {
  margin-right: 8px;
}

.quote-step input[type="text"],
.quote-step input[type="email"],
.quote-step input[type="tel"],
.quote-step textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 8px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.quote-step input:focus,
.quote-step textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
  outline: none;
}

/* Step 5 - Contact */
.form-step-5 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-step-5 input[type="text"],
.form-step-5 input[type="email"],
.form-step-5 input[type="tel"],
.form-step-5 textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  background: #fff;
  box-sizing: border-box;
}

.form-step-5 textarea {
  min-height: 130px;
  resize: vertical;
}

.form-step-5 .terms-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 15px;
}

.form-step-5 .terms-wrapper input {
  width: 20px;
  height: 20px;
  accent-color: #2563eb;
  cursor: pointer;
}

.form-step-5 .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

/* Suppliers Slider */
.suppliers-section {
  background: linear-gradient(135deg, #2563eb 0%, #1e293b 100%);
  padding: 60px 0;
  overflow: hidden;
  color: #fff;
}

.suppliers-section .section-title {
  color: #ffffff;
}

.suppliers-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.suppliers-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollLoop 30s linear infinite;
  width: max-content;
}

.suppliers-track img {
  height: 60px;
  width: auto;
  filter: brightness(0.8) invert(1) grayscale(100%) blur(var(--logo-blur, 2px));
  opacity: 0.6;
  transition: all 0.4s ease;
  transform: scale(0.95);
}

.suppliers-track img:hover {
  filter: brightness(1) invert(0) grayscale(0%) blur(0);
  opacity: 1;
  transform: scale(1.05);
  cursor: pointer;
}

.suppliers-slider:hover .suppliers-track {
  animation-play-state: paused;
}

@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hover effects */
.hover-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.16);
}

/* Page layout */
.page-hero {
  padding: 40px 0 24px;
  background: radial-gradient(circle at top left, #eff6ff, #ffffff);
}

.page-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: left;
}

.page-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 720px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    justify-items: center;
  }
  .hero-grid > * {
    max-width: 90%;
  }
  .hero-grid > :last-child {
    order: 2;
    margin-top: 20px;
  }
  .hero-grid > :first-child {
    order: 1;
  }

  .benefits,
  .categories-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .about-grid,
  .quote-grid,
  .contact-grid,
  .service-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content {
    padding: 24px;
    height: auto;
  }

  .about-image {
    height: 260px;
    margin-top: 20px;
  }

  .about-content h2.section-title {
    text-align: center;
  }

  .quote-form-card {
    padding: 24px;
  }

  .quote-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 8px;
  }

  .form-nav,
  .form-step-5 .form-actions {
    flex-direction: column;
    gap: 10px;
  }

  .form-nav button,
  .form-step-5 .form-actions button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 60px 0 0 0;
    background: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-out;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-item,
  .dropdown-menu li a {
    color: #e5e7eb;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding-left: 10px;
  }

  .dropdown-menu li a:hover {
    background: rgba(15, 23, 42, 0.6);
  }

  .btn-primary.nav-cta {
    width: 100%;
    justify-content: center;
    box-shadow: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    padding: 10px 0;
  }

  .hero-title {
    font-size: 26px;
  }

  .benefits,
  .categories-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    border-radius: 18px;
  }

  .suppliers-track {
    gap: 40px;
    animation-duration: 40s;
  }

  .suppliers-track img {
    height: 45px;
  }
}

/* Remove bottom space after hero */
.hero + section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Remove container restriction inside hero */
.hero .container {
  max-width: none;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* spațiu între imagine și eventual text, dacă vrei să păstrezi și numele */
}

.logo-img {
  height: 40px;           /* înălțimea dorită a logo-ului */
  width: auto;            /* păstrează proporțiile */
  max-width: 180px;       /* limitează lățimea maximă pe mobile */
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo-img:hover {
  opacity: 0.9;
}

/* Opțional: dacă vrei să păstrezi și textul "SecureVision" lângă imagine */
.logo span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}
@media (max-width: 992px) {
    #cctv   .container > div[style*="grid-template-columns"],
    #alarma .container > div[style*="grid-template-columns"],
    #instalare .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}