body {
  zoom: 75%;
}

.blue-button {
  background-color: #019ee3 !important;
}

.red-button {
  background-color: #e3000f !important;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.portal-button {
  background: linear-gradient(140deg, #019ee3 0%, #e3000f 100%);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.portal-button:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.language-dropdown {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.language-button {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.language-button img {
  width: 24px;
  height: 16px;
  margin-right: 8px;
  border-radius: 2px;
}

.language-button span {
  font-weight: 600;
  color: #333;
  margin-right: 5px;
  font-size: 14px;
}

.language-button svg {
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
  /* yukarı ok */
  transition: transform 0.3s;
}

.language-options {
  position: absolute;
  bottom: 110%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  min-width: 120px;
  padding: 4px 0;
}

.language-options div {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.language-options div:hover {
  background: #f1f1f1;
}

.language-options img {
  width: 24px;
  height: 16px;
  margin-right: 8px;
  border-radius: 2px;
}

.page-breadcrumb-area.style-1 {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.page-breadcrumb-area.style-1::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(15px);
  z-index: 0;
  opacity: 1;
}

.page-breadcrumb-area.style-1 > .container {
  position: relative;
  z-index: 2;
}

.disabled-link {
  pointer-events: none;
  color: #000;
  text-decoration: none;
  cursor: default;
}

.bold {
  font-weight: 800 !important;
}

/*whatsapp button*/
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation:
    slideInRight 0.8s ease-out,
    glowPulse 2.5s infinite;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.whatsapp-widget:hover {
  background-color: #1ebea5;
  transform: scale(1.05);
}

.whatsapp-icon svg {
  display: block;
  width: 26px;
  height: 26px;
  fill: white;
}

/* Giriş animasyonu */
@keyframes slideInRight {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow:
      0 0 10px rgba(37, 211, 102, 0.4),
      0 0 20px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow:
      0 0 20px rgba(37, 211, 102, 0.7),
      0 0 30px rgba(37, 211, 102, 0.5);
  }
}

/*cookie*/
.cookie-consent {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #d9eafd;
  color: #111;
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  font-size: 1rem;
  max-width: 90vw;
  min-width: 320px;
  flex-wrap: wrap;
}

.cookie-consent .cookie-message {
  flex: 1;
}

.cookie-consent a {
  color: #e53935;
  text-decoration: underline;
}

.cookie-accept {
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 600;
}

.cookie-accept:hover {
  background: #b71c1c;
}

@media (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
    min-width: 0;
  }

  .cookie-accept {
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px 12px 8px;
    min-width: unset;
    max-width: 97vw;
    width: 97vw;
    gap: 10px;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }

  .cookie-consent .cookie-icon {
    margin: 0 0 8px 0;
    width: 38px;
    height: 38px;
  }

  .cookie-consent .cookie-message {
    width: 100%;
    text-align: center;
    font-size: 0.99rem;
    margin-bottom: 0;
  }

  .cookie-accept {
    width: 100%;
    margin: 10px 0 0 0;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 8px;
  }
}

.carousel-indicators [data-bs-target] {
  width: 6px !important;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.carousel-indicators [data-bs-target] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 5px;
  opacity: 1 !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target]:hover {
  opacity: 0.8;
  background-color: #999;
}

.carousel-indicators .active {
  background-color: #ffffff;
  opacity: 1;
  transform: scale(1.2);
}

.responsive table {
  width: 100% !important;
  table-layout: auto !important;
  border-collapse: collapse;
}

.responsive td,
.responsive th {
  word-break: break-word;
  white-space: normal;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}

.contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-btn.active {
  transform: rotate(45deg);
}

.contact-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Popup container */
.contact-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 998;
  min-width: 200px;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-popup h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

/* Ä°letiÅŸim seÃ§enekleri */
.contact-option {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.contact-option:last-child {
  margin-bottom: 0;
}

.contact-option:hover {
  transform: translateX(5px);
}

.contact-option.phone {
  background: #e3f2fd;
}

.contact-option.phone:hover {
  background: #2196f3;
  color: white;
}

.contact-option.whatsapp {
  background: #e8f5e9;
}

.contact-option.whatsapp:hover {
  background: #25d366;
  color: white;
}

.contact-option svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.contact-option.phone svg {
  fill: #2196f3;
}

.contact-option.whatsapp svg {
  fill: #25d366;
}

.contact-option:hover svg {
  fill: white;
}

.contact-option span {
  font-size: 17px;
  font-weight: 700;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 997;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobil responsive */
@media (max-width: 768px) {
  .contact-btn {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .contact-popup {
    bottom: 85px;
    right: 20px;
    left: 20px;
    min-width: auto;
  }
}

/*categories start*/
.modern-categories {
  padding: 60px 0;
}

.modern-categories .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.modern-categories .category-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: pointer;
}

.modern-categories .category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modern-categories .category-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.modern-categories .category-image img {
  padding: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.modern-categories .category-card:hover .category-image img {
  transform: scale(1.1);
}

.modern-categories .category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modern-categories .category-card:hover .category-overlay {
  opacity: 1;
}

.modern-categories .category-content {
  padding: 20px;
  position: relative;
}

.modern-categories .category-subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #667eea;
  margin-bottom: 10px;
  display: block;
}

.modern-categories .category-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
  text-decoration: none;
}

.modern-categories .category-card:hover .category-title {
  color: #667eea;
}

.modern-categories .category-arrow {
  position: absolute;
  bottom: 15px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.modern-categories .category-card:hover .category-arrow {
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.modern-categories .category-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  color: #667eea;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

@media (max-width: 768px) {
  .modern-categories .category-image {
    height: 400px;
  }

  .modern-categories .category-content {
    padding: 20px;
  }

  .modern-categories .category-title {
    font-size: 20px;
  }
}

/* Animasyon */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-categories .category-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.modern-categories .category-card:nth-child(1) {
  animation-delay: 0.1s;
}
.modern-categories .category-card:nth-child(2) {
  animation-delay: 0.2s;
}
.modern-categories .category-card:nth-child(3) {
  animation-delay: 0.3s;
}
.modern-categories .category-card:nth-child(4) {
  animation-delay: 0.4s;
}
.modern-categories .category-card:nth-child(5) {
  animation-delay: 0.5s;
}
.modern-categories .category-card:nth-child(6) {
  animation-delay: 0.6s;
}
/*categories end*/

/*product-detail start*/
.modern-product-slider {
  padding: 30px 0;
}

.modern-product-slider .product-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.modern-product-slider .carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.modern-product-slider .carousel-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
}

.modern-product-slider .slide-image-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.modern-product-slider .slide-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.modern-product-slider .slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.modern-product-slider .slide-image-wrapper:hover img {
  transform: scale(1.1);
}

.modern-product-slider .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-product-slider .slide-image-wrapper:hover .slide-overlay {
  opacity: 1;
}

.modern-product-slider .zoom-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #667eea;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modern-product-slider .slide-image-wrapper:hover .zoom-icon {
  transform: scale(1);
}

/* Navigation Buttons */
.modern-product-slider .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #667eea;
  transition: all 0.3s ease;
  z-index: 10;
}

.modern-product-slider .carousel-nav:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.modern-product-slider .carousel-nav.prev {
  left: -1px;
}

.modern-product-slider .carousel-nav.next {
  right: -1px;
}

.modern-product-slider .carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.modern-product-slider .carousel-nav:disabled:hover {
  background: white;
  color: #667eea;
  transform: translateY(-50%);
}

/* Dots Navigation */
.modern-product-slider .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.modern-product-slider .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.modern-product-slider .dot.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 30px;
  border-radius: 5px;
}

.modern-product-slider .dot:hover {
  background: #cbd5e0;
}

/* Product Info */
.modern-product-slider .product-info {
  margin-top: 40px;
}

.modern-product-slider .product-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 25px;
  line-height: 1.3;
}

.modern-product-slider .product-description {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
}

/* Responsive */
@media (max-width: 992px) {
  .modern-product-slider .carousel-slide {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .modern-product-slider .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .modern-product-slider .slide-image-wrapper {
    height: 350px;
  }

  .modern-product-slider .product-title {
    font-size: 24px;
  }

  .modern-product-slider .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
/*product-detail end*/

/*products start*/
.modern-products {
  padding: 60px 0;
}

.modern-products .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.modern-products .product-card {
  background: #ecfbff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.modern-products .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modern-products .product-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.modern-products .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.modern-products .product-card:hover .product-image img {
  transform: scale(1.1);
}

.modern-products .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgb(255 113 113 / 22%) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modern-products .product-card:hover .product-overlay {
  opacity: 1;
}

.modern-products .product-content {
  padding: 25px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modern-products .product-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}

.modern-products .product-card:hover .product-title {
  color: #667eea;
}

.modern-products .product-arrow {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  text-decoration: none;
}

.modern-products .product-card:hover .product-arrow {
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.modern-products .product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  color: #667eea;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.modern-products .product-badge.new {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.modern-products .product-badge.featured {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

@media (max-width: 768px) {
  .modern-products .product-image {
    height: 300px;
  }

  .modern-products .product-content {
    padding: 20px;
  }

  .modern-products .product-title {
    font-size: 16px;
  }
}

/* Animasyon */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-products .product-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.modern-products .product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.modern-products .product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.modern-products .product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.modern-products .product-card:nth-child(4) {
  animation-delay: 0.4s;
}
.modern-products .product-card:nth-child(5) {
  animation-delay: 0.5s;
}
.modern-products .product-card:nth-child(6) {
  animation-delay: 0.6s;
}
.modern-products .product-card:nth-child(7) {
  animation-delay: 0.7s;
}
.modern-products .product-card:nth-child(8) {
  animation-delay: 0.8s;
}
/*products end*/
/* Modern Ambulance (Brands) Card CSS */
.ambulance-models-wrapper {
  padding: 80px 0;
  background-color: #ffffff;
  /* Clean white background */
}

.ambulance-model-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f1f1;
}

.ambulance-model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(1, 158, 227, 0.03) 0%,
    rgba(227, 0, 15, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ambulance-model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(1, 158, 227, 0.2);
}

.ambulance-model-card:hover::before {
  opacity: 1;
}

.ambulance-image-wrapper {
  position: relative;
  height: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  z-index: 1;
}

.ambulance-image-wrapper img {
  max-height: 100%;
  max-width: 95%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
  /* Premium drop shadow for the vehicles */
}

.ambulance-model-card:hover .ambulance-image-wrapper img {
  transform: scale(1.1) translateX(5px);
}

.ambulance-content {
  position: relative;
  z-index: 1;
}

.ambulance-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.ambulance-model-card:hover .ambulance-title {
  color: #019ee3;
}

.ambulance-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #1a202c;
  padding: 10px 25px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.ambulance-model-card:hover .ambulance-link-btn {
  background: #019ee3;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(1, 158, 227, 0.4);
}

/* ==========================================================
   PRODUCT DETAIL NEW DESIGN  (v2 — revize)
   ========================================================== */

/* ---- Sayfa Başlık Alanı (Ortalı Breadcrumb Banner) ---- */
.pd-page-header {
  position: relative;
  background: #0d2137;
  padding: 170px 0 44px;
  text-align: center;
  overflow: hidden;
}
.pd-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(1, 158, 227, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 30%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.pd-page-header-inner {
  position: relative;
  z-index: 1;
}
.pd-page-header-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.pd-page-header-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  flex-wrap: wrap;
  justify-content: center;
}
.pd-page-header-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.pd-page-header-breadcrumb a:hover {
  color: #fff;
}
.pd-page-header-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.pd-ph-sep {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 2px;
}

/* ---- Hero ---- */
.pd-hero {
  background: #fff;
  padding: 48px 0 56px;
}

/* ---- Galeri ---- */
.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* outer wrapper: ok butonları için padding, overflow visible */
.pd-gallery-outer {
  position: relative;
  padding: 0 22px;
}

/* Ana görsel kutusu */
.pd-main-img-container {
  position: relative;
  width: 100%;
  min-height: 380px;
  border-radius: 16px;
  background: #ecf4fe;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pd-main-img-container img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}

/* Kategori rozeti (sol üst, görsel içinde) */
.pd-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 8px;
  padding: 5px 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.pd-img-badge svg {
  color: #019ee3;
  flex-shrink: 0;
}

/* Prev / Next ok butonları — container DIŞINDA (padding alanında) */
.pd-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: #374151;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  z-index: 4;
}
.pd-nav-btn:hover {
  background: #019ee3;
  color: #fff;
  border-color: #019ee3;
}
.pd-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.pd-nav-btn:disabled:hover {
  background: #fff;
  color: #374151;
  border-color: #e0e4ea;
}
.pd-nav-prev {
  left: 0;
}
.pd-nav-next {
  right: 0;
}

/* Thumbnail şeridi */
.pd-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.pd-thumb-item {
  flex: 0 0 90px;
  height: 68px;
  border-radius: 8px;
  border: 2px solid #e8ecf1;
  overflow: hidden;
  cursor: pointer;
  background: #f5f8fb;
  transition: all 0.2s;
}
.pd-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
}
.pd-thumb-item.active {
  border-color: #019ee3;
  box-shadow: 0 0 0 1px rgba(1, 158, 227, 0.3);
}
.pd-thumb-item:hover {
  border-color: #019ee3;
}

/* ---- Info (sağ kolon) ---- */
.pd-info {
  padding-top: 4px;
}
.pd-category-badge {
  display: inline-block;
  background: #ecf4fe;
  color: #019ee3;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.pd-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a202c;
  line-height: 1.25;
  margin-bottom: 12px;
}
.pd-short-desc {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Mini ikon satırı — 4 ikon yatay (1×4) */
.pd-mini-icons {
  display: flex;
  gap: 8px;
  margin: 20px 0 26px;
}
.pd-mini-icon-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}
.pd-mini-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.pd-mi-green {
  background: #f0fdf4;
  color: #22c55e;
}
.pd-mi-blue {
  background: #eff6ff;
  color: #3b82f6;
}
.pd-mi-navy {
  background: #ecf4fe;
  color: #019ee3;
}
.pd-mi-cyan {
  background: #ecfeff;
  color: #06b6d4;
}
.pd-mini-icon-label {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
}

/* Aksiyon butonları */
.pd-action-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #019ee3;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.pd-btn-primary:hover {
  background: #0181ba;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(1, 158, 227, 0.35);
  color: #fff;
}
.pd-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #374151;
  font-size: 17px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid #e8ecf1;
  cursor: pointer;
  transition: all 0.25s;
}
.pd-btn-outline:hover {
  border-color: #019ee3;
  color: #019ee3;
  background: #ecf4fe;
}

/* ---- 4 Özellik Şeridi ---- */
.pd-features-strip {
  background: #f5f8fb;
  padding: 44px 0;
  border-top: 1px solid #e8ecf1;
  border-bottom: 1px solid #e8ecf1;
}
.pd-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* rounded-square ikon kutusu (circle değil) */
.pd-feature-icon-sq {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #ecf4fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
}
.pd-feature-text p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.55;
}

/* ---- Sekmeli İçerik ---- */
.pd-tabs-section {
  background: #fff;
  padding: 52px 0 60px;
}
.pd-tab-nav {
  display: flex;
  border-bottom: 2px solid #e8ecf1;
  margin-bottom: 36px;
  gap: 4px;
  flex-wrap: wrap;
}
.pd-tab-btn {
  background: transparent;
  border: none;
  padding: 11px 22px;
  font-size: 17px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
  bottom: -2px;
}
.pd-tab-btn:hover {
  color: #019ee3;
  background: #ecf4fe;
}
.pd-tab-btn.active {
  background: #019ee3;
  color: #fff;
  border-bottom: 2px solid #019ee3;
}
.pd-tab-pane {
  display: none;
}
.pd-tab-pane.active {
  display: block;
}
.pd-placeholder-text {
  color: #9ca3af;
  font-size: 15px;
  padding: 32px 0;
  text-align: center;
}

/* Teknik özellikler — JSON tablosu */
.pd-specs-table-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8ecf1;
}
.pd-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pd-specs-table tr.pd-row-odd {
  background: #fff;
}
.pd-specs-table tr.pd-row-even {
  background: #f5f8fb;
}
.pd-spec-label {
  padding: 11px 16px;
  font-size: 18px;
  font-weight: 700;
  color: #374151;
  border-right: 1px solid #e8ecf1;
  width: 42%;
  vertical-align: middle;
}
.pd-spec-value {
  padding: 11px 16px;
  font-size: 17px;
  color: #4b5563;
  vertical-align: middle;
}

/* Tab sağ görsel */
.pd-tab-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #ecf4fe;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  min-height: 320px;
}
.pd-tab-img {
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  display: block;
}

/* Ağırlık badge (sol-alt) */
.pd-tab-img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #019ee3;
  color: #fff;
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.pd-badge-weight {
  font-size: 15px;
  font-weight: 800;
}
.pd-badge-label {
  font-size: 10px;
  opacity: 0.85;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* Ürün Açıklaması tab */
.pd-desc-content {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
}
.pd-desc-content table {
  width: 100%;
  border-collapse: collapse;
}
.pd-desc-content table td,
.pd-desc-content table th {
  padding: 10px 14px;
  border: 1px solid #e8ecf1;
  vertical-align: middle;
}

/* ---- Alt Bölüm ---- */
.pd-bottom {
  background: #f5f8fb;
  padding: 64px 0;
  border-top: 1px solid #e8ecf1;
}

/* Form Kartı */
.pd-form-card {
  background: linear-gradient(150deg, #0d2137 0%, #0f3460 100%);
  border-radius: 20px;
  padding: 40px 36px;
  color: #fff;
  height: 100%;
}
.pd-form-title {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.pd-form-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
}
.pd-form-input,
.pd-form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
  display: block;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  font-family: inherit;
}
.pd-form-input::placeholder,
.pd-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.pd-form-input:focus,
.pd-form-textarea:focus {
  border-color: rgba(1, 158, 227, 0.65);
  background: rgba(255, 255, 255, 0.1);
}
.pd-form-textarea {
  resize: vertical;
  min-height: 96px;
}
.pd-form-btn {
  width: 100%;
  background: #019ee3;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  margin-top: 4px;
}
.pd-form-btn:hover {
  background: #0181ba;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(1, 158, 227, 0.4);
}

/* İlgili Ürünler */
.pd-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}
.pd-related-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a202c;
  margin: 0;
}
.pd-related-all {
  font-size: 18px;
  font-weight: 600;
  color: #019ee3;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.pd-related-all:hover {
  gap: 9px;
  color: #0181ba;
}

.pd-related-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8ecf1;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.pd-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
  border-color: #c5dff0;
}
.pd-related-card--active {
  border-color: #019ee3;
  box-shadow: 0 0 0 2px rgba(1, 158, 227, 0.18);
}

/* İlgili ürün resmi — beyaz bg + contain */
.pd-related-img {
  background: #fff;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pd-related-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  display: block;
  transition: transform 0.3s;
}
.pd-related-card:hover .pd-related-img img {
  transform: scale(1.05);
}

.pd-related-body {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #e8ecf1;
  background: #fff;
}
.pd-related-name {
  font-size: 25px;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.35;
}
.pd-related-arrow {
  width: 50px;
  height: 50px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  font-size: 22px;
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}
.pd-related-card:hover .pd-related-arrow {
  background: #019ee3;
  color: #fff;
}

/* ---- Teklif Modal ---- */
.pd-modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}
.pd-modal-header {
  background: #a70000;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}
.pd-modal-header-inner {
  display: flex;
  align-items: center;
  gap: 13px;
}
.pd-modal-icon {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.85);
}
.pd-modal-title {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.pd-modal-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin: 2px 0 0;
}
.pd-modal-body {
  padding: 28px 26px;
  background: #fff;
}
.pd-modal-input,
.pd-modal-textarea {
  width: 100%;
  border: 1.5px solid #e8ecf1;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 17px;
  color: #374151;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  font-family: inherit;
  background: #f9fafb;
  display: block;
}
.pd-modal-input::placeholder,
.pd-modal-textarea::placeholder {
  color: #9ca3af;
}
.pd-modal-input:focus,
.pd-modal-textarea:focus {
  border-color: #019ee3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 158, 227, 0.12);
}
.pd-modal-textarea {
  resize: vertical;
  min-height: 120px;
}
.pd-modal-btn {
  width: 100%;
  background: #ff0000;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.pd-modal-btn:hover {
  background: #0181ba;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(1, 158, 227, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .pd-page-header {
    padding: 40px 0 32px;
  }
  .pd-page-header-title {
    font-size: 22px;
  }
  .pd-hero {
    padding: 32px 0 40px;
  }
  .pd-title {
    font-size: 24px;
  }
  .pd-features-strip {
    padding: 32px 0;
  }
  .pd-tabs-section {
    padding: 36px 0 44px;
  }
  .pd-tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .pd-bottom {
    padding: 48px 0;
  }
  .pd-form-card {
    padding: 32px 24px;
  }
}
@media (max-width: 767px) {
  .pd-page-header {
    padding: 32px 0 26px;
  }
  .pd-page-header-title {
    font-size: 18px;
  }
  .pd-title {
    font-size: 22px;
  }
  .pd-action-btns {
    flex-direction: column;
  }
  .pd-btn-primary,
  .pd-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .pd-related-img {
    height: 120px;
  }
  .pd-tab-nav {
    gap: 2px;
  }
  .pd-tab-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .pd-modal-body {
    padding: 22px 16px;
  }
  .pd-modal-header {
    padding: 18px 18px;
  }
}
@media (max-width: 575px) {
  .pd-main-img-container {
    min-height: 260px;
    padding: 16px;
  }
  .pd-main-img-container img {
    max-height: 260px;
  }
  .pd-thumb-item {
    flex: 0 0 72px;
    height: 54px;
  }
  .pd-feature-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .pd-mini-icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
    border-radius: 8px;
  }
  .pd-mini-icon-label {
    font-size: 10px;
  }
  .pd-mini-icons {
    gap: 4px;
  }
  .pd-related-img {
    height: 130px;
  }
  .pd-related-img {
    height: 120px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   AMBULANCE SIREN LIGHT BAR — Footer Top Edge
   Pure CSS, GPU-accelerated (opacity only), zero JS overhead
   ═══════════════════════════════════════════════════════════════ */
.amb-siren-bar {
  position: relative;
  width: 100%;
  height: 20px;
  display: flex;
  overflow: hidden;
  z-index: 2;
}

.amb-siren-left,
.amb-siren-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Base glow layer — left=red, right=blue */
.amb-siren-left::before,
.amb-siren-left::after,
.amb-siren-right::before,
.amb-siren-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: opacity;
}

/* Red side — solid base */
.amb-siren-left::before {
  background: linear-gradient(90deg, rgba(227, 0, 15, 0.3) 0%, rgba(227, 0, 15, 0.7) 50%, rgba(227, 0, 15, 0.3) 100%);
  animation: siren-pulse-a 1.2s ease-in-out infinite;
}
/* Red side — bright flash */
.amb-siren-left::after {
  background: linear-gradient(90deg, transparent 10%, #e3000f 40%, #ff4444 55%, #e3000f 70%, transparent 90%);
  animation: siren-flash-a 1.2s ease-in-out infinite;
  box-shadow: 0 0 12px 3px rgba(227, 0, 15, 0.6), 0 0 30px 6px rgba(227, 0, 15, 0.3);
}

/* Blue side — solid base */
.amb-siren-right::before {
  background: linear-gradient(90deg, rgba(1, 158, 227, 0.3) 0%, rgba(1, 158, 227, 0.7) 50%, rgba(1, 158, 227, 0.3) 100%);
  animation: siren-pulse-b 1.2s ease-in-out infinite;
}
/* Blue side — bright flash */
.amb-siren-right::after {
  background: linear-gradient(90deg, transparent 10%, #019ee3 40%, #44bbff 55%, #019ee3 70%, transparent 90%);
  animation: siren-flash-b 1.2s ease-in-out infinite;
  box-shadow: 0 0 12px 3px rgba(1, 158, 227, 0.6), 0 0 30px 6px rgba(1, 158, 227, 0.3);
}

/* Phase A: Red ON, Blue OFF then swap */
@keyframes siren-pulse-a {
  0%, 10%   { opacity: 1; }
  25%, 30%  { opacity: 0.4; }
  35%, 40%  { opacity: 1; }
  50%       { opacity: 0.15; }
  100%      { opacity: 0.15; }
}
@keyframes siren-flash-a {
  0%        { opacity: 0; }
  5%        { opacity: 1; }
  12%       { opacity: 0.1; }
  18%       { opacity: 0.9; }
  30%       { opacity: 0; }
  100%      { opacity: 0; }
}

/* Phase B: Blue ON (offset by half cycle) */
@keyframes siren-pulse-b {
  0%        { opacity: 0.15; }
  50%       { opacity: 0.15; }
  60%, 70%  { opacity: 1; }
  75%, 80%  { opacity: 0.4; }
  85%, 90%  { opacity: 1; }
  100%      { opacity: 0.15; }
}
@keyframes siren-flash-b {
  0%        { opacity: 0; }
  50%       { opacity: 0; }
  55%       { opacity: 1; }
  62%       { opacity: 0.1; }
  68%       { opacity: 0.9; }
  80%       { opacity: 0; }
  100%      { opacity: 0; }
}

/* prefers-reduced-motion: disable for accessibility */
@media (prefers-reduced-motion: reduce) {
  .amb-siren-left::before,
  .amb-siren-left::after,
  .amb-siren-right::before,
  .amb-siren-right::after {
    animation: none;
  }
  .amb-siren-left::before { opacity: 0.5; }
  .amb-siren-right::before { opacity: 0.5; }
  .amb-siren-left::after,
  .amb-siren-right::after { opacity: 0; }
}

