:root {
  --color-primary: #047857;  
  --color-secondary: linear-gradient(to right, #84cc16, #65a30d);

  --color-bg: #ffffff;
  --color-bg-alt: #ecfdf5;

  --color-text: #064e3b;
  --color-text-muted: #6b7280;

  --color-hero-bg: #bbf7d0;
  --color-hero-overlay: rgba(0, 0, 0, 0.35);
  --color-hero-btn: linear-gradient(to right, #84cc16, #4d7c0f);
  --color-hero-btn-hover: linear-gradient(to right, #10b981, #059669);

  --color-footer-bg: #064e3b;
  --color-footer-alt: #065f46;
  --color-footer-text: #d1fae5;
  --color-footer-link: #a7f3d0;
  --color-footer-link-hover: #bbf7d0;

  --radius-sm: 6px;
  --radius-md: 12px;
  --btn-padding-vertical: 10px;
  --btn-padding-horizontal: 16px;
  --btn-transition: 0.2s ease-in-out;
}


/* Reset / base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: Arial, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ===========================
   Headings & Paragraphs
   =========================== */


/* Sizes */
h1 { font-size: 2rem; }   /* ~32px */
h2 { font-size: 1.5rem; }/* ~28px */
h3 { font-size: 1.3rem; } /* ~24px */
h4 { font-size: 1.2rem; }/* ~20px */
h5 { font-size: 1.1rem; } /* ~18px */
h6 { font-size: 1rem; }   /* ~16px */

/* Paragraphs */
p {
  margin: 0 0 1em;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Muted / secondary text */
p.muted,
.small-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}




/* Responsive scaling for larger screens */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; } /* ~40px */
  h2 { font-size: 2.125rem; }/* ~34px */
  h3 { font-size: 1.75rem; } /* ~28px */
  h4 { font-size: 1.5rem; }  /* ~24px */
  h5 { font-size: 1.25rem; } /* ~20px */
  h6 { font-size: 1.1rem; }  /* ~18px */
  p  { font-size: 1.05rem; }
}

/* Layout container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px;
}

/* Navbar */
  .navbar {
    background: var(--color-primary);
    color: #fff;
  }
  .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .navbar-brand .logo { height: 40px; }

  /* Filter form container with transition */
  .filter {
    display: none;
  }
  .filter.active {
    max-height: 300px; /* enough to show content */
    display: block;
  }


/* Wrapper around each select */
.filter-form .opt {
  flex: 1 1 300px; /* grow, shrink, minimum 250px */
}

/* Make selects fill their flex space */
.filter-form select {
  width: 100%;
    padding: 8px;
    border-radius: var(--radius-md);
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: var(--btn-padding-vertical) var(--btn-padding-horizontal);
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;

}
.btn:hover { transform: translateY(-1px); }

.btn-secondary {
  background: var(--color-secondary);
  color: white;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: white; border-color: var(--color-primary); color:var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); border-color: var(--color-secondary); color:white; }
.btn-sm { padding: 6px 10px; font-size: 0.9rem; border-radius: 6px; }
.btn-lg { padding: 12px 18px; font-size: 1.05rem; border-radius: 12px; }

/* Responsive helper */
@media (max-width: 480px) {
  .container { padding: 10px; }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  font-size: 14px;
  margin: 0 auto;
  padding: 12px 20px;
}
.breadcrumb-nav a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-nav span {
  margin: 0 6px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: bold;
}

/* Hero Section */
.hero {breadcrumb-nav
  color: #fff;
  text-align: center;
  padding: 10px;
  position: relative;
  background-color: var(--color-hero-bg);
}

.hero h1 {
  font-weight: 700;
  margin-bottom: 20px;
  color: black;
}
.hero p {
  color: black;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/*========================================*/
  /* ===== Reusable content  ===== */
/*=======================================*/

/* Generic section spacing */
.section {
  margin: 1rem 0 1.6rem;
  padding: 0.75rem 0;
}

/* Section title */
.section-title {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Inline link style */
.link-inline {
  color: var(--color-primary);
  text-decoration: underline;
}
.link-inline:hover,
.link-inline:focus { color: var(--color-primary); text-decoration: none; }

/* Lists */
.list {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0;
}
.list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.5;
}

/* Tips list variant (compact) */
.tips li {
  padding: 8px 0;
  font-size: 0.98rem;
}


/* Two-column responsive layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) {
  .two-col { grid-template-columns: repeat(2, 1fr); }
}

/* Card (light container) */
.card {
  background: var(--color-bg-alt);
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

/* Notices (info / warning / success) */
.notice {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-top: 0.75rem;
  font-size: 0.95rem;
}
.notice-warning {
  background: #fff4e5;
  color: #7a4e00;
  border: 1px solid #ffe8c4;
}
.notice-info {
  background: #e6f2ff;
  color: #044b80;
  border: 1px solid #cfe9ff;
}

/* Accessibility helper (screen-reader only) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Table wrapper for responsiveness */
.table-wrap {
  overflow-x: auto;
  margin: 0.5rem 0;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.price-table th,
.price-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.price-table thead th {
  background: rgba(16,185,129,0.06); /* soft tint for header */
  color: var(--color-primary);
  font-weight: 700;
}

/* FAQ (details/summary) */
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.06);
}
.faq-q {
  cursor: pointer;
  font-weight: 700;
}
.faq-a {
  color: var(--color-text-muted);
}

  /* ===========================
   Profile grid & cards
   =========================== */

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

/* Card container */
.profile-card {
  padding:5px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(11, 15, 21, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 3px solid var(--color-primary);
}

/* Hover / focus lift for keyboard & mouse users */
.profile-card:hover,
.profile-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(11, 15, 21, 0.07);
}

/* Image container keeps consistent aspect ratio */
.profile-image-container {
  position: relative;
  background: var(--color-bg-alt);
  width: 100%;
  /* modern browsers */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}

/* Fallback for browsers without aspect-ratio:
   .profile-image-container { height: 0; padding-bottom: 75%; } */

/* Image styling */
.profile-image-container img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* Verified badge (bottom-right) */
.profile-image-container .badge {
  position: absolute;
  right: 5px;
  bottom: 5px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 8px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* Name and age */
.profile-info h3 {
  font-size: 1.05rem;
}
.actions{
    text-align:center;
}

/*======================*/
     /* Footer */
/*======================*/
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-logo { max-height: 60px; margin-bottom: 20px; }

.rta-label {
  border: 2px solid var(--color-danger);
  color: #fff;
  font-weight: bold;
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 4px;
}
.rta-text {
  color: var(--color-footer-link-hover);
  font-weight: bold;
  font-size: 13px;
}
.footer-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  margin-top: 20px;
  color: var(--color-footer-link);
}

.footer-column {
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}
.footer-link {
  color: var(--color-footer-link);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--color-footer-link-hover); }
.footer-bottom {
  background-color: var(--color-footer-alt);
  padding: 15px 20px;
  text-align: center;
}
.footer-copy {
  font-size: 14px;
  color: var(--color-footer-text);
}
/*==============================*/
           /*End*/
/*==============================*/