
:root{
  --primary: #0d6efd;
  --secondary: #22d3ee;
  --bg-foreground: #0b1220;
  --glass: rgba(255,255,255,.10);
  --glass-border: rgba(255,255,255,.18);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{ font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji"; }

.navbar-toggler-icon{ filter: invert(1); }

.navlink{
  color: rgba(255,255,255,.7) !important;
  font-weight: 600;
}
.navlink:hover{ color: rgba(255,255,255,1) !important; }

.glass-nav{
  background: rgba(10,16,28,.62) !important;
  backdrop-filter: blur(14px);
}

.gradient-bg{
  background: linear-gradient(135deg, #0d6efd 0%, #22d3ee 100%);
}

.btn-gradient{
  background: linear-gradient(135deg, #0d6efd 0%, #22d3ee 100%);
  border: 0;
  color: #fff;
}
.btn-gradient:hover{ opacity: .92; color:#fff; }

.btn-glass{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-glass:hover{ background: rgba(255,255,255,.18); color:#fff; }

.brand-badge{
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items:center;
}
.brand-badge .icon{ width:20px; height:20px; }

.hero{
  background: var(--bg-foreground);
}
.hero-bg{
  position:absolute; inset:0; z-index:0;
}
.hero-bg img{
  width:100%; height:100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,18,32,.95) 0%, rgba(11,18,32,.80) 45%, rgba(11,18,32,.40) 100%);
}

.hero-card{
  max-width: 44rem;
}

.display-lg-2{
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.section{
  position: relative;
}

.glass-card{
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}

.bg-light .glass-card{ background: rgba(255,255,255,.65); border-color: rgba(10,16,28,.08); }
.bg-light .glass-card .text-muted{ color: rgba(11,18,32,.65) !important; }

.hover-lift{ transition: transform .25s ease, box-shadow .25s ease; }
.hover-lift:hover{ transform: translateY(-8px); box-shadow: 0 22px 60px rgba(0,0,0,.22); }

.icon{ width: 22px; height: 22px; display:inline-block; }
.icon-box{
  width: 56px; height: 56px;
  border-radius: 14px;
  display:grid; place-items:center;
}
.icon-box .icon{ width: 26px; height: 26px; }

.icon-circle{
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(13,110,253,.10);
  display:grid; place-items:center;
  margin: 0 auto;
}
.text-gradient{
  background: linear-gradient(135deg, #22d3ee 0%, #0d6efd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead-sm{ font-size: 1.05rem; line-height: 1.8; }

.about-img{ aspect-ratio: 4/3; object-fit: cover; }

.exp-badge{
  position:absolute;
  right: -18px;
  bottom: -18px;
  background: #0d6efd;
  color:#fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(13,110,253,.35);
}

.tracking-wide{ letter-spacing: .14em; }

.step-icon{
  width: 80px; height: 80px;
  border-radius: 18px;
  display:grid; place-items:center;
}
.step-icon .icon{ width: 34px; height: 34px; }

.step-line{
  position:absolute;
  top: 40px;
  left: 60%;
  width: 80%;
  border-top: 2px dashed rgba(11,18,32,.18);
  z-index:0;
}

.gradient-section{
  background: linear-gradient(135deg, #0d6efd 0%, #22d3ee 100%);
}

.stat-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 28px 18px;
  text-align:center;
  backdrop-filter: blur(14px);
}

.glow{
  position:absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .16;
  background: #fff;
}
.glow-1{ width: 320px; height: 320px; top: 40px; left: 30px; }
.glow-2{ width: 420px; height: 420px; bottom: 30px; right: 40px; }
.glow-3{ width: 420px; height: 420px; top: -60px; right: -60px; opacity: .12; }

.avatar{
  width: 42px; height: 42px;
  border-radius: 999px;
  display:grid; place-items:center;
  color:#fff;
  font-weight: 800;
}

.rating .star{ width: 18px; height:18px; color: #ffc107; }

.faq{ padding: 0; overflow:hidden; }
.faq-summary{
  list-style:none;
  padding: 18px 18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 800;
}
.faq-summary::-webkit-details-marker{ display:none; }
.faq-body{ padding: 0 18px 18px 18px; line-height: 1.75; }

.faq-chevron{
  transition: transform .2s ease;
  opacity: .7;
}
details[open] .faq-chevron{ transform: rotate(90deg); opacity: 1; }

.footer-link{
  color: rgba(255,255,255,.55);
  text-decoration: none;
}
.footer-link:hover{ color: rgba(255,255,255,1); text-decoration: underline; }

.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: hsl(142, 70%, 45%);
  display:grid;
  place-items:center;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  z-index: 9999;
  transition: transform .2s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }

/* Reveal animations (Framer-motion feel) */
.reveal, .reveal-initial{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.show{ opacity:1; transform: translateY(0); }
.reveal-initial.show{ opacity:1; transform: translateY(0); }
.reveal[data-delay].show{ transition-delay: calc(attr(data-delay number) * 1ms); }

/* Fallback for browsers not supporting attr() in transition-delay:
   JS will set --d var. */
.reveal.show{ transition-delay: var(--d, 0ms); }

/* Floating snowflake in CTA */
.floaty{
  animation: floaty 2.8s ease-in-out infinite;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* spacing helper */
.py-lg-6{ padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }


/*......................New Add CSS...................*/

/* ===========================
   VIMA PREMIUM UI ADD-ON CSS
   Paste this at END of style.css
   =========================== */

/* ----- Better typography + layout ----- */
:root{
  --vima-bg: #0b1220;
  --vima-text: #0f172a;
  --vima-muted: rgba(15, 23, 42, .70);

  --vima-primary: #0d6efd;
  --vima-secondary: #22d3ee;

  --vima-radius: 22px;
  --vima-radius-sm: 14px;

  --vima-shadow-sm: 0 10px 24px rgba(0,0,0,.10);
  --vima-shadow-md: 0 18px 44px rgba(0,0,0,.16);
  --vima-shadow-lg: 0 28px 70px rgba(0,0,0,.22);
}

body{
  color: var(--vima-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container{
  max-width: 1180px;
}

/* Better section spacing */
.section{
  padding-top: clamp(3.2rem, 6vw, 5.8rem) !important;
  padding-bottom: clamp(3.2rem, 6vw, 5.8rem) !important;
}

/* Headings better spacing */
h1,h2,h3,h4{
  letter-spacing: -0.02em;
}
.lead, .lead-sm{
  line-height: 1.8;
}

/* ----- Navbar polish ----- */
.glass-nav{
  background: rgba(10,16,28,.60) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.navbar .navbar-brand{
  transition: transform .2s ease;
}
.navbar .navbar-brand:hover{
  transform: translateY(-1px);
}
.navlink{
  position: relative;
  padding: .6rem .2rem !important;
}
.navlink.active{
  color: #fff !important;
}
.navlink.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom: .18rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vima-primary), var(--vima-secondary));
}

/* ----- Hero improvements ----- */
.hero-bg img{
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.05);
}
.hero-overlay{
  background:
    radial-gradient(900px 500px at 15% 30%, rgba(34,211,238,.18), transparent 60%),
    linear-gradient(90deg, rgba(11,18,32,.96) 0%, rgba(11,18,32,.82) 45%, rgba(11,18,32,.42) 100%);
}
.hero-card{
  padding-top: 1.2rem;
}

/* ----- Buttons: premium feel ----- */
.btn{
  border-radius: 16px;
}
.btn-gradient{
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(13,110,253,.22);
}
.btn-gradient::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.20), transparent 55%);
  opacity: .0;
  transition: opacity .25s ease;
}
.btn-gradient:hover::before{ opacity: .9; }
.btn-gradient:active{ transform: translateY(1px); }

.btn-glass{
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

/* ----- Cards: cleaner & consistent ----- */
.glass-card{
  border-radius: var(--vima-radius);
  box-shadow: var(--vima-shadow-md);
}
.bg-light .glass-card{
  border-radius: var(--vima-radius);
  box-shadow: var(--vima-shadow-sm);
}
.glass-card p{ margin-bottom: 0; }

/* Softer hover lift */
.hover-lift:hover{
  transform: translateY(-10px);
  box-shadow: var(--vima-shadow-lg);
}

/* ----- Icon boxes look premium ----- */
.icon-box, .icon-circle, .step-icon, .brand-badge{
  border-radius: var(--vima-radius-sm);
}
.icon-box{
  box-shadow: 0 18px 40px rgba(13,110,253,.18);
}

/* ----- Stats section looks more “expensive” ----- */
.gradient-section{
  position: relative;
}
.gradient-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 350px at 20% 20%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(700px 350px at 80% 70%, rgba(255,255,255,.12), transparent 60%);
  pointer-events:none;
}
.stat-card{
  box-shadow: 0 20px 55px rgba(0,0,0,.20);
}

/* ----- Testimonials polish ----- */
.rating .star{
  filter: drop-shadow(0 6px 16px rgba(255,193,7,.25));
}

/* ----- FAQ: nicer open animation ----- */
.faq-body{
  animation: faqIn .25s ease;
}
@keyframes faqIn{
  from{ opacity:0; transform: translateY(-6px); }
  to{ opacity:1; transform: translateY(0); }
}

/* ----- Footer improvements ----- */
.footer{
  background: #070c16 !important;
}
.footer-link{
  transition: opacity .2s ease, transform .2s ease;
}
.footer-link:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* ----- WhatsApp button glow ----- */
.whatsapp-float{
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.whatsapp-float::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: 999px;
  background: rgba(34,197,94,.20);
  filter: blur(14px);
  z-index: -1;
}

/* ----- Better focus states (accessibility) ----- */
a:focus-visible, button:focus-visible, .btn:focus-visible, summary:focus-visible{
  outline: 3px solid rgba(34,211,238,.35);
  outline-offset: 3px;
  border-radius: 14px;
}

/* ----- Reduce motion for users who prefer it ----- */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* ----- Mobile touch improvements ----- */
@media (max-width: 576px){
  .glass-card{ padding: 22px; }
  .btn{ border-radius: 14px; }
  .whatsapp-float{ right: 14px; bottom: 14px; }
}

/* NAVBAR LOGO FIX */
.navbar-logo{
  height: 125px;     /* Control logo height */
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar-brand{
  max-height: 60px;
}

/* Mobile */
@media (max-width: 768px){
  .navbar-logo{
    height: 40px;
  }
}


