

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---- RESET & ROOT ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #1648D4;
  --blue-mid: #2563EB;
  --blue-light: #60A5FA;
  --blue-pale: #EFF6FF;
  --blue-glow: rgba(22, 72, 212, 0.18);
  --red: #DC2626;
  --red-soft: #FEF2F2;
  --dark: #060B18;
  --dark-mid: #0D1526;
  --dark-soft: #111827;
  --surface: #F9FAFB;
  --surface2: #F1F5F9;
  --text: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 64px rgba(22, 72, 212, 0.14);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  cursor: default;
  /* custom cursor */
}

/* ---- CUSTOM CURSOR ---- */
#cursor {
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(22, 72, 212, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.25s, height 0.25s, border-color 0.25s;
}

body:has(a:hover) #cursor {
  width: 16px;
  height: 16px;
  background: var(--red);
}

body:has(a:hover) #cursor-follower {
  width: 52px;
  height: 52px;
  border-color: rgba(220, 38, 38, 0.3);
}

body:has(button:hover) #cursor {
  background: var(--blue-mid);
}

/* ---- SCROLL PROGRESS ---- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 10001;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--red));
  width: 0%;
  transition: width 0.1s;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: var(--transition);
  background-color: white;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  z-index: -1;
}

.navbar.scrolled::before {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
  gap: 11px;
  text-decoration: none;
  animation: slideInLeft 0.8s 0.1s both;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  position: relative;
}

.nav-logo-icon svg {
  width: 42px;
  height: 42px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.nav-logo-text span {
  color: var(--blue);
}

.nav-logo-text small {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  animation: slideInDown 0.8s 0.2s both;
}

.nav-links li a {
  text-decoration: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--blue);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  animation: slideInRight 0.8s 0.1s both;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.87rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.nav-pill:hover {
  background: var(--blue-pale);
  color: var(--blue);
  border-color: #BFDBFE;
}

.nav-cta-btn {
  background: #CC3333;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-cta-btn:hover {
  background: #1038B8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.nav-cta-btn:hover::before {
  opacity: 1;
}
/* MENU TOGGLE BUTTON */

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}


/* MOBILE RESPONSIVE */

@media (max-width: 900px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position: absolute;
    top:76px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction: column;
    gap:20px;
    padding:30px;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-actions{
    display:none;
  }

}

/* ---- SECTION UTILITIES ---- */
.section {
  padding: 110px 6%;
}

.section-sm {
  padding: 70px 6%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #CC3333;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-h .accent {
  color: #333399;
}

.section-h .accent-red {
  color: var(--red);
}

.section-p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  max-width: 540px;
  font-weight: 400;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-blue {
  background: #3399cc;
  color: #fff;
}

.btn-blue::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-blue:hover {
  background: #cc3333;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(22, 72, 212, 0.35);
}

.btn-blue:hover::after {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: red;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

.delay-6 {
  transition-delay: 0.6s !important;
}

/* ---- KEYFRAMES ---- */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatReverse {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes borderDance {

  0%,
  100% {
    border-color: var(--blue);
  }

  33% {
    border-color: var(--blue-light);
  }

  66% {
    border-color: var(--red);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(22, 72, 212, 0);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(22, 72, 212, 0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---- TICKER ---- */
.ticker-section {
  background: #cc3333;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.ticker-section::before,
.ticker-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

/* .ticker-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark), transparent);
}

.ticker-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--dark), transparent);
} */

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.ticker-item span {
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ticker-item .sep {
  color:white;
  font-size: 0.5rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark-mid);
  padding: 80px 6% 36px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-light), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.87rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 270px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.87rem;
  margin-bottom: 12px;
  transition: color 0.25s, gap 0.25s;
}

.footer-col a:hover {
  color: var(--blue-light);
  gap: 10px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.82rem;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

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

/* ---- NAV F-LOGO ---- */
.f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
}

.f-logo-text em {
  color: var(--blue-light);
  font-style: normal;
}

/* ---- RESPONSIVE SHARED ---- */
@media (max-width: 768px) {

  .nav-links,
  .nav-pill {
    display: none;
  }

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

  body {
    cursor: auto;
  }

  #cursor,
  #cursor-follower {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 5%;
  }
}
html,
    body {
      width: 100%;
      overflow-x: hidden !important;
      margin: 0;
      padding: 0;
    }
    .whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 40px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
 z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}