/* ===== VARIABLES ===== */
:root {
  --blue:        #2563EB;
  --blue-light:  #60A5FA;
  --blue-dark:   #1D4ED8;
  --purple:      #7C3AED;
  --dark:        #060D1F;
  --dark-2:      #0D1F4A;
  --navy:        #0F172A;
  --text:        #1E293B;
  --muted:       #64748B;
  --border:      #E2E8F0;
  --light:       #F8FAFF;
  --white:       #FFFFFF;
  --radius:      16px;
  --shadow:      0 4px 24px rgba(37, 99, 235, 0.08);
  --shadow-lg:   0 16px 48px rgba(37, 99, 235, 0.16);
  --transition:  0.3s ease;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; line-height: 1.25; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-light); }
img { max-width: 100%; display: block; }
section { padding: 96px 0; overflow: hidden; }
.section-bg { background: var(--light); }
.section-dark { background: var(--navy); }

/* AOS mobile fix */
@media (max-width: 768px) { [data-aos-delay] { transition-delay: 0 !important; } }

/* ===== SECTION TITLES ===== */
.section-title { text-align: center; margin-bottom: 56px; }
.section-title .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-dark .section-title .label {
  color: var(--blue-light);
  background: rgba(96, 165, 250, 0.12);
}
.section-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.section-title h2 span { color: var(--blue); }
.section-dark .section-title h2 { color: var(--white); }
.section-dark .section-title h2 span { color: var(--blue-light); }
.section-title p {
  margin: 14px auto 0;
  max-width: 540px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}
.section-dark .section-title p { color: rgba(255,255,255,0.55); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
.back-to-top i { font-size: 22px; color: var(--white); line-height: 0; }
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-3px); }
.back-to-top.active { visibility: visible; opacity: 1; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 997;
  height: 72px;
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}
#header.header-scrolled {
  background: rgba(6, 13, 31, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
#header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
#header .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
#header .logo a { color: var(--white); }
#header .logo img { max-height: 36px; }

/* ===== NAVBAR ===== */
.navbar { padding: 0; }
.navbar ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.navbar a, .navbar a:focus {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar a:hover, .navbar .active { color: var(--white); background: rgba(255,255,255,0.08); }
.navbar li { position: relative; }

.mobile-nav-toggle {
  display: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  line-height: 0;
  padding: 8px;
  margin-right: -8px;
}
@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}

@media (max-width: 480px) {
  #header .logo { font-size: 18px; gap: 7px; }
  #header .logo img { max-height: 28px; }
}
.navbar-mobile {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 31, 0.97);
  z-index: 999;
  overflow: hidden;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 28px;
  padding: 8px;
}
.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 16px; right: 16px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  background: #0D1F4A;
  border-radius: var(--radius);
  padding: 12px 0;
  overflow-y: auto;
  gap: 2px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 15px 24px;
  font-size: 16px;
  border-radius: 0;
  color: rgba(255,255,255,0.8);
}
.navbar-mobile .active, .navbar-mobile a:hover { background: rgba(37,99,235,0.2); color: var(--white); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #060D1F 0%, #0D1A3D 55%, #130D3D 100%);
}

/* Glowing orbs — pure CSS, zero loading time */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  bottom: -150px; left: 5%;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation-delay: -2s;
  animation-duration: 12s;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Grid pattern overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

#hero .container { position: relative; z-index: 1; padding-top: 72px; }
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.hero-badge span { width: 7px; height: 7px; background: var(--blue-light); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

#hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
#hero h1 .highlight {
  background: linear-gradient(90deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.45);
  transition: 0.3s;
}
.btn-primary-hero:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,99,235,0.55); color: var(--white); }
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.3s;
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.12); color: var(--white); transform: translateY(-3px); }

/* Hero bottom stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 40px;
}
.hero-stat {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat .num span { color: var(--blue-light); }
.hero-stat p { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-hint i { font-size: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

@media (max-width: 768px) {
  /* Hero centering */
  .hero-content { text-align: center; max-width: 100%; }
  .hero-badge { justify-content: center; }
  #hero p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .btn-primary-hero, .btn-ghost-hero { flex: 1; min-width: 140px; justify-content: center; }

  /* Hero stats */
  .hero-stats { flex-direction: column; gap: 24px; margin-top: 48px; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 0 0 24px; text-align: center; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .scroll-hint { display: none; }
}

/* ===== CLIENTS ===== */
.clients { padding: 48px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.clients-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.clients-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.clients-row img {
  height: 52px;
  width: auto;
  padding: 0 20px;
  filter: grayscale(1);
  opacity: 0.45;
  transition: 0.35s ease;
  object-fit: contain;
}
.clients-row img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.06); }

/* ===== SERVICES ===== */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--blue), var(--purple));
  border-radius: 0 0 4px 4px;
  transition: height 0.4s ease;
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { height: 100%; }
.service-num {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: 0.35s;
}
.service-icon i { font-size: 28px; color: var(--blue); transition: 0.3s; }
.service-icon img { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.service-card:hover .service-icon i { color: var(--white); }
.service-card h4 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 0; }

/* ===== ABOUT ===== */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 24px; box-shadow: var(--shadow-lg); width: 100%; }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(37,99,235,0.4);
}
.about-badge .big { font-family: 'Poppins', sans-serif; font-size: 40px; font-weight: 800; display: block; line-height: 1; }
.about-badge .small { font-size: 13px; opacity: 0.85; margin-top: 4px; }
.about-content { padding-left: 20px; }
.about-content h2 { font-size: 38px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 20px; }
.about-content h2 span { color: var(--blue); }
.about-content .lead { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; border-left: 3px solid var(--blue); padding-left: 18px; }
.about-content p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
@media (max-width: 991px) {
  .about-content { padding-left: 0; margin-top: 60px; }
  .about-badge { right: 10px; }
}

/* ===== TOOLS GRID ===== */
.tools-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 14px;
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: 0.25s ease;
  cursor: default;
}
.tool-chip i { font-size: 14px; color: var(--blue); }
.tool-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(37,99,235,0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.12);
}

/* ===== PROCESS (NEW SECTION) ===== */
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(50% + 50px);
  right: calc(-50% + 50px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  opacity: 0.25;
}
.col-lg-3:last-child .process-step::after { display: none; }
@media (max-width: 991px) { .process-step::after { display: none; } }
.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}
.process-step h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--navy); }
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.portfolio-filters li {
  cursor: pointer;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  transition: 0.3s;
  background: transparent;
}
.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
/* Keep the original selectors main.js uses */
#portfolio-flters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; list-style: none; padding: 0; margin-bottom: 40px; }
#portfolio-flters li {
  cursor: pointer;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  transition: 0.3s;
}
#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

.portfolio-item {
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.portfolio-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,13,31,0.95) 0%, rgba(37,99,235,0.6) 100%);
  opacity: 0;
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 16px;
}
.portfolio-info h4 { font-size: 17px; font-weight: 600; color: var(--white); margin: 0 0 6px; }
.portfolio-info .preview-link,
.portfolio-info .details-link {
  position: absolute;
  top: 16px;
  right: 48px;
  font-size: 22px;
  color: var(--white);
  transition: 0.3s;
}
.portfolio-info .details-link { right: 16px; }
.portfolio-info .preview-link:hover,
.portfolio-info .details-link:hover { color: var(--blue-light); }
.portfolio-item:hover .portfolio-info { opacity: 1; }

/* ===== COUNTS ===== */
.count-card {
  text-align: center;
  padding: 48px 20px 36px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: 0.35s ease;
}
.count-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(37,99,235,0.15); }
.count-card .count-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  border: 4px solid var(--white);
}
.count-card .count-icon i { font-size: 22px; color: var(--white); line-height: 0; }
/* Keep purecounter working with original selector */
.count-box { padding: 44px 20px 32px; width: 100%; text-align: center; background: var(--white); border-radius: 20px; border: 1px solid var(--border); position: relative; transition: 0.35s ease; }
.count-box:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.count-box i { position: absolute; top: -28px; left: 50%; transform: translateX(-50%); font-size: 22px; background: linear-gradient(135deg, var(--blue), var(--purple)); color: var(--white); width: 56px; height: 56px; border-radius: 50%; border: 4px solid var(--white); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,99,235,0.4); }
.count-box span { font-family: 'Poppins', sans-serif; font-size: 46px; font-weight: 800; color: var(--navy); display: block; line-height: 1; margin-bottom: 8px; }
.count-box p { font-size: 14px; color: var(--muted); font-weight: 500; margin: 0; }

/* ===== FAQ ===== */
.faq-list { list-style: none; padding: 0; }
.faq-list li { border-bottom: 1px solid var(--border); }
.faq-list .question {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  color: var(--navy);
  transition: 0.3s;
}
.faq-list .question:not(.collapsed) { color: var(--blue); }
.faq-list i { position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 14px; color: var(--blue); }
.faq-list p { padding: 4px 0 24px; color: var(--muted); line-height: 1.75; font-size: 15px; margin: 0; }
.faq-list .icon-show { display: none; }
.faq-list .collapsed { color: var(--navy); }
.faq-list .collapsed .icon-show { display: inline-block; }
.faq-list .collapsed .icon-close { display: none; }

/* ===== CONTACT ===== */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.2); transform: translateY(-4px); }
.contact-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.contact-card .icon i { font-size: 26px; color: var(--blue); }
.contact-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0; }
.contact-card a:hover { color: var(--blue); }

/* Info-box alias (used by main site selectors) */
.info-box { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 32px 24px; text-align: center; height: 100%; transition: var(--transition); }
.info-box:hover { box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.2); transform: translateY(-4px); }
.info-box i { font-size: 26px; color: var(--blue); width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.12)); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.info-box h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.info-box p, .info-box a { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0; }
.info-box a:hover { color: var(--blue); }

.contact-form {
  background: var(--light);
  border-radius: 24px;
  padding: 44px;
  border: 1px solid var(--border);
}
.contact-form h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: 0.3s;
  outline: none;
  margin-bottom: 16px;
  display: block;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form textarea { height: 150px; resize: none; }
.contact-form .row-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 576px) { .contact-form .row-inputs { grid-template-columns: 1fr; } }
.contact-form .status { font-size: 14px; border-radius: 10px; padding: 14px 18px; margin-bottom: 16px; display: none; }
.contact-form .loading { background: var(--light); color: var(--muted); display: none; padding: 14px; border-radius: 10px; margin-bottom: 16px; text-align: center; }
.contact-form .loading::before { content: ''; display: inline-block; width: 18px; height: 18px; border: 2px solid var(--blue); border-top-color: transparent; border-radius: 50%; animation: spin 0.8s linear infinite; margin-right: 10px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.contact-form .error-message { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; display: none; padding: 14px 18px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; }
.contact-form .sent-message { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; display: none; padding: 14px 18px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; }
.btn-submit {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
  width: 100%;
  letter-spacing: 0.3px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,99,235,0.45); }

/* Map */
.mapa { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); height: 100%; min-height: 400px; }
.mapa iframe { width: 100%; height: 100%; min-height: 400px; display: block; border: 0; }

/* ===== FOOTER ===== */
#footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}
#footer .footer-top { padding: 72px 0 48px; }
#footer .footer-brand h3 { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
#footer .footer-brand h3 span { color: var(--blue-light); }
#footer .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.85; max-width: 300px; }
#footer .social-links { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
#footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
}
#footer .social-links a:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-3px); }
#footer .footer-links h4 { font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
#footer .footer-links p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.85; }
#footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}
#footer .footer-bottom span { color: var(--blue-light); }
