﻿/* =========================================================
   EYEZON Security Systems - Custom Styles (Secury Child)
   ========================================================= */

:root {
  --eyezon-accent: #d84156;
  --eyezon-accent-soft: rgba(216, 65, 86, 0.1);
  --eyezon-text-heading: #ffffff;
  --eyezon-text-body: #c6ced3;
  --eyezon-card-dark: rgba(255, 255, 255, 0.03);
  --eyezon-card-dark-border: rgba(255, 255, 255, 0.08);
}

/* Top bar */
.top-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  height: 42px;
}

/* WhatsApp floating button */
.eyezon-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55);
  text-decoration: none;
  animation: wa-pulse 3s ease-in-out infinite;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.eyezon-wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.eyezon-wa-btn svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@keyframes wa-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

/* Nav CTA */
li.nav-cta-btn > a,
li.nav-cta-btn > a:link,
li.nav-cta-btn > a:visited {
  background: var(--eyezon-accent) !important;
  color: #ffffff !important;
  padding: 9px 22px !important;
  border-radius: 5px !important;
  font-weight: 700 !important;
  margin-left: 8px !important;
  display: inline-block !important;
  transition: all 250ms ease !important;
  box-shadow: 0 4px 16px rgba(216, 65, 86, 0.35) !important;
}

li.nav-cta-btn > a:hover {
  background: #c0002e !important;
  transform: translateY(-2px) !important;
}

/* MeitY marquee */
.eyezon-meity-bar {
  overflow: hidden;
  max-width: 580px;
  height: 42px;
  display: flex;
  align-items: center;
}

.eyezon-meity-track {
  display: flex;
  width: max-content;
  animation: eyezon-marquee 26s linear infinite;
}

.eyezon-meity-msg {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ff6b6b;
  white-space: nowrap;
  padding-right: 80px;
  text-transform: uppercase;
}

@keyframes eyezon-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Logo flip */
.eyezon-logo-flip-wrap {
  display: inline-block;
  perspective: 900px;
  height: 36px;
}

.eyezon-logo-flip-inner {
  position: relative;
  width: 170px;
  height: 36px;
  transform-style: preserve-3d;
  animation: eyezon-flip 7s ease-in-out infinite;
}

@keyframes eyezon-flip {
  0% {
    transform: rotateY(0deg);
  }
  35% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(-180deg);
  }
  85% {
    transform: rotateY(-180deg);
  }
  100% {
    transform: rotateY(-360deg);
  }
}

.eyezon-logo-flip-front,
.eyezon-logo-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
}

.eyezon-logo-flip-back {
  transform: rotateY(180deg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 0 14px;
  justify-content: center;
}

.eyezon-topbar-logo {
  height: 30px;
  width: auto;
  display: block;
}

.eyezon-logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
}

/* =========================================================
   TRUST / CREDENTIALS SECTION ALIGNMENT (Home 02)
   - Dark variant selected because Home 02 section backdrop
     is dark and nearby sections are dark-overlay based.
   ========================================================= */

.eyezon-trust-section {
  position: relative;
  padding: 96px 0;
  background: #0f151b;
  font-family: Jost, sans-serif;
}

.eyezon-trust-section .elementor-container,
.eyezon-trust-section .container,
.eyezon-trust-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.eyezon-trust-section h1,
.eyezon-trust-section h2,
.eyezon-trust-section h3,
.eyezon-trust-section h4,
.eyezon-trust-section h5,
.eyezon-trust-section h6 {
  font-family: "Space Grotesk", sans-serif;
}

.eyezon-trust-section p,
.eyezon-trust-section li,
.eyezon-trust-section span {
  font-family: Jost, sans-serif;
}

.eyezon-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.eyezon-trust-card,
.eyezon-trust-card-dark {
  background: var(--eyezon-card-dark);
  border: 1px solid var(--eyezon-card-dark-border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: all 300ms ease;
}

.eyezon-trust-card:hover,
.eyezon-trust-card-dark:hover {
  background: rgba(216, 65, 86, 0.05);
  border-color: rgba(216, 65, 86, 0.3);
  transform: translateY(-6px);
}

.eyezon-trust-card h3,
.eyezon-trust-card-dark h3 {
  color: var(--eyezon-text-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin: 16px 0 12px;
}

.eyezon-trust-card p,
.eyezon-trust-card-dark p {
  color: var(--eyezon-text-body);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

/* Icon badges - unified theme red */
.eyezon-trust-icon,
.eyezon-badge-icon,
.eyezon-icon-badge,
.eyezon-trust-card .elementor-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 65, 86, 0.1) !important;
  color: #d84156 !important;
  border: 1px solid rgba(216, 65, 86, 0.35);
}

.eyezon-trust-icon svg,
.eyezon-badge-icon svg,
.eyezon-icon-badge svg,
.eyezon-trust-card .elementor-icon svg,
.eyezon-trust-card .elementor-icon i,
.eyezon-trust-card .elementor-icon i:before {
  color: #d84156 !important;
  fill: #d84156 !important;
}

/* Stat cards / numbers */
.eyezon-stat-number {
  font-family: "Space Grotesk", sans-serif;
  color: #d84156;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  display: inline-block;
}

.eyezon-stat-label {
  display: block;
  margin-top: 10px;
  color: #d2d9de;
  font-size: 15px;
  font-weight: 500;
}

/* Spacing harmony with Home 02 sections */
.eyezon-trust-section .elementor-widget-wrap,
.eyezon-trust-section .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding-top: 0;
  padding-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .eyezon-trust-section {
    padding: 84px 0;
  }

  .eyezon-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .eyezon-meity-bar {
    max-width: 280px;
  }

  .eyezon-logo-flip-wrap {
    width: 140px;
  }

  .eyezon-wa-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .eyezon-wa-btn svg {
    width: 26px;
    height: 26px;
  }

  .eyezon-trust-section {
    padding: 72px 0;
  }

  .eyezon-trust-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .eyezon-trust-card,
  .eyezon-trust-card-dark {
    padding: 26px 20px;
  }
}
