:root {
  --primary: #732b2c;
  --primary-dark: #732b2c;
  --secondary: #12B7C9;
  --accent: #000;
  --tint: #EFF7FC;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--accent);
  background: #fff;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Montserrat", sans-serif;
}

.font-mono-num {
  font-family: "Montserrat", sans-serif;
}
.text-secondary{
  color:#732b2c !important;
}

.grad-tint {
  background: radial-gradient(circle at 15% 20%, #E8F6FA 0%, #FFFFFF 45%), radial-gradient(circle at 85% 0%, #E7F1FC 0%, #FFFFFF 40%);
}

.grad-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.grad-dark {
  background: linear-gradient(160deg, #0A2A40 0%, #0B6FB8 100%);
}

.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.card-shadow {
  box-shadow: 0 10px 40px -12px rgba(11, 111, 184, 0.18);
}

.card-shadow-lg {
  box-shadow: 0 25px 60px -15px rgba(11, 111, 184, 0.25);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  transition: all .25s ease;
  box-shadow: 0 8px 20px -6px rgba(11, 111, 184, 0.5);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(11, 111, 184, 0.55);
}

.btn-whatsapp {
  background: #1FAE58;
  color: #fff;
  transition: all .25s ease;
  box-shadow: 0 8px 20px -6px rgba(31, 174, 88, 0.45);
}

.btn-whatsapp:hover {
  background: #188C46;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  transition: all .25s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    scroll-behavior: auto;
  }
}

/* Header */
#site-header {
  transition: box-shadow .3s ease, padding .3s ease, background-color .3s ease;
}

#site-header.scrolled {
  box-shadow: 0 8px 30px -10px rgba(11, 111, 184, 0.18);
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 60;
}

/* Floating action buttons */
.fab {
  position: fixed;
  right: 22px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  box-shadow: 0 10px 25px -6px rgba(0, 0, 0, 0.25);
  transition: transform .2s ease;
}

.fab:hover {
  transform: scale(1.08);
}

/* Before/after slider */
.ba-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/5;
  cursor: ew-resize;
  user-select: none;
}

.ba-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B6FB8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 3 12 9 18'/><polyline points='15 6 21 12 15 18'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.ba-tag {
  position: absolute;
  top: 14px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: 9999px;
  color: #fff;
}

/* animated counter number */
.counter {
  font-variant-numeric: tabular-nums;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 111, 184, 0.18);
  border-color: var(--primary);
}

::selection {
  background: var(--secondary);
  color: #fff;
}

.marquee-track {
  animation: scroll-left 28s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16/10;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 20, 30, 0.28);
  transition: background .25s ease;
}

.video-card:hover .video-play {
  background: rgba(10, 20, 30, 0.42);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}

.video-card:hover .video-play-btn {
  transform: scale(1.12);
}

@media (max-width: 767px) {
  .desktop-fab {
    display: none;
  }
  .mobile-btn{
    display: none;
  }
  .phone-call{
  background: #732b2c;
  color: white !important;
}
.phone-wp{
 background-color: #1fae58;
 color: white !important;
}
}
.footer-logo{
  background-color: white;
  padding:20px;
  border-radius: 20px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo img{
  width: 200px;
}
.footer-desc{
  color: black;
}
nav a{
  text-transform: uppercase;
  font-weight: 700;
}