/* header.css */
.inexa-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 15px 0;
}
.inexa-logo-bg {
  position: relative;
  background: var(--white, #ffffff);
  padding: 0;
  border-bottom-right-radius: 40px;
  display: inline-flex;
}
.inexa-logo-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  background-image: radial-gradient(circle at 100% 100%, transparent 40px, var(--white, #ffffff) 41px);
}
.inexa-logo-bg img {
  height: 150px;
  object-fit: contain;
}
.inexa-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white, #ffffff);
  font-weight: 700;
  font-size: 18px;
}
.inexa-phone-icon {
  width: 40px; height: 40px;
  background: var(--red, #e3000f);
  color: var(--white, #ffffff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.inexa-nav-links {
  display: flex; gap: 45px;
}
.inexa-nav-links a {
  color: var(--white, #ffffff);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.35s ease;
  text-decoration: none;
}
.inexa-nav-links a:hover, .inexa-nav-links a.active {
  color: var(--red, #e3000f);
}
.inexa-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.inexa-consult {
  background: var(--white, #ffffff);
  color: var(--dark, #0d0d0d);
  padding: 5px 5px 5px 25px;
  border-radius: 40px;
  display: flex; align-items: center; gap: 15px;
  font-weight: 700; font-size: 15px;
  transition: all 0.35s ease;
  text-decoration: none;
}
.inexa-consult-icon {
  width: 40px; height: 40px;
  background: var(--red, #e3000f);
  color: var(--white, #ffffff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Responsive Header */
.inexa-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  margin-left: 15px;
}
.inexa-hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white, #fff);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .inexa-header {
    padding: 0 15px 10px 0;
  }
  .inexa-header > div:first-child {
    gap: 15px; /* Reduce gap between logo and phone */
  }
  .inexa-logo-bg img {
    height: 130px; /* Increased logo size */
  }
  /* Keeping the ::after and border-radius so the curve stays! */
  .inexa-phone {
    display: none; /* Hide entire phone block on mobile */
  }
  .inexa-consult {
    display: none; /* Hide consult button */
  }
  .inexa-hamburger {
    display: flex; /* Show hamburger */
  }
  .inexa-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding-top: 100px;
    gap: 10px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
  }
  .inexa-nav-links.active {
    right: 0;
  }
  .inexa-nav-links a {
    font-size: 1.1rem;
    padding: 15px 30px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}

@media (max-width: 600px) {
  .inexa-logo-bg img {
    height: 110px; /* Increased logo size for small screens */
  }
  
  .inexa-header > div:first-child {
    gap: 10px;
  }
}
