/* ============================================================
   ABOUT.CSS — RocketPro Tech Solutions
   Theme: Navy #0a1628 | Cyan #00d4ff | Gold #c9a84c | Green #00e676
   Fonts: Times New Roman (headings) | sans-serif (body)
   Matches: amc.css / service.css / product.css
============================================================ */

:root {
  --navy: #0a1628;
  --navy-mid: #0f2744;
  --navy-light: #1a3a5c;
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.10);
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --green: #00e676;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.60);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
}

.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;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

img {
  max-width: 7rem;
  display: block;
  margin-bottom: 10px;
}

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

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

.topbar-left .dot {
  color: var(--cyan);
}

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

.topbar-right .ph {
  color: var(--gold);
}

.topbar-right a {
  color: var(--white);
  text-decoration: none;
}

/* ── 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 5%;
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.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;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 19px;
  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.72);
  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.09);
}

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(-2px);
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.4);
}

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

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

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 5% 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(0, 80, 180, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.09) 0%, transparent 50%),
    var(--navy);
}

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

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

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 100, 255, 0.1), transparent 70%);
  top: -140px;
  right: -100px;
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

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

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

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

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

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

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.hero h1 {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 18px;
  animation: fadeUp 0.9s 0.1s ease both;
}

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

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 20px;
  line-height: 1.75;
  animation: fadeUp 1s 0.22s ease both;
}

.hero-tags {
  font-size: 13px;
  color: rgba(0, 212, 255, 0.75);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s ease both;
}

.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.30);
}

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

.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;
}

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

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

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

/* ── SECTION COMMONS ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  background: rgba(0, 212, 255, 0.09);
  border: 1px solid rgba(0, 212, 255, 0.22);
  color: var(--cyan);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

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

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

/* ── TECH PHILOSOPHY ── */
.tech-philosophy {
  padding: 100px 5%;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 38px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.philosophy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #4d9fff, var(--cyan));
  opacity: 0;
  transition: opacity 0.4s;
}

.philosophy-item:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 55px rgba(0, 80, 180, 0.25);
}

.philosophy-item:hover::before {
  opacity: 1;
}

.phil-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 212, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--cyan);
  margin: 0 auto 20px;
}

.philosophy-item h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.philosophy-item:hover h3 {
  color: var(--cyan);
}

.philosophy-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── ABOUT SECTION ── */
.about-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

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

.about-left .section-label {
  display: inline-block;
  margin-bottom: 18px;
}

.about-left h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 24px;
}

.about-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px 22px;
  transition: all 0.35s;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 16px 40px rgba(0, 80, 180, 0.22);
}

.about-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.about-card h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.about-card:hover h3 {
  color: var(--cyan);
}

.about-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── WORKFLOW / TIMELINE ── */
.workflow-section {
  padding: 100px 5%;
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan-dim), rgba(0, 212, 255, 0.2), var(--cyan-dim));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item.left {
  flex-direction: row;
}

.timeline-item.right {
  flex-direction: row-reverse;
}

.timeline-item img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  flex-shrink: 0;
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 30px 26px;
  flex: 1;
  position: relative;
  transition: all 0.35s;
}

.timeline-content:hover {
  border-color: rgba(0, 212, 255, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 80, 180, 0.22);
}

.tl-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.timeline-content:hover h3 {
  color: var(--cyan);
  transition: color 0.3s;
}

.timeline-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── PROCESS ── */
.process {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  width: 190px;
  flex-shrink: 0;
  transition: all 0.35s;
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 16px 40px rgba(0, 80, 180, 0.22);
}

.step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
}

.step-icon {
  width: 50px;
  height: 50px;
  margin: 10px auto 14px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cyan);
}

.process-step h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cyan);
}

.process-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.protocol-arrow {
  font-size: 22px;
  color: rgba(0, 212, 255, 0.35);
  padding: 0 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ── VALUES ── */
.values {
  padding: 100px 5%;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #4d9fff, var(--cyan));
  opacity: 0;
  transition: opacity 0.4s;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 55px rgba(0, 80, 180, 0.25);
}

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

.val-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}

.value-card h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.value-card:hover h3 {
  color: var(--cyan);
}

.value-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── STATS ── */
.stats {
  padding: 80px 5%;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 0;
}

.stat {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.35s;
}

.stat:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 16px 40px rgba(0, 80, 180, 0.22);
}

.stat h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), #4d9fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-plus {
  font-size: 0.6em;
}

.stat p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ── SUPPORT PANEL ── */
.support-panel {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1000px;
  margin: 0 auto;
}

.support-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 38px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 22px 55px rgba(0, 80, 180, 0.25);
}

.sup-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto;
}

.support-card h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.3s;
}

.support-card:hover h3 {
  color: var(--cyan);
}

.support-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.sup-btn {
  display: block;
  text-align: center;
  padding: 12px 0;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: auto;
}

.sup-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.sup-btn.primary {
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 180, 255, 0.28);
}

.sup-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 180, 255, 0.45);
  color: var(--white);
}

/* ── CTA BAND ── */
.cta-band {
  margin: 0 5% 80px;
  background: linear-gradient(135deg, rgba(0, 100, 200, 0.28), rgba(0, 212, 255, 0.13));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 28px;
  padding: 58px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  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.09), transparent 70%);
  right: -80px;
  top: -80px;
  pointer-events: none;
}

.cta-text h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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

/* ── 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;
}

/* ── 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 p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 16px 0 22px;
  max-width: 260px;
}

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

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

.social-link:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 16px;
  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(--muted);
  font-size: 14px;
  transition: all 0.25s;
  display: block;
}

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

.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.07);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

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

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

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

.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(--muted);
}

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

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

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

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

.phone-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.18), rgba(0, 100, 200, 0.18));
  border: 1px solid rgba(0, 212, 255, 0.24);
  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.14);
  transform: translateY(-2px);
}

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

.map-embed {
  width: 100%;
  height: 155px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  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-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.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(--muted);
}

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

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

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

/* ── WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 95px;
  right: 23px;
  width: 56px;
  height: 56px;
  background: #25D366;
  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.13);
}

@keyframes waPulse {

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

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

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .stats {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
    padding: 80px 5%;
  }

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

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width:900px) {
  .support-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .protocol-arrow {
    display: none;
  }

  .process-container {
    gap: 16px;
  }

  .process-step {
    width: 160px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item,
  .timeline-item.right {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item img {
    width: 100%;
    height: 200px;
  }
}

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

  .hamburger {
    display: flex;
  }

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

  nav ul.open {
    display: flex;
  }

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

  .philosophy-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-right {
    grid-template-columns: 1fr;
  }

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

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

  .support-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

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

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

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

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

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

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .value-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .stats {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .process-step {
    width: 100%;
    max-width: 260px;
  }

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