/* --- Custom Inline Form Styles --- */
.custom-inline-form {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(177, 70, 70, 0.07);
  padding: 18px 32px;
  max-width: 1050px;
  margin: 32px auto 18px auto;
}

.custom-inline-form .form-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
  text-align: left;
}

.custom-inline-form .form-row {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  width: 100%;
}

.custom-inline-form input[type="text"],
.custom-inline-form input[type="email"],
.custom-inline-form input[type="tel"] {
  padding: 8px 12px;
  border: 1px solid #e2bcbc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  min-width: 140px;
  background: #fffaf0;
  color: #222;
  transition: border 0.2s;
}

.custom-inline-form input:focus {
  border-color: var(--primary);
}

.custom-inline-form button[type="submit"] {
  background: var(--btn-bg);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 180px;
}

.custom-inline-form button[type="submit"]:hover {
  background: var(--btn-hover);
}

@media (max-width: 700px) {
  .custom-inline-form {
    padding: 14px 8px;
    margin: 10px;
  }

  .custom-inline-form .form-title {
    margin-bottom: 8px;
    font-size: 1.1rem;
    text-align: left;
  }

  .custom-inline-form .form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .custom-inline-form input,
  .custom-inline-form button[type="submit"] {
    min-width: 0;
    width: 100%;
    font-size: 1rem;
  }
}

/* Basic reset */
:root {
  --primary: #b14646;
  --accent: #10100f;
  --bg: #fffaf0;
  --text: #222;
  --radius: 12px;
  --btn-bg: linear-gradient(90deg, #ba0000 0%, #6f0000 100%);
  --btn-hover: linear-gradient(180deg, #ba0000 0%, #1f0000 100%);
  --btn-text: #080808;
  --navbar-height: 64px;
  --navbar-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
  color: #222;
  background: var(--bg);
  padding-top: var(--navbar-height);
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: white;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  box-shadow: var(--navbar-shadow);
  backdrop-filter: blur(4px);
}

.logo {
  height: 40px;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 2rem;
  color: #000000;
}

.nav-center span {
  color: var(--primary);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 45px;
}

.nav-language button {
  background: var(--btn-bg);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.call-btn {
  background: red;
  color: white;
  padding: 8px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  transition: background 0.2s;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
}

/* Language button (placed left of call button) */
.lang-btn {
  background: var(--btn-bg);
  color: #fff;
  border: 1px solid rgba(177, 70, 70, 0.12);
  padding: 6px 8px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  gap: 6px;
  width: 150px;
  height: 45px;
  will-change: transform;
  animation: wobbel 1s ease-in-out 6;
}

/* subtle wobble keyframes */
@keyframes wobbel {
  0%   { transform: translateX(0) rotate(0deg); }
  15%  { transform: translateX(-6px) rotate(-3deg); }
  30%  { transform: translateX(6px) rotate(3deg); }
  45%  { transform: translateX(-3px) rotate(-1.5deg); }
  60%  { transform: translateX(3px) rotate(1deg); }
  75%  { transform: translateX(-1px) rotate(-0.5deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

/* respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lang-btn {
    animation: none;
    transition: background 0.2s;
  }
}

.lang-btn:hover {
  background: var(--btn-hover);
}

.call-btn svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: white !important;
  stroke: none !important;
}

.call-btn:hover {
  background: #b10000;
}

/* Accordion styles */
.accordion {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms ease, opacity 250ms ease;
  padding: 0 0;
  color: #222;
}

.accordion[aria-hidden="false"] {
  opacity: 1;
}

.accordion-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0;
}

.acc-row {
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 6px;
  padding: 10px;
  border: 1px solid #eee;
}

.acc-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acc-name {
  font-weight: 600;
}

.acc-price {
  color: #6c757d;
}

.acc-right {
  text-align: center;
}

.price-btn {
  background: var(--btn-bg);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.note {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}




.customization-options span {
  color: var(--primary);
  font-weight: 800;
}

/* Features accordion: mirror payment accordion styles */
.features-accordion {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms ease, opacity 250ms ease;
  padding: 0 0;
  color: #222;
}

.features-accordion[aria-hidden="false"] {
  opacity: 1;
}

.features-list {
  padding: 12px 0;
}

.features-list ul {
  list-style-position: outside;
  list-style-type: disc;
  color: #222;
  margin: 0.4rem 0;
  padding-left: 1.35rem; /* align wrapped lines under the item text */
}

/* active/open state styles */
.card.open .card-btn {
  background: var(--btn-bg);
}

@media (max-width: 700px) {
  .acc-row {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .acc-right {
    text-align: left;
  }
}

/* Banner section */
.banner {
  max-width: 1100px;
  margin: 28px auto;
  padding: 0 16px;
}

.banner-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.banner-text {
  margin-top: 16px;
  text-align: center;
}

.banner-text h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--primary);
  text-align: left;
}

.banner-text p {
  color: #444;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* banner row: text left, side image right */
.banner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 22px 16px;
  background: white;
  box-shadow: 1px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.banner-text {
  flex: 1;
}

.banner-side {
  width: 320px;
  flex: 0 0 320px;
  height: 320px;
  /* keep square so circular mask works */
  border-radius: 999px;
  overflow: hidden;
  /* mask the image inside the rounded container */
  border: 4px solid rgba(255, 138, 138, 0.219);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-side-img {
  width: 100%;
  height: 104%;
  object-fit: contain;
  /* ensure image fills and is cropped to circle */
  display: block;
}

@media (max-width: 900px) {}

@media (max-width: 700px) {
  .banner-side {
    overflow: hidden;
    position: relative;
    height: auto;
  }

  .banner-side-img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -10px;
    object-fit: cover;
  }

  .banner-row {
    flex-direction: column;
  }

  .banner-side {
    width: 100%;
    flex-basis: auto;
    height: auto;
    /* let image determine height on small screens */
  }

  .banner-text {
    text-align: center;
  }
}

/* Cards */
.card-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.card h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.5rem;
}

/* Fourth section: features with heading + bullets */
.features-section {
  background: transparent;
  padding: 30px 0px 10px 30px;
  border-top: 1px solid #ffd6d6d4;
}

.features-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.features-section h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--primary);
  text-align: center;
  font-weight: 500;
  margin-top: 18px;
  margin-left: -30PX;
}

.features-list {
  /* act as a normal block container; lists inside are styled separately */
  padding-left: 0;
  color: var(--text);
  line-height: 1.2;
  margin: 0 auto;
  display: block;
  text-align: left;
}

.features-list li {
  margin-bottom: 10px;
}

/* Floating WhatsApp button (left bottom) */
.whatsapp-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.24);
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
  transition: transform 160ms ease;
}

/* Mobile-only right-side WhatsApp button (hidden on desktop) */
.whatsapp-btn--mobile {
  display: none;
  /* hidden by default */
}

/* pulsing blinking animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.28);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    transform: scale(1.06);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

/* Show mobile button on small screens and position to right */
@media (max-width: 700px) {
  .whatsapp-btn {
    display: none;
    /* hide left button on mobile to avoid duplication */
  }

  .whatsapp-btn--mobile {
    display: inline-flex;
    position: fixed;
    right: calc(18px + env(safe-area-inset-right));
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: whatsapp-pulse 2000ms infinite ease-out;
  }

  .whatsapp-btn--mobile svg {
    width: 28px;
    height: 28px;
    fill: #fff;
  }
}

.card p {
  color: #8f0500;
  margin-bottom: 14px;
  font-size: 1.5rem;
  font-weight: 700;
}

.card p span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: line-through;
}

.card-btn {
  display: inline-block;
  padding: 8px 12px;
  background: var(--btn-bg);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.container h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 2rem;
}

.container h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 500;
}

.site-footer {
  padding: 24px;
  text-align: center;
  color: #777;
  margin-top: 40px;
}

.note-container .note {
  margin-top: 12px;
  font-size: 1rem;
  color: #000000;
  font-weight: 400;
}

.note-container .italic {
  font-size: 0.9rem;
  color: #666666;
  font-style: italic;
  margin-top: 6px;
}

/* Fix list wrapping inside .note-container so wrapped lines align
   under the list item's text (not underneath the marker).
   Use explicit list-style types and enough left padding. */
.note-container ul,
.note-container ol {
  list-style-position: outside;
  margin: 0.6rem 0;
  padding-left: 1.35rem; /* ensures wrapped lines align with item text */
}

.note-container ul {
  list-style-type: disc;
}

.note-container ol {
  list-style-type: decimal;
}

.note-container ul li,
.note-container ol li {
  margin-bottom: 0.45rem;
  line-height: 1.4;
  display: list-item; /* ensure normal list layout */
  text-indent: 0; /* prevent negative indents */
}

.note-container ul li::marker,
.note-container ol li::marker {
  color: var(--primary);
}

h3 .features-title {
  text-transform: titlecase;
  font-size: 0.8rem;
}

.features-title {
  text-transform: titlecase;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .card-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .card-section {
    grid-template-columns: 1fr;
  }

  .nav-center {
    font-size: 1.2rem;
  }

  .logo {
    height: 34px;
  }

  .banner-text h1 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .banner-side {
    width: 100%;
    height: 100%;
    border-radius: 10%;
    object-fit: cover;
  }
}

/* Mobile-only: show nav-middle beside logo (inline) while preserving centered title */
@media (max-width: 700px) {
  .navbar {
    padding: 8px 12px;
  }

  /* Make left area a compact horizontal group */
  .nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 6;
  }

  /* Place nav-middle directly to the right of logo */
  .nav-middle {
    display: flex;
    align-items: center;
    margin-left: 6px;
    pointer-events: none; /* allow taps to pass through to logo/call if needed */
    justify-content: end;
  }

  /* keep the visual center title but disable pointer events so it doesn't block other controls */
  .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-85%);
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 5;
    pointer-events: none;
  }

  /* compact the right call button and move it slightly right so left group fits */
  .nav-right {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    gap: 27px;
  }

  .nav-right .call-btn {
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: 25px;
  }

  /* make language button compact on mobile and sit left of call button */
  .nav-right .lang-btn {
    padding: 6px 6px;
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--btn-bg);
    color: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    width: 70px;
    height: 30px;
  }
}

.achievers-section {
  background: #fff;
  margin: 2rem auto;
  border-radius: var(--radius);
  max-width: 1100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 2.5rem 2rem;
  text-align: center;
}

.achievers-section h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.achievers-gallery {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.achiever-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 2, 0.6, 1);
  opacity: 0.7;
  border: 3px solid transparent;
  background: #fff;
  filter: grayscale(0.3) brightness(0.95);
}

.achiever-img.active,
.achiever-img:hover {
  width: 130px;
  height: 130px;
  opacity: 1;
  border: 3px solid var(--primary);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 108, 223, 0.18);
  filter: grayscale(0) brightness(1.08) drop-shadow(0 0 16px #f7b73188);
  transform: scale(1.12) rotate(-2deg);
}

.achievers-btn {
  background: black;
  color: white;
  border: none;
  padding: 0.8em 2em;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  margin-top: 1.5rem;
  box-shadow: 0 2px 8px rgba(45, 108, 223, 0.07);
  display: inline-block;
}

.achievers-btn:hover {
  background: var(--btn-bg);
  color: rgb(0, 0, 0);
  box-shadow: 0 4px 16px rgba(45, 108, 223, 0.13);
}

.achievers-banner-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 1.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  /* default, overridden on mobile */
}

.achievers-banner-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 1100px;
  object-fit: contain;
  border-radius: 1em;
  box-shadow: 0 2px 12px rgba(45, 108, 223, 0.07);
  /* background: #f7faff; */
  display: block;
}

.download {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 1rem;
    }

    .download .download-link {
      text-decoration: none;
      display: inline-block;
    }

    .download .download-link button {
      cursor: pointer;
    }

    /* Polished primary-style button for download */
    .customization-right button {
      background: var(--btn-bg);
      color: #fff;
      border: 0;
      padding: 0.6rem 1rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.95rem;
      line-height: 1;
      box-shadow: 0 6px 18px rgba(229, 13, 13, 0.12);
      transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
      display: inline-block;
    }

    .download .download-link button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(229, 13, 13, 0.12);
      opacity: 0.98;
    }

    .download .download-link button:focus {
      outline: 3px solid rgba(229, 13, 13, 0.18);
      outline-offset: 3px;
    }

    .download .download-link button[disabled] {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    /* Mobile: full-width button and spacing */
    @media (max-width:760px) {
      .download {
        margin: 0.75rem 0;
      }

      .download {
        justify-content: center;
      }

      .download .download-link {
        width: 100%;
      }

      .download .download-link button {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
      }
    }

@media (max-width: 900px) {
  .achievers-banner-wrapper {
    max-width: 98vw;
    margin: 1.2rem auto 1rem auto;
  }

  .achievers-banner-img {
    max-height: 340px;
  }
}

@media (max-width: 600px) {
  .achievers-banner-img {
    max-height: 480px;
    border-radius: 0.7em;
  }
}

@media (max-width: 700px) {
  .achievers-section {
    padding: 1.2rem 0.5rem;
    border-radius: 8px;
    max-width: 100vw;
  }

  .achievers-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }

  .achiever-img,
  .achiever-img.active {
    width: 38vw;
    max-width: 120px;
    height: 38vw;
    max-height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
  }

  .achievers-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .features-section .container {
    text-align: left;
    padding: 0 8px;
  }

  .features-list {
    display: block;
    margin: 0;
    text-align: left;
    padding-left: 0;
  }

  .features-list ul {
    padding-left: 18px;
  }
}

.achiever-desc {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: #444;
  min-height: 2.2em;
  transition: color 0.3s;
}

.customization-panel {
      display: flex;
      gap: 1rem;
      align-items: stretch;
      justify-content: center;
      max-width: 1100px;
      margin: 2rem auto;
      padding: 1rem;
      box-sizing: border-box;
    }

    .customization-left,
    .customization-right {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      box-shadow: 0 6px 18px rgba(16, 16, 15, 0.04);
    }

    .customization-left {
      flex: 0 0 320px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .live-counter {
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--primary, #e53935);
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 0.25rem;
    }

    .counter-label {
      font-size: 0.95rem;
      color: var(--muted, #5f666b);
      margin-top: 0.25rem;
    }

    .customization-right {
      flex: 1 1 130px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .call-panel h4 {
      margin: 0;
      font-size: 1.5rem;
      text-align: center;
    }

    .call-panel span {
      font-weight: 700;
      color: var(--primary, #e53935);
    }

    /* Responsive: stack on small screens */
    @media (max-width: 760px) {
      .customization-panel {
        flex-direction: column;
        padding: 0.75rem;
        margin: 1rem;
      }

      .customization-left {
        flex: none;
        width: 100%;
        padding: 0.9rem;
      }

      .customization-right {
        width: 100%;
        padding: 0.9rem;
        height: auto;
        gap: 16px;
      }

      .live-counter {
        font-size: 2.1rem;
      }
    }