/* ═══════════════════════════════════════════
   NAVBAR — Glassmorphism
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Shimmer Top Border */
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(40, 135, 255, 0.8), transparent);
  animation: navbarShimmer 4s infinite linear;
  z-index: -1;
}

@keyframes navbarShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.05);
  top: 1rem;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.6rem 1.5rem;
  width: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo img {
  height: 44px;
  width: auto;
  transition: var(--transition-base);
  border-radius: 6px;
  object-fit: contain;
}

.navbar.scrolled .navbar__logo img {
  height: 40px;
}

.navbar__links {
  display: none;
  gap: 2rem;
}

.navbar__links a {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  position: relative;
  padding: 0.25rem 0;
}



.navbar__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s var(--ease-smooth);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a:hover {
  color: var(--primary);
}

.navbar__cta {
  display: none;
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #000;
  border-radius: 2px;
  transition: var(--transition-base);
}



.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right 0.5s var(--ease-smooth);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.mobile-menu__overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu__links a {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.mobile-menu__links a:hover,
.mobile-menu__links a.active {
  background: var(--primary-subtle);
  color: var(--primary);
}

.mobile-menu__cta {
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::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: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

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

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--large {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--glow {
  animation: glowPulse 2.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   CARDS — Glassmorphism + Tilt
   ═══════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: 1.5rem;
}

.card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  background: var(--primary-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: var(--transition-base);
}

.card:hover .card__icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.card__link i {
  transition: transform 0.3s;
}

.card:hover .card__link i {
  transform: translateX(5px);
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════ */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  animation: float 3s ease-in-out infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer__brand .navbar__logo img {
  height: 50px;
  margin-bottom: 1.25rem;
}

.footer__brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition-base);
}

.footer__socials a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer__col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__col ul a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer__col ul a i {
  font-size: 1.1rem;
  color: var(--primary);
}

.footer__bar {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════
   PAGE HERO (reusable for inner pages)
   ═══════════════════════════════════════════ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a2e 50%, var(--text-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  top: -100px;
  right: -100px;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #64b5f6;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  bottom: -80px;
  left: -80px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Components
   ═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .navbar__links {
    display: flex;
  }

  .navbar__cta {
    display: block;
  }

  .navbar__hamburger {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}
