/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  /* Colors */
  --dark-blue: #0a192f;
  --navy: #0c223f;
  --electric-blue: #00b4d8;
  --light-gray: #f0f4f8;
  --text-orange: #ff9e00;
  --accent-orange: #ff6b35;
  --white: #ffffff;
  --success-green: #4ade80;
  --bg-gray: #2f2f32;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-round: 50px;
  --radius-circle: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, sans-serif;
}

html,
body {
  overflow-x: hidden;
}

body {
  background-color: var(--bg-gray);
  color: var(--white);
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(255, 158, 0, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 85% 75%, rgba(0, 180, 216, 0.06) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 35%);
  background-attachment: fixed;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4 {
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
}

p,
li {
  color: var(--light-gray);
}

a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: all var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   LAYOUT CONTAINERS
   ========================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-lg) 0;
}

section {
  padding: var(--spacing-xxl) 0;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn,
.btnHero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-orange), var(--text-orange));
  color: var(--dark-blue);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-round);
  font-weight: 700;
  font-size: 1.05rem;
  gap: var(--spacing-xs);
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 158, 0, 0.3);
  transition: all var(--transition-bounce);
  position: relative;
  z-index: 3;
}

.btn:hover,
.btnHero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 158, 0, 0.45);
}

.btnHero {
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-orange);
  color: var(--text-orange);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 158, 0, 0.1);
  transform: translateY(-3px);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(212, 212, 211, 0.49);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 158, 0, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 100px;
  width: auto;
}

.logo-text {
  background: linear-gradient(90deg, var(--white), var(--text-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.logo-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--text-orange), var(--accent-orange));
  opacity: 0.7;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-links a {
  color: var(--bg-gray) !important;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  padding: var(--spacing-xs) 0;
  transition: color var(--transition-base);
}

.nav-links a:hover {
  color: var(--text-orange);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--text-orange), var(--accent-orange));
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: var(--spacing-xs);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 1.5rem;
  background-image: url("images/HERO/hero1.png");
  background-size: cover; /* ✅ זה חשוב */
  background-position: center;
  background-repeat: no-repeat; /* ✅ זה מונע חזרות! */
}



.hero::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, var(--text-orange) 0%, transparent 70%);
  opacity: 0.08;
  z-index: 0;
  animation: float 25s infinite linear;
}

@keyframes float {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: rgb(0, 0, 0);
  padding-top: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: var(--spacing-md);
  color: rgba(7, 4, 0, 0.89);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  margin: 0 auto 2.9rem;
  color: rgb(0, 0, 0);
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Hero Stats Strip */
.hero-stats-strip {
  margin-top: 2.5rem;
  background: rgba(80, 80, 80, 0.86);
  border-radius: 999px;
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.137);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
}

.hero-stat-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.hero-stat-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #e07306;
}

.hero-stat-label {
  margin-top: 0.2rem;
  font-size: 0.95rem;
  color: #e07306;
}

.hero-phone {
  color: var(--text-orange);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 158, 0, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-round);
  border: 1px solid rgba(255, 158, 0, 0.3);
}

.hero-phone i {
  font-size: 1.2rem;
}

.logo-Hero {
  position: absolute;
  top: 20px;
  right: 20px;
  height: clamp(120px, 15vw, 200px);
  width: auto;
  z-index: 2;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-orange);
  display: inline-block;
  margin-top: 10px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--light-gray);
  font-size: 1.2rem;
  font-weight: 400;
}

/* ==========================================
   BRANDS SECTION
   ========================================== */
#brands {
  position: relative;
  overflow: visible;
  padding-top: 80px;
}

.brands-section {
  border-radius: var(--radius-xl);
  padding: 4rem 0;
  margin: var(--spacing-xl) 0;
}

.brands-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  margin-top: 2.5rem;
  overflow-x: visible;
}

.brand-item {
  text-align: center;
  min-width: 120px;
  opacity: 0.8;
  transition: all var(--transition-base);
  flex: 0 0 auto;
}

.brand-item:hover {
  opacity: 1;
  transform: scale(1.1);
}

.brand-logo {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid rgba(255, 158, 0, 0.3);
  overflow: hidden;
  padding: 8px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  color: var(--light-gray);
  font-size: 1.1rem;
}

.brand-item:hover .brand-logo {
  transform: scale(1.08);
  border-color: rgba(255, 158, 0, 0.9);
  box-shadow: 0 0 12px rgba(255, 158, 0, 0.8), 0 0 30px rgba(255, 120, 0, 0.6);
}

/* ==========================================
   BRANDS DECORATIVE IMAGES - FIXED POSITIONING
   ========================================== */

/* Hide all decorative images by default */
.brands-ptz-wrapper,
.brands-ptz-wrapper1 {
  display: none;
}

/* PTZ Camera - Top Right */
.brands-ptz-wrapper {
  position: absolute;
  top: -15px;
  right: 5%;
  z-index: 3;
  pointer-events: none;
}

.brands-ptz-image {
  max-width: clamp(180px, 18vw, 260px);
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
}

/* Camera - Top Left */
.brands-ptz-wrapper1 {
  position: absolute;
  top: 20px;
  left: 3%;
  z-index: 2;
  pointer-events: none;
}

.brands-ptz-image1 {
  max-width: clamp(180px, 18vw, 260px);
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
}

.brands-ptz-wrapper2 {
  position: absolute;
  top: 450px;
  left: 63%;
  z-index: 2;
  pointer-events: none;
  transform: translateY(0%);
}

/* Speaker - Bottom Right */
.brands-elemnt-image1 {
  display: none;
  align-items: center;
}

.brands-ptz-wrapper3 {
  position: absolute;
  top: 550px;
  left: 83%;
  z-index: 2;
  pointer-events: none;
  transform: translateY(0%);
}

/* Fingerprint Device - Bottom Left */
.brands-elemnt1-image1 {
  display: none;
}

.brands-ptz-wrapper4 {
  position: absolute;
  top: 600px;
  left: 13%;
  z-index: 2;
  pointer-events: none;
}

/* Small Device - Far Right */
.brands-elemnt2-image1 {
  display: none;
}

/* Show decorative images only on large screens */
@media (min-width: 1200px) {
  .brands-ptz-wrapper,
  .brands-ptz-wrapper1 {
    display: block;
  }
  
  .brands-elemnt-image1 {
    display: block;
    position: absolute;
    bottom: -200px;
    right: 3%;
    max-width: clamp(300px, 30vw, 500px);
    height: auto;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
    pointer-events: none;
    z-index: 2;
  }
  
  .brands-elemnt1-image1 {
    display: block;
    position: absolute;
    bottom: -180px;
    left: 3%;
    max-width: clamp(180px, 18vw, 280px);
    height: auto;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
    pointer-events: none;
    z-index: 2;
  }
  
  .brands-elemnt2-image1 {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-width: clamp(120px, 12vw, 180px);
    height: auto;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
    pointer-events: none;
    z-index: 2;
  }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
#about {
  position: relative;
  overflow: visible;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Hide decorative images by default */
.brands6,
.brands7 {
  display: none;
}

/* Show only on large screens */
@media (min-width: 1200px) {
  /* Left side decoration (fingerprint device) */
  .brands7 {
    display: block;
    position: absolute;
    left: 2%;
    top: 75%;
    z-index: 2;
    pointer-events: none;
  }

  .brands-elemnt7-image1 {
    max-width: clamp(800px, 150vw, 880px);
    height: auto;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
  }

  /* Right side decoration (speaker) */
  .brands6 {
    display: block;
    position: absolute;
    right: 2%;
    top: 75%;
    z-index: 2;
    pointer-events: none;
  }

  .brands-elemnt6-image1 {
    max-width: clamp(250px, 25vw, 450px);
    height: auto;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
  }
}

.about-content {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  font-size: 1.15rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: var(--spacing-md);
}

.about-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.stat-card {
  background: #0e2037;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(255, 158, 0, 0.2);
  transition: transform var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--text-orange), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  color: var(--light-gray);
  font-size: 0.95rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: linear-gradient(145deg, rgba(12, 34, 63, 0.85), rgba(10, 25, 47, 0.95));
  padding: 2.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 158, 0, 0.2);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-bounce);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--text-orange), var(--accent-orange));
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 158, 0, 0.25);
  border-color: rgba(255, 158, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--text-orange);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin-bottom: 1.25rem;
  color: var(--text-orange);
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  flex: 1;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

/* Service Card Background Images */
.service-card-network::before {
  background: url("images/netSystem.png") center/cover no-repeat;
}

.service-card-cctv::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)),
    url("images/pawel-czerwinski-zBTYRFCeaS0-unsplash.jpg") center/cover no-repeat;
}

.service-card-alarm::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2)),
    url("images/Gemini_Generated_Image_b976epb976epb976.png") center/cover no-repeat;
}

.service-card-access::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2)),
    url("images/Gemini_Generated_Image_7pyw3s7pyw3s7pyw.png") center/cover no-repeat;
}

.lowSystem::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2)),
    url("images/Gemini_Generated_Image_p9h4khp9h4khp9h4.png") center/cover no-repeat;
}

.service-card-maintenance::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25)),
    url("images/558911896_1449731660224028_4500309070669073889_n.jpg") center/cover no-repeat;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.testimonial {
  background: linear-gradient(145deg, rgba(12, 34, 63, 0.9), rgba(10, 25, 47, 0.95));
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid rgba(255, 158, 0, 0.25);
  transition: transform var(--transition-base);
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 5rem;
  color: var(--text-orange);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing-md);
}

.testimonial p {
  margin-bottom: 1.25rem;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
}

.client-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.client-avatar {
  width: 50px;
  height: 50px;
  background: var(--text-orange);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark-blue);
  font-size: 1.2rem;
}

.client-details h4 {
  color: var(--text-orange);
  margin-bottom: 0.25rem;
}

.client-details p {
  margin: 0;
  font-size: 0.95rem;
  font-style: normal;
}

/* ==========================================
   PRICING HIGHLIGHT SECTION - FIXED
   ========================================== */
.pricing-highlight {
  padding: 4rem 0;
}

.pricing-highlight-inner {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  direction: rtl;
}

.pricing-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.pricing-media img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.pricing-content {
  flex: 1;
  text-align: right;
}

.pricing-title {
  font-size: 2.6rem;
  margin-bottom: var(--spacing-md);
  color: var(--white);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.pricing-title span {
  color: #e07306;
  font-weight: 900;
}

.pricing-text {
  color: var(--light-gray);
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  max-width: 520px;
  line-height: 1.8;
}

.pricing-bullets {
  list-style: none;
  margin-top: 1.2rem;
  padding: 0;
}

.pricing-bullets li {
  position: relative;
  padding-right: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--light-gray);
  font-size: 0.98rem;
}

.pricing-bullets li::before {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--text-orange);
  font-size: 1.2rem;
}

/* FIXED: Removed all pixel-based transforms */
#fair-pricing .pricing-text {
  max-width: 600px;
  text-align: right;
}

#fair-pricing .pricing-text:nth-of-type(2) {
  text-align: center;
  margin: 0 auto var(--spacing-md);
}

#fair-pricing .pricing-bullets {
  padding-right: 1.5rem;
}

/* FIXED: Logo2 - use relative positioning */
.logo2 {
  display: block;
  margin-bottom: var(--spacing-lg);
}

.logo-img2 {
  height: 60px;
  width: auto;
  display: block;
}

/* Pricing Text Glow Animation */
.pricing-text-glow {
  position: relative;
  display: inline-block;
  font-weight: 600;
  background: linear-gradient(90deg, #ff7a00, #ffb347, #ffe29f, #ffb347, #ff7a00);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glowRun 3.5s linear infinite;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

@keyframes glowRun {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================
   CONTACT CTA SECTION
   ========================================== */
.contact-cta-section {
  text-align: center;
  padding: var(--spacing-xxl) var(--spacing-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35)),
    url("images/490328362_1289247726272423_961657204870318270_n.jpg") center/cover no-repeat;
  border-radius: var(--radius-xl);
  margin: 4rem auto;
  max-width: 950px;
  border: 1px solid rgba(255, 158, 0, 0.3);
}

.contact-cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(90deg, var(--text-orange), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--light-gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light-gray);
  font-weight: 500;
}

.contact-method i {
  color: var(--text-orange);
  font-size: 1.2rem;
}

/* ==========================================
   PROJECTS CAROUSEL
   ========================================== */
.projects-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  direction: ltr;
}

.carousel-track {
  display: flex;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 158, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  background: #000;
  transition: transform var(--transition-slow);
}

.carousel-item {
  flex: 0 0 100%;
  height: 550px;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-circle);
  background: rgba(10, 25, 47, 0.85);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition-base), transform var(--transition-fast);
}

.carousel-btn.prev {
  right: 1rem;
}

.carousel-btn.next {
  left: 1rem;
}

.carousel-btn:hover {
  background: rgba(255, 158, 0, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 0.6rem;
  margin-top: var(--spacing-md);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 158, 0, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-dot.active {
  background: var(--text-orange);
  width: 26px;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255, 158, 0, 0.2);
  background: rgba(6, 15, 28, 0.7);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-column h3 {
  color: var(--text-orange);
  margin-bottom: var(--spacing-md);
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--text-orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: var(--light-gray);
  transition: all var(--transition-base);
}

.footer-links a:hover {
  color: var(--text-orange);
  padding-right: 5px;
}

.footer-contact p {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: 500;
}

.footer-contact i {
  color: var(--text-orange);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ==========================================
   RESPONSIVE DESIGN - LARGE DESKTOP
   ========================================== */
@media (min-width: 1400px) {
  .brands-elemnt6-image1 {
    max-width: 500px;
  }
}

/* ==========================================
   RESPONSIVE DESIGN - LAPTOP
   ========================================== */
@media (max-width: 1366px) {
  .brands-ptz-image {
    max-width: 200px;
  }
  
  .brands-ptz-image1 {
    max-width: 200px;
  }
}

/* ==========================================
   RESPONSIVE DESIGN - HIDE DECORATIONS
   ========================================== */
@media (max-width: 1199px) {
  .brands-ptz-wrapper,
  .brands-ptz-wrapper1,
  .brands6,
  .brands7,
  .brands-elemnt-image1,
  .brands-elemnt1-image1,
  .brands-elemnt2-image1 {
    display: none !important;
  }
}

/* ==========================================
   RESPONSIVE DESIGN - TABLET
   ========================================== */
@media (max-width: 992px) {

    .hero {
    background-image: url("images/HERO/hero1M.png")!important;
    min-height: 70vh;
  }
  /* Pricing Section */
  .pricing-highlight-inner {
    flex-direction: column;
    text-align: center;
  }

  .pricing-content {
    text-align: center;
  }

  .pricing-text,
  .pricing-bullets {
    margin-left: auto;
    margin-right: auto;
  }
  
  #fair-pricing .pricing-text {
    text-align: center;
  }

  .pricing-bullets li {
    padding-right: 0;
  }

  .pricing-bullets li::before {
    display: none;
  }
  
  .logo2 {
    text-align: center;
  }
  
  .logo-img2 {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
      .brand-item.auto-hover {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .brand-item.auto-hover .brand-logo {
    transform: scale(1.08);
    border-color: rgba(255, 158, 0, 0.9);
    box-shadow: 0 0 12px rgba(255, 158, 0, 0.8), 0 0 30px rgba(255, 120, 0, 0.6);
  }
  
  /* Typography */
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .navbar {
    padding: 0.4rem 5%;
  }

  .logo-img {
    height: 50px;
  }
  
  .logo-Hero {
    height: 100px;
  }

  /* Brands */
  .brands-container {
    gap: var(--spacing-lg);
  }

  .brand-logo {
    width: 80px;
    height: 80px;
  }

  /* About */
  .about-content {
    flex-direction: column;
  }
  
  #about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE
   ========================================== */
@media (max-width: 576px) {
  /* Hero - תמונת מובייל */
.hero-content {
  padding-top: 100px; /* רווח מלמעלה */

 
}

  /* Hero Stats Strip */
  .hero-stats-strip {
    padding: 0.6rem 0.8rem;
    gap: var(--spacing-xs);
  }

  .hero-stat-number {
    font-size: 0.9rem;
  }

  .hero-stat-label {
    font-size: 0.8rem;
  }

  /* Hero Typography */
  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-top: 25px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-top: 25px;
  }

  /* Brands Section Mobile */
  #brands {
    padding-top: 30px;
  }

  #brands .container {
    width: 100%;
    padding-inline: 1rem;
  }

  #brands .section-title {
    font-size: 1.7rem;
  }

  #brands .section-subtitle {
    font-size: 0.95rem;
  }

  .brands-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    justify-items: center;
  }

  #brands .brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* הצג רק 6 ראשונים */
  #brands .brand-item:nth-child(n+7) {
    display: none;
  }

  .brand-logo {
    width: 80px;
    height: 80px;
    padding: 4px;
  }

  .brand-name {
    font-size: 0.8rem;
  }

  /* Pricing Section Mobile */
  .pricing-title {
    font-size: 2rem;
  }

  .pricing-media img {
    max-width: 100%;
    border-radius: 18px;
  }

  .pricing-highlight {
    padding: var(--spacing-xl) 0;
  }

  #fair-pricing .pricing-text {
    max-width: 100%;
    text-align: center;
  }

  #fair-pricing .pricing-bullets {
    padding-right: 1.5rem;
    text-align: right;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Methods */
  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  /* Carousel */
  .carousel-item {
    height: 400px;
  }
  .service-card {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* רק התמונה תהיה כהה */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: 0;

}


/* הטקסט יהיה בהיר ומעל */
.service-card .service-icon,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 2;
  color: rgb(226, 157, 8);
  font-size: 1.5rem;
}

.service-card-network {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35)),
    url("images/netSystem.png") center/cover no-repeat;
 
}

.service-card-cctv {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35)),
    url("images/pawel-czerwinski-zBTYRFCeaS0-unsplash.jpg") center/cover no-repeat;
}

.service-card-alarm {
   background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35)),
    url("images/Gemini_Generated_Image_b976epb976epb976.png") center/cover no-repeat;
}

.service-card-access {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35)),
    url("images/Gemini_Generated_Image_7pyw3s7pyw3s7pyw.png") center/cover no-repeat;
}

.lowSystem {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35)),
    url("images/Gemini_Generated_Image_p9h4khp9h4khp9h4.png") center/cover no-repeat;
}

.service-card-maintenance {
   background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35)),
    url("images/558911896_1449731660224028_4500309070669073889_n.jpg") center/cover no-repeat;
}

  .brand-item.auto-hover {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .brand-item.auto-hover .brand-logo {
    transform: scale(1.08);
    border-color: rgba(255, 158, 0, 0.9);
    box-shadow: 0 0 12px rgba(255, 158, 0, 0.8), 0 0 30px rgba(255, 120, 0, 0.6);
  }
}








