/* --- 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;
}

* {
  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);
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: white;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.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: 12px;
}

.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;
}
.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;
}

/* 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: disc inside;
  color: #222;
  padding-left: 6px;
}

/* 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: 60px 16px;
  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;
}

.features-list {
  list-style: disc;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.2;
  margin: 0 auto;
  display: inline-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;
}

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;
  }
}

.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;
}

@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;
}
