:root {
  --primary-blue: #004F98;
  --primary-green: #ACFF3D;
  --secondary-blue: #49AFD5;
  --white: #fff;
  --dark-text: #333;
  --light-bg: #fafafa;
  --light-gray: #f9f9f9;
  --border-radius-lg: 25px;
  --border-radius-xl: 50px;
  --font-family: 'Poppins', sans-serif;
  --box-shadow-light: 0 5px 20px rgba(0,0,0,0.1);
  --box-shadow-medium: 0 4px 15px rgba(0,0,0,0.05);
  --box-shadow-heavy: 0 5px 15px rgba(0,0,0,0.4);
}

body,
h1, h2, h3, h4, h5, h6, p, a, span, li, ol, ul, div, section, article, header, footer, main, aside, nav, form, input, textarea, button {
  font-family: var(--font-family);
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--dark-text);
}

#hero {
  background: url('../img/bg-bubbles.png') no-repeat center / cover, linear-gradient(to bottom, var(--white), var(--secondary-blue));
  animation: bubbleFloat 10s ease-in-out infinite, heroWaterWobble 6s ease-in-out infinite;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 75% 94%, 50% 95%, 25% 94%, 0 92%);
  padding-bottom: 10rem;
}

.logo {
  max-width: 200px;
  margin: 0 auto;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary-blue);
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
}

#hero h3 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 900;
  background: linear-gradient(to bottom, var(--white) 10%, var(--primary-blue) 40%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#form {
  padding: 3rem 0;
  background-color: var(--light-bg);
  position: relative;
  z-index: 10;
}

.form-wrapper {
  z-index: 100;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-light);
  padding: 2rem 5rem;
  position: relative;
  z-index: 200;
  margin-top: -180px;
}

/* Water wobble animation - outline only */
@keyframes waterWobble {
  0% {
    border-radius: var(--border-radius-lg);
    border-color: rgba(73, 175, 213, 0.3);
  }
  12.5% {
    border-radius: 25px 30px 25px 30px;
    border-color: rgba(73, 175, 213, 0.4);
  }
  25% {
    border-radius: 30px 25px 30px 25px;
    border-color: rgba(73, 175, 213, 0.3);
  }
  37.5% {
    border-radius: 25px 35px 25px 30px;
    border-color: rgba(73, 175, 213, 0.5);
  }
  50% {
    border-radius: 35px 25px 35px 25px;
    border-color: rgba(73, 175, 213, 0.3);
  }
  62.5% {
    border-radius: 25px 30px 25px 35px;
    border-color: rgba(73, 175, 213, 0.4);
  }
  75% {
    border-radius: 30px 25px 30px 25px;
    border-color: rgba(73, 175, 213, 0.3);
  }
  87.5% {
    border-radius: 25px 30px 25px 30px;
    border-color: rgba(73, 175, 213, 0.5);
  }
  100% {
    border-radius: var(--border-radius-lg);
    border-color: rgba(73, 175, 213, 0.3);
  }
}

.form-wrapper h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.button.primary,
.button[type="submit"] {
  border-radius: var(--border-radius-xl);
  height: 50px;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--primary-blue);
  background-color: var(--primary-green);
  padding: 0 1rem;
}

.form-fields {
  height: 50px;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--primary-blue);
  padding: 0 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary-blue);
  background-color: var(--white);
}

/* Benefits Section */
#benefits {
  padding-bottom: 2rem;
  background-color: var(--light-gray);
}

#benefits h2 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

#benefits h2 span {
  color: var(--secondary-blue);
}

#benefits h4 {
  color: #555;
  font-weight: 400;
  margin-bottom: 2rem;
}

#benefits h3 {
  color: var(--primary-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

#benefits p {
  color: var(--dark-text);
  line-height: 1.7;
}

#benefits .glass {
  max-width: 80%;
  height: auto;
  margin-top: 2rem;
}

.callout.alert, 
.callout.success {
  border-radius: var(--border-radius-xl);
}

/* Testimonials Slider - Slick Specific */

.testimonials-section > h3 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.testimonial-slick-slider .slick-slide {
  padding: 1rem;
  text-align: center;
}

.testimonial-content {
  min-height: 150px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow-medium);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  margin-bottom: 0rem;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Slick Arrow Styling */
.testimonial-slick-slider .slick-prev,
.testimonial-slick-slider .slick-next {
  width: 40px;
  height: 40px;
  z-index: 100;
}

.testimonial-slick-slider .slick-prev:before,
.testimonial-slick-slider .slick-next:before {
  font-size: 40px;
  color: var(--primary-green);
  opacity: 1;
}

.testimonial-slick-slider .slick-prev {
  left: 0px;
}

.testimonial-slick-slider .slick-next {
  right: 0px;
}

.orbit-bullets {
  display: none !important;
}

#cta {
  background: var(--light-bg);
}

#video {
  padding-top: 5rem;
}

#video h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

#video p {
  margin-bottom: 2rem;
}

/* Video unmute button styling */
.video-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.unmute-btn {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 79, 152, 0.9);
  color: white;
  border: none;
  border-radius: var(--border-radius-lg);
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.unmute-btn:hover {
  background: rgba(0, 79, 152, 1);
  transform: translateX(-50%) scale(1.1);
  box-shadow: var(--box-shadow-heavy);
}

.unmute-btn i {
  font-size: 1.1rem;
}

.unmute-btn.muted {
  background: rgba(255, 0, 0, 0.9);
}

.unmute-btn.muted:hover {
  background: rgba(255, 0, 0, 1);
}

.cta-content {
  background: var(--primary-blue);
  padding: 2rem;
  position: relative;
  border-radius: var(--border-radius-lg);
}

.cta-content .simbol {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: 100px;
}

.cta-content h2,
#footer-cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-content p,
#footer-cta p {
  color: var(--white);
}

.cta-content button,
#footer-cta button {
  background-color: var(--primary-green);
}

#footer-cta {
  margin-top: 5rem;
  background: url('../img/bg-bubbles.png') no-repeat center / cover, var(--primary-blue);
  padding: 3rem;
  animation: bubbleFloat 12s ease-in-out infinite reverse;
}

#footer-cta p {
  margin-bottom: 0rem;
}

#footer-cta h2 span {
  color: var(--primary-green);
}

#footer {
  padding: 2rem 0;
}

.glass {
  margin-bottom: 2rem;
}


/* Floating bubbles animation */
@keyframes bubbleFloat {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 3% -2%;
  }
  50% {
    background-position: -2% 3%;
  }
  75% {
    background-position: 2% -1%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Hero water wobble animation */
@keyframes heroWaterWobble {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 75% 94%, 50% 95%, 25% 94%, 0 92%);
  }
  25% {
    clip-path: polygon(0 0, 100% 0, 100% 93%, 75% 95%, 50% 94%, 25% 95%, 0 93%);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 91%, 75% 93%, 50% 96%, 25% 93%, 0 91%);
  }
  75% {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 75% 92%, 50% 93%, 25% 96%, 0 94%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 75% 94%, 50% 95%, 25% 94%, 0 92%);
  }
}


/* Small only */
@media screen and (max-width: 39.9375em) {}

/* Medium and up */
@media screen and (min-width: 40em) {}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {}

/* Large and up */
@media screen and (min-width: 64em) {
  #hero {
    padding-bottom: 10rem;
  }
  
  .form-wrapper {
    margin-top: -150px;
  }
  
  h1 {
    font-size: 5rem;
  }
}