/* ----- RESET & BASE ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #07111f;
  font-size: 22px;
  line-height: 1.9;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: 5.2rem; }
h2 { font-size: 3.8rem; }
h3 { font-size: 3.0rem; }
h4 { font-size: 2.2rem; }
h5 { font-size: 1.6rem; }
.lead { font-size: 1.8rem; font-weight: 400; }
p, li, .card-text { font-size: 1.3rem; line-height: 1.9; }
.text-muted { font-size: 1.2rem; }

/* ----- NAVIGATION ----- */
.navbar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  position: sticky;
  top: 0;
  z-index: 1100;
}
.navbar-brand {
  font-size: 2.6rem;
  font-weight: 700;
  color: #07111f;
  letter-spacing: -0.5px;
  cursor: pointer;
  text-decoration: none;
}
.navbar-brand span {
  background: linear-gradient(135deg, #0F4CFF, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-link {
  color: #1a2639 !important;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}
.nav-link:hover {
  background: rgba(15, 76, 255, 0.06);
  color: #0F4CFF !important;
  transform: translateY(-2px);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0F4CFF, #00C2FF);
  transition: 0.3s;
  transform: translateX(-50%);
}
.nav-link:hover::after { width: 60%; }
.nav-link.active {
  background: rgba(15, 76, 255, 0.06);
  color: #0F4CFF !important;
}
.nav-link.active::after { width: 60%; }

/* ----- HERO ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4ff 0%, #dce5fa 50%, #e8effa 100%);
  background-size: 400% 400%;
  animation: gradientShift 14s ease-in-out infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(15,76,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.9); }
}
.hero-badge {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  padding: 0.6rem 2.6rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.15rem;
  color: #0F4CFF;
  box-shadow: 0 8px 24px rgba(15,76,255,0.06);
  display: inline-block;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(255,255,255,0.5);
}
.hero h1 {
  font-size: 5.6rem;
  line-height: 1.05;
  color: #07111f;
  animation: fadeUp 1s ease-out;
}
.hero h1 span {
  background: linear-gradient(135deg, #0F4CFF, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  color: #2f405e;
  font-size: 1.8rem;
  font-weight: 400;
  animation: fadeUp 1.2s ease-out;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-stats { animation: fadeUp 1.4s ease-out; }
.hero-icons {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border-radius: 60px;
  padding: 2.4rem;
  box-shadow: 0 20px 48px -16px rgba(15,76,255,0.08);
  border: 1px solid rgba(255,255,255,0.6);
}

/* ----- STATS ----- */
.stat-number {
  font-size: 4.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0F4CFF, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Space Grotesk', sans-serif;
  display: inline-block;
  animation: countPulse 3s ease-in-out infinite;
}
@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.stat-label {
  color: #2f405e;
  font-weight: 500;
  font-size: 1.4rem;
}

/* ----- BUTTONS ----- */
.btn-primary-custom {
  background: linear-gradient(135deg, #0F4CFF, #00C2FF);
  border: none;
  color: white;
  border-radius: 60px;
  padding: 20px 52px;
  font-weight: 700;
  font-size: 1.4rem;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 16px 32px -12px rgba(15,76,255,0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}
.btn-primary-custom:hover::before { left: 100%; }
.btn-primary-custom:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 24px 48px -16px rgba(15,76,255,0.4);
  color: white;
}
.btn-outline-custom {
  border: 2px solid #0F4CFF;
  color: #0F4CFF;
  background: transparent;
  border-radius: 60px;
  padding: 18px 46px;
  font-weight: 700;
  font-size: 1.4rem;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: #0F4CFF;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -12px rgba(15,76,255,0.2);
}

/* ----- SERVICE CARDS ----- */
.service-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 3.0rem 2.4rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.02);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  border: 1px solid rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(15,76,255,0.03), transparent 60%);
  opacity: 0;
  transition: 0.5s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px -24px rgba(15,76,255,0.12);
  border-color: rgba(15,76,255,0.1);
}
.service-card i {
  font-size: 3.6rem;
  background: linear-gradient(135deg, #0F4CFF, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.6rem;
  border-radius: 20px;
  background-color: rgba(15,76,255,0.04);
  transition: 0.3s;
}
.service-card:hover i { transform: scale(1.1) rotate(-5deg); }
.service-card h4 { font-size: 2.0rem; margin-top: 1.2rem; }
.service-card p { color: #3f5575; font-size: 1.25rem; }

/* ----- PRODUCT CARDS ----- */
.product-card {
  background: white;
  border-radius: 32px;
  padding: 1.8rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.01);
  transition: 0.35s;
  height: 100%;
  border: 1px solid #edf4fe;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px -20px rgba(15,76,255,0.08);
  border-color: rgba(15,76,255,0.15);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 24px;
  background: #f3f8ff;
  margin-bottom: 1rem;
  transition: 0.5s;
}
.product-card:hover img { transform: scale(1.02); }
.product-card h5 { font-size: 1.6rem; }
.product-card p { font-size: 1.15rem; }
.product-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0F4CFF, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-card .badge { font-size: 1.0rem; padding: 6px 16px; }
.btn-outline-custom-sm {
  border: 2px solid #0F4CFF;
  color: #0F4CFF;
  background: transparent;
  border-radius: 60px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-outline-custom-sm:hover {
  background: #0F4CFF;
  color: white;
  transform: translateY(-2px);
}

/* ----- TESTIMONIALS ----- */
.testimonial-card {
  background: white;
  border-radius: 36px;
  padding: 2rem;
  border: 1px solid #eef4fd;
  height: 100%;
  transition: 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(15,76,255,0.06);
}
.testimonial-card p {
  font-size: 1.4rem;
  color: #1f2a44;
  font-style: italic;
}
.testimonial-card .stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 1.6rem;
}
.testimonial-card h6 { font-size: 1.3rem; }
.testimonial-card small { font-size: 1.1rem; }

/* ----- CONTACT ----- */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f6ff 0%, #e4edfa 100%);
}
.contact-card {
  background: white;
  border-radius: 48px;
  padding: 3.2rem;
  box-shadow: 0 20px 48px rgba(0,0,0,0.02);
  border: 1px solid #edf2f9;
  transition: 0.3s;
}
.contact-card:hover { box-shadow: 0 24px 56px -16px rgba(15,76,255,0.06); }
.contact-card i {
  width: 3.0rem;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #0F4CFF, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-card p { font-size: 1.4rem; margin-bottom: 0.8rem; }
.contact-card h2 { font-size: 3.2rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  border-radius: 28px;
  padding: 18px 26px;
  border: 1px solid #dde6f0;
  font-size: 1.2rem;
  background: #fafcff;
  transition: 0.3s;
  width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: #0F4CFF;
  box-shadow: 0 0 0 4px rgba(15,76,255,0.04);
  outline: none;
  transform: scale(1.01);
}
.contact-form label { font-size: 1.2rem; font-weight: 600; }
.map-container iframe {
  width: 100%;
  height: 280px;
  border-radius: 36px;
  border: none;
  transition: 0.3s;
}
.map-container iframe:hover { transform: scale(1.01); }
.social-icons a {
  font-size: 2.2rem;
  color: #1a2639;
  transition: 0.3s;
  margin-right: 1.5rem;
}
.social-icons a:hover { color: #0F4CFF; transform: translateY(-3px); display: inline-block; }

/* ----- FLOATING WHATSAPP ----- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  box-shadow: 0 12px 32px rgba(37,211,102,0.3);
  z-index: 9999;
  transition: 0.3s;
  text-decoration: none;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 12px 48px rgba(37,211,102,0.5); }
}
.floating-whatsapp:hover { transform: scale(1.1) rotate(-5deg); background: #1fa855; color: white; }

/* ----- DIVIDER ----- */
.divider {
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #0F4CFF, #00C2FF);
  border-radius: 4px;
  margin: 0.8rem auto;
  animation: dividerPulse 3s ease-in-out infinite;
}
@keyframes dividerPulse {
  0%, 100% { width: 120px; }
  50% { width: 160px; }
}

/* ----- UTILITIES ----- */
.bg-soft { background: #f8fcff; }
.bg-white { background: white; }
.section-padding { padding: 100px 0; }
.section-title { margin-bottom: 4rem; }
.section-title h2 { font-size: 3.8rem; }
.section-title p { font-size: 1.4rem; }

/* ----- FOOTER ----- */
footer {
  background: #07111f;
  color: #b6cde2;
  padding: 28px 0;
  font-size: 1.1rem;
}
footer a { color: #b6cde2; transition: 0.3s; text-decoration: none; font-size: 1.4rem; }
footer a:hover { color: white; transform: translateY(-2px); display: inline-block; }
footer p { font-size: 1.1rem; }

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #eef4fc; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #0F4CFF, #00C2FF); border-radius: 10px; }

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
  body { font-size: 19px; }
  h1 { font-size: 3.8rem; }
  h2 { font-size: 3.0rem; }
  .hero h1 { font-size: 3.8rem; }
  .stat-number { font-size: 3.6rem; }
  .section-padding { padding: 70px 0; }
  .contact-card { padding: 2.4rem; }
}
@media (max-width: 768px) {
  body { font-size: 17px; }
  h1 { font-size: 3.0rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 2.0rem; }
  .hero h1 { font-size: 3.0rem; }
  .hero .lead { font-size: 1.4rem; }
  .navbar-brand { font-size: 1.8rem; }
  .nav-link { font-size: 0.85rem; padding: 0.3rem 0.6rem; }
  .stat-number { font-size: 2.8rem; }
  .stat-label { font-size: 1.0rem; }
  .section-padding { padding: 50px 0; }
  .floating-whatsapp { width: 64px; height: 64px; font-size: 30px; }
  .contact-card { padding: 1.8rem; }
  .contact-card p { font-size: 1.2rem; }
}
@media (max-width: 576px) {
  body { font-size: 15px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2.0rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero .lead { font-size: 1.2rem; }
  .stat-number { font-size: 2.2rem; }
  .contact-card { padding: 1.4rem; }
  .service-card { padding: 1.8rem; }
  .service-card h4 { font-size: 1.5rem; }
  .product-card h5 { font-size: 1.3rem; }
  .floating-whatsapp { width: 56px; height: 56px; font-size: 26px; }
  .contact-form input, .contact-form textarea, .contact-form select { font-size: 1.0rem; padding: 14px 18px; }
  .map-container iframe { height: 200px; }
}