:root {
  --navy: #0a1628;
  --navy-mid: #0f2744;
  --navy-light: #1a3a5c;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --cyan: #00d4ff;
  --green: #00e676;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(90deg, var(--navy-mid), #0d2035);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-left span {
  color: var(--cyan);
  font-size: 15px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
}

.topbar-right span {
  color: var(--gold);
  font-size: 15px;
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0%;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

/* new nav */
.navbar {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 16, 32, 0.97);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(99, 102, 241, 0.2);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 40px;
}

.logo h2 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.3px;
}

nav#main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav#main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 14px;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.1px;
}

nav#main-nav a:hover,
nav#main-nav a.nav-active {
  color: var(--white);
  background: rgba(99, 102, 241, 0.15);
}

nav#main-nav a.nav-cta {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px var(--indigo-glow);
}

nav#main-nav a.nav-cta:hover {
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--indigo-glow);
}

/* end of new nav */

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #7b6cff55, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  line-height: 1.1;
}

.logo-text span {
  color: var(--cyan);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
  display: block;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
  background: rgba(0, 212, 255, 0.1);
}

nav ul li a.active {
  color: var(--cyan);
}

.nav-cta {
  background: linear-gradient(135deg, #00aaff, #0055dd) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 25px !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.4) !important;
  background: rgba(0, 212, 255, 0.1) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 40%, rgba(0, 80, 160, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 60%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    var(--navy);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
  to {
    background-position: 60px 60px;
  }
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 100, 255, 0.12), transparent 70%);
  top: -100px;
  right: -100px;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--green);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge::before {
  content: '●';
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.9s 0.15s ease forwards;
  opacity: 0;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--cyan), #4d9fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 1s 0.3s ease forwards;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.45s ease forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 25px rgba(0, 180, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 180, 255, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  animation: floatUp 1s 0.2s ease forwards;
  opacity: 0;
}

.hero-visual-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-item {
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--cyan);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.tech-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.tech-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}

.tech-icon:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--cyan);
  transform: translateY(-3px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(-40%) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* ── SERVICES SECTION ── */
.services-section {
  padding: 100px 5%;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--cyan);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 100, 200, 0.25), 0 0 0 1px rgba(0, 212, 255, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.card-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  top: -30px;
  right: -30px;
  opacity: 0.4;
  transition: opacity 0.4s;
}

.service-card:hover .card-glow {
  opacity: 0.8;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.card-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 18px;
  position: relative;
  z-index: 1;
  user-select: none;
}

.card-toggle span {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
}

.toggle-arrow {
  width: 32px;
  height: 32px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s;
  color: var(--cyan);
}

.service-card.active .toggle-arrow {
  transform: rotate(180deg);
  background: var(--cyan);
  color: var(--navy);
}

.card-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}

.service-card.active .card-list {
  max-height: 300px;
}

.card-list ul {
  list-style: none;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.card-list li {
  text-decoration: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: none 0.2s;

}


.card-list li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}

.card-list li:hover a {
  color: var(--white);
}


.card-list li:hover {
  color: var(--white);
}

.card-list li::before {
  content: '→';
  color: var(--cyan);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* Card color themes */
.card-hardware .card-glow {
  background: #00d4ff;
}

.card-hardware .card-icon {
  background: rgba(0, 212, 255, 0.12);
}

.card-software .card-glow {
  background: #a855f7;
}

.card-software .card-icon {
  background: rgba(168, 85, 247, 0.12);
}

.card-os .card-glow {
  background: #f97316;
}

.card-os .card-icon {
  background: rgba(249, 115, 22, 0.12);
}

.card-network .card-glow {
  background: #10b981;
}

.card-network .card-icon {
  background: rgba(16, 185, 129, 0.12);
}

.card-cctv .card-glow {
  background: #f43f5e;
}

.card-cctv .card-icon {
  background: rgba(244, 63, 94, 0.12);
}

.card-amc .card-glow {
  background: var(--gold);
}

.card-amc .card-icon {
  background: rgba(201, 168, 76, 0.12);
}

/* ── WHY CHOOSE US ── */
.why-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.04);
  transform: translateX(8px);
}

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h4 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.2);
}

.why-card:first-child {
  grid-column: span 2;
}

.why-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), #4d9fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-card-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── CTA BAND ── */
.cta-band {
  margin: 0 5% 80px;
  background: linear-gradient(135deg, rgba(0, 100, 200, 0.3), rgba(0, 212, 255, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 28px;
  padding: 60px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
  right: -80px;
  top: -80px;
}

.cta-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-text p {
  color: var(--text-muted);
  font-size: 15px;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  color: var(--white);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 6px 30px rgba(0, 180, 255, 0.4);
  flex-shrink: 0;
}

.cta-phone:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 180, 255, 0.55);
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, #0f2027, #0a1628, #0d2540);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 80px 5% 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
  border-left: 3px solid var(--green);
  padding-left: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-col ul li a::before {
  content: '→';
  font-size: 11px;
  color: var(--cyan);
  opacity: 0;
  transition: opacity 0.25s;
}

.footer-col ul li a:hover::before {
  opacity: 1;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

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

.contact-text strong {
  color: var(--white);
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.hours-col h4 {
  border-left-color: var(--gold);
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-muted);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 500;
  color: var(--white);
}

.hours-row .time {
  color: var(--green);
  font-weight: 600;
}

.hours-row .time.emergency {
  color: var(--gold);
}

.phone-support-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.2), rgba(0, 100, 200, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--cyan);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.3s;
}

.phone-support-btn:hover {
  background: rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}

/* footer map col */
.footer-map-col h4 {
  border-left-color: var(--cyan);
}

.map-embed {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.direction-btn:hover {
  background: var(--cyan);
  color: var(--navy);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
}

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

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-icon {
  font-size: 16px;
}

/* WhatsApp Float */
.wa-float {
  position: fixed !important;
  bottom: 95px;
  right: 23px;
  width: 56px;
  height: 56px;
  background: #25d366 !important;
  ;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: waPulse 2.2s ease-in-out infinite;
  transition: transform 0.3s;
}

.wa-float:hover {
  transform: scale(1.12);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-visual {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-left {
    display: none;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  nav ul.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 60px 5% 50px;
    min-height: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    grid-template-columns: 1fr 1fr;
  }

  .why-card:first-child {
    grid-column: span 2;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 6%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-trust {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
  }

  .navbar .container .logo h2 a {
    font-size: 0.75rem;
  }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}