 :where([class^="ri-"])::before {
            content: "\f3c2";
        }
        
        :root {
            --primary-color: #0E7B6B;
            --secondary-color: #F9F4EC;
            --text-dark: #1f2937;
            --text-light: #6b7280;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--secondary-color);
        }
        
        .smooth-scroll {
            scroll-behavior: smooth;
        }


/* Tablet */
@media (max-width: 1024px) {
    .hero-bg {
        background-position: center top;
        background-size: cover;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-bg {
        background-position: center top;
        background-size: cover;
    }

    /* content adjust */
    .hero-bg > div.relative.z-10 {
        transform: translateY(20px);
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        background-position: center top;
        background-size: cover;
    }

    .hero-bg > div.relative.z-10 {
        transform: translateY(10px);
        padding: 15px;
    }
}

        .badge {
          color: white;          
          background-color: black; 
        }


         /* Alert important */
  .alert{border-radius:14px;padding:14px;border:1px solid #ffd0d0;background:#fff2f2;color:#7a0018}
  .alert strong{color:#b30012}
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(14, 123, 107, 0.1);
        }


        .card-hover img {
    border-radius: 10px; /* Ensure the image inside the card also has rounded corners */
}
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #0a6b5c;
            transform: translateY(-2px);
        }
        
        .floating-buttons {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .floating-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(14, 123, 107, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(14, 123, 107, 0.4);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-content.active {
            max-height: 200px;
        }
        
          .accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.accordion-content.active {
    max-height: 500px;
    opacity: 1;
}

        .lazy-image {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .lazy-image.loaded {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 1rem;
                right: 1rem;
            }
            
            .floating-btn {
                width: 48px;
                height: 48px;
            }
        }
 


/* ====== styles.css inlined ====== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  margin: 0;
  color: #0c2d2b;
  background: #fff;
}

:root {
  --accent: #0e7b6b;
  --accent-2: #105d53;
  --muted: #0c2d2bb3;
  --card: #f5faf9;
  --line: #e6f1ef;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

nav {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

nav .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: #053c36;
  text-decoration: none;
  font-weight: 600;
  margin-right: 14px;
}

.hero {
  padding-top: 28px;
  padding-bottom: 28px;
}

.badge {
  display: inline-block;
  background:  #0a6b5c;
  color: #0c2d2b;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}

h1 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
  margin: 12px 0 8px;
}

h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-top: 32px;
}

p {
  line-height: 1.65;
  color: #ffffff;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn:hover {
  background: var(--accent-2);
}

.btn.secondary {
  background: #12332f0f;
  color: #0c2d2b;
  border: 1px solid var(--line);
}

.notice {
  background: #fff6e5;
  border: 1px solid #ffe1ad;
  color: #7a4c00;
  padding: 12px;
  border-radius: 12px;
}

.calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fafdfc;
}

@media (max-width: 900px) {
  .calc {
    grid-template-columns: 1fr;
  }
}

footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

/* Alert important */
.alert {
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #ffd0d0;
  background: #fff2f2;
  color: #7a0018;
}
.alert strong {
  color: #b30012;
}

/* FAQ */
details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
details + details {
  margin-top: 10px;
}
details summary {
  cursor: pointer;
  font-weight: 700;
}

/* ===== CONTACT SECTION STYLING ===== */
#contact {
  text-align: left;
  margin-top: 60px;
  margin-bottom: 60px;
}

#contact h2 {
  font-size: 28px;
  color: #0c2d2b;
  margin-bottom: 12px;
}

#contact p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

#contact a {
  color: #8C2CEE;
  font-weight: 600;
  text-decoration: none;
}
#contact a:hover {
  text-decoration: underline;
}


#contact .btn {
  min-width: 120px;
  text-align: center;
  font-size: 15px;
  background-color: #0E7B6B;
  color: #ffffff;             
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;        
  transition: all 0.25s ease;
}

#contact .btn.whatsapp:hover {
  background-color: #0a6b5c;     
  transform: translateY(-2px);
  cursor: pointer;
}


  .btn{display:inline-block;background:var(--accent);color:#fff;border:none;border-radius:10px;padding:10px 14px;font-weight:700}

 .btn.secondary{background:#12332f0f;color:#0c2d2b;border:1px solid var(--line)}


/* WhatsApp + Call Buttons */
#contact .btn {
  min-width: 120px;
  text-align: center;
  font-size: 15px;
}

#contact .btn.secondary {
  background: #f7fbfb;
  color: #0c2d2b;
}

#contact .btn.secondary:hover {
  background: #e6f1ef;
}*/

/* Contact Form */
#contact-form {
  background: #f5faf9;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

#contact-form label {
  font-weight: 600;
  color: #0c2d2b;
  display: inline-block;
  margin-bottom: 6px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
  transition: border 0.2s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
}

#contact-form button {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

#contact-form button:hover {
  background: var(--accent-2);
}

#contact #form-status {
  margin-top: 10px;
  color: #2a463f;
  font-weight: 500;
}

@media (max-width: 900px) {
  #contact-form {
    padding: 18px;
  }
  #contact .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}



