@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0F172A;
  --blue: #2563EB;
  --cyan: #06B6D4;
  --bg: #F8FAFC;
  --text: #1E293B;
  --muted: #64748B;
  --border: #E2E8F0;
  --card-bg: #FFFFFF;
  --gradient: linear-gradient(135deg, #0F172A, #1E3A8A);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
  padding: 0.75rem 0;
  background: rgba(255,255,255,1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 #E2E8F0;
}
#navbar.scrolled {
  background: rgba(255,255,255,1);
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
}
.nav-link {
  position: relative;
  color: #0F172A;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #06B6D4);
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: #2563EB;
}
.nav-link:hover::after {
  width: 100%;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: var(--cyan); top: -200px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: var(--blue); bottom: -100px; left: -100px; animation-delay: 3s; }
.orb-3 { width: 300px; height: 300px; background: #7C3AED; top: 40%; left: 40%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-whatsapp-btn {
  position: fixed;
  right: 30px;
  bottom: 96px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7AF7A1 16%, #25D366 55%, #1AA24A 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(37,213,102,0.25), 0 0 0 6px rgba(37,213,102,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  z-index: 10000;
  text-decoration: none;
  overflow: hidden;
}

.hero-whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 55%);
  opacity: 0.6;
  transform: scale(0.85);
}

.hero-whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(37,213,102,0.15);
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

.hero-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 26px 46px rgba(37,213,102,0.3), 0 0 0 8px rgba(37,213,102,0.1);
  filter: brightness(1.05);
}

.hero-whatsapp-btn svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 768px) {
  .hero-whatsapp-btn {
    right: 18px;
    bottom: 86px;
    width: 54px;
    height: 54px;
  }
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.glass-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
}

/* Glass card for values section */
.values-glass-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(31,38,135,0.1);
}

.values-glass-card:hover {
  background: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31,38,135,0.15);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,182,212,0.15);
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none; cursor: pointer;
  box-shadow: 0 8px 25px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37,99,235,0.5);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
}

.hero-dashboard {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
  position: relative;
}

.dashboard-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA41; }

.metric-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 16px;
}
.metric-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.metric-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.metric-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.metric-change { font-size: 0.7rem; color: #10B981; font-weight: 600; }

.chart-bars {
  display: flex; align-items: flex-end; gap: 6px;
  height: 80px; margin-bottom: 16px;
}
.bar {
  flex: 1; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  opacity: 0.7;
  animation: bar-grow 1.5s ease-out forwards;
  transform-origin: bottom;
}
@keyframes bar-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.floating-tag {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.78rem;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  animation: float-tag 4s ease-in-out infinite;
}
.tag-1 { top: -20px; right: 20px; animation-delay: 0s; }
.tag-2 { bottom: 30px; left: -30px; animation-delay: 2s; }
.tag-3 { top: 50%; right: -40px; animation-delay: 1s; }

@keyframes float-tag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── SECTION COMMON ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(6,182,212,0.1));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.service-card:hover .service-icon svg { color: #fff; }

/* ── WHY CHOOSE US ── */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
  border-color: rgba(37,99,235,0.2);
}
.feature-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

/* ── AI SECTION ── */
#ai-section {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
#ai-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.ai-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
}
.ai-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(6,182,212,0.3);
  transform: translateY(-4px);
}

/* ── PROCESS ── */
.process-step {
  position: relative;
  text-align: center;
}
.process-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}
.process-connector {
  position: absolute;
  top: 28px; left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0.3;
}

/* ── INDUSTRIES ── */
.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.1);
  border-color: var(--blue);
}
.industry-card:hover .industry-icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.industry-card:hover .industry-icon svg { color: #fff; }

.industry-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

/* Modern Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Horizontal Scroll Container */
.industries-scroll-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.industries-scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0;
  flex: 1;
  scrollbar-width: none;
}

.industries-scroll-track::-webkit-scrollbar {
  display: none;
}

.scroll-arrow {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  border: none;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.scroll-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  background: #f5f5f5;
}

.scroll-arrow:active {
  transform: scale(0.95);
}

.scroll-arrow svg {
  stroke: #000000;
  stroke-width: 2.5;
}

.scroll-arrow-left {
  order: -1;
}

.scroll-arrow-right {
  order: 1;
}

.industry-card-modern {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  min-width: 300px;
  flex-shrink: 0;
}

.industry-card-modern:hover .industry-image {
  transform: scale(1.05);
}

.industry-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.industry-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
  z-index: 2;
}

.industry-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid #000000;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: fit-content;
}

.industry-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.industry-description {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* Responsive Industries Grid */
@media (max-width: 1024px) {
  .industries-scroll-track {
    gap: 20px;
  }

  .industry-card-modern {
    min-width: 280px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .industries-scroll-container {
    gap: 12px;
  }

  .industries-scroll-track {
    gap: 16px;
  }

  .industry-card-modern {
    height: 340px;
    min-width: 240px;
  }

  .scroll-arrow {
    width: 40px;
    height: 40px;
  }

  .scroll-arrow svg {
    width: 20px;
    height: 20px;
  }

  .industry-content {
    padding: 20px;
  }

  .industry-title {
    font-size: 1.1rem;
  }

  .industry-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .industries-scroll-container {
    gap: 8px;
  }

  .industries-scroll-track {
    gap: 12px;
  }

  .industry-card-modern {
    height: 300px;
    min-width: 200px;
  }

  .scroll-arrow {
    width: 36px;
    height: 36px;
  }

  .scroll-arrow svg {
    width: 18px;
    height: 18px;
  }

  .industry-content {
    padding: 16px;
  }

  .industry-title {
    font-size: 1rem;
  }

  .industry-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 20px; right: 28px;
  font-size: 5rem;
  font-family: 'Sora', sans-serif;
  color: var(--blue);
  opacity: 0.1;
  line-height: 1;
}
.stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-input {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.3s ease;
  outline: none;
}
.contact-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
  background: #fff;
}
.contact-input::placeholder { color: #94A3B8; }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  position: relative;
}
.footer-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: block;
  margin-bottom: 10px;
}
.footer-link:hover { color: var(--cyan); }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ── MOBILE MENU ── */
#mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.99);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu .nav-link { font-size: 1.3rem; color: #0F172A; }
#mobile-menu #close-menu { color: #0F172A; }

/* ── STATS ── */
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SCROLL TO TOP ── */
#scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: #ffffff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); }
#scroll-top svg { color: #000000; }

/* ── AOS CUSTOM ── */
[data-aos] { transition-duration: 0.7s !important; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .process-connector { display: none; }
  .hero-visual { margin-top: 3rem; }
  .tag-2, .tag-3 { display: none; }
}

/* ── MAP ── */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── ABOUT ILLUSTRATION ── */
.about-visual {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.08));
  border-radius: 24px;
  border: 1px solid rgba(37,99,235,0.15);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(6,182,212,0.15), transparent);
  border-radius: 50%;
}

/* ── COUNTER ANIMATION ── */
.counter { display: inline-block; }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SHINE EFFECT ── */
@keyframes shine {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  background-size: 1000px 100%;
  animation: shine 3s infinite;
  pointer-events: none;
}


/* ═══════════════════════════════════════════
   MODERN FOOTER STYLES
   ═══════════════════════════════════════════ */

.footer {
  background: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Accent bar at top */
.footer-accent-bar {
  height: 0;
  background: transparent;
  position: relative;
  display: none;
}

.footer-brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  color: #FFFFFF;
}

.footer-brand-name span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-top: 2px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.footer-col a {
  font-size: 0.9rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #FFFFFF;
}

.footer-bottom strong {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-bottom-links a {
  font-size: 0.9rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.find-us-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #000000;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.find-us-map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Main footer container */
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

/* Main content area */
.footer-main {
  margin-bottom: 40px;
}

/* Grid layout for footer columns */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

/* Brand section */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}

.footer-brand-name span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #000000;
  margin-top: 2px;
}

/* Description text */
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #FFFFFF;
  margin-bottom: 24px;
}

/* Social links */
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-whatsapp svg { fill: #FFFFFF; }
.social-whatsapp:hover svg { fill: #25D366; }

.social-linkedin svg { fill: #FFFFFF; }
.social-linkedin:hover svg { fill: #0A66C2; }

.social-facebook svg { fill: #FFFFFF; }
.social-facebook:hover svg { fill: #1877F2; }

.social-instagram svg { fill: #FFFFFF; }
.social-instagram:hover svg { fill: #E1306C; }

.social-x svg { fill: #FFFFFF; }
.social-x:hover svg { fill: #000000; }

.social-youtube svg { fill: #FFFFFF; }
.social-youtube:hover svg { fill: #FF0000; }

/* Footer columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: #B0B0B0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.contact-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-with-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Find us on map button */
.find-us-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #000000;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.find-us-map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.find-us-map-btn svg {
  width: 18px;
  height: 18px;
}

/* ── LEARN MORE BUTTON ── */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: #2563EB;
  margin-top: 16px;
}

.learn-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(37, 99, 235, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  padding: 14px 24px;
  font-size: 1rem;
}

.learn-more-btn:hover::before {
  left: 0;
}

.learn-more-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.learn-more-btn:hover svg {
  transform: translateX(4px);
}

/* Footer bottom section */
.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #FFFFFF;
}

.footer-bottom strong {
  color: #FFFFFF;
  font-weight: 600;
}

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

.footer-bottom-links a {
  font-size: 0.9rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 48px 20px 0;
  }

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

  .footer-col:first-child {
    grid-column: 1 / -1;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    padding: 40px 16px 0;
  }

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

  .footer-col:first-child {
    grid-column: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

  .footer-col ul {
    gap: 10px;
  }

  .footer-bottom {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}
