@charset "UTF-8";

/* ===================================================================
   Nedumkandom Public Library — Global Design Tokens & Typography
   Forest-Green Accessible Design System (Authoritative ASP.NET Port)
   =================================================================== */

:root {
  --color-primary: #064e3b;       /* Forest Green (emerald-900) */
  --color-primary-hover: #043c2e; /* Darker Forest Green */
  --color-primary-dark: #022c22;  /* Deep Forest Green (emerald-950) */
  --color-accent: #059669;        /* Emerald Accent (emerald-600) */
  --color-accent-light: #10b981;  /* Bright Emerald (emerald-500) */
  --color-accent-border: #34d399; /* Light Emerald Border (emerald-400) */
  --color-bg: #f8fafc;            /* Slate Background (slate-50) */
  --color-card-bg: #ffffff;       /* Pure White Card Background */
  --color-text-main: #0f172a;     /* Deep Slate Text (slate-900) */
  --color-text-muted: #475569;    /* Muted Text (slate-600) */
  --color-text-subtle: #64748b;   /* Subtle Text (slate-500) */
  --color-border: #cbd5e1;        /* Form & Box Border (slate-300) */
  --color-border-light: #e2e8f0;  /* Divider Line (slate-200) */
  --color-amber-accent: #f59e0b;  /* Amber Accent (amber-500) */
  --color-amber-light: #fbbf24;   /* Amber Light (amber-400) */
  --color-amber-bg: #fef3c7;      /* Amber Alert Background (amber-100) */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Noto Sans Malayalam', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 1 0%;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Utilities */
.hidden { display: none !important; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.text-amber { color: #f59e0b; }
.text-amber-light { color: #fcd34d; }
.text-amber-dark { color: #92400e; }
.text-primary { color: var(--color-primary); }
.text-emerald-dark { color: #064e3b; }
.w-4 { width: 1rem; } .h-4 { height: 1rem; }
.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; } .h-7 { height: 1.75rem; }
.shrink-0 { flex-shrink: 0; }
.animate-spin { animation: spin 1s linear infinite; }
@@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===================================================================
   Header / Sticky Navbar
   =================================================================== */
.navbar-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.navbar-container {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 0.75rem;
}

@media (min-width: 640px) {
  .navbar-container {
    padding: 0 1.5rem;
  }
}

.navbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .navbar-row {
    height: 5rem;
  }
}

.navbar-brand-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  min-width: 0;
}

@media (min-width: 640px) {
  .navbar-brand-btn {
    gap: 0.75rem;
  }
}

.navbar-logo-badge {
  width: 2.25rem;
  height: 2.25rem;
  aspect-ratio: 1 / 1;
  border-radius: 0.75rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  padding: 0.125rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}

@media (min-width: 640px) {
  .navbar-logo-badge {
    width: 3rem;
    height: 3rem;
  }
}

.navbar-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.navbar-title {
  font-weight: 800;
  color: var(--color-text-main);
  font-size: 0.8125rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 640px) {
  .navbar-title {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .navbar-title {
    font-size: 1.25rem;
  }
}

.navbar-subtitle {
  font-size: 0.625rem;
  color: var(--color-text-subtle);
  font-weight: 500;
  line-height: 1;
  margin-top: 0.125rem;
}

@media (min-width: 640px) {
  .navbar-subtitle {
    font-size: 0.75rem;
  }
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .navbar-actions {
    gap: 1rem;
  }
}

.navbar-home-link {
  display: none;
  color: #334155;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

@media (min-width: 640px) {
  .navbar-home-link {
    display: inline-flex;
    font-size: 1rem;
  }
}

.navbar-home-link:hover {
  color: var(--color-primary);
}

.navbar-cta-btn {
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

@media (min-width: 640px) {
  .navbar-cta-btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}

.navbar-cta-btn:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ===================================================================
   Homepage Content Sections & Layout
   =================================================================== */
.homepage-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 5rem;
  background-color: var(--color-bg);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to bottom, #064e3b, #043c2e, #022c22);
  color: #ffffff;
  padding: 3.5rem 1rem 4.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-section {
    padding: 5rem 1rem 5.5rem;
  }
}

.hero-container {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.hero-logo-card {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background-color: #ffffff;
  padding: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(52, 211, 153, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-logo-card {
    width: 6rem;
    height: 6rem;
  }
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fcd34d;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
  .hero-tagline-badge {
    font-size: 0.875rem;
  }
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  color: #d1fae5;
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-highlights-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .hero-highlights-row {
    gap: 1.5rem;
    font-size: 0.875rem;
  }
}

.hero-highlight-pill {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-cta-btn {
  background-color: var(--color-amber-accent);
  color: #020617;
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .hero-cta-btn {
    font-size: 1.125rem;
  }
}

.hero-cta-btn:hover {
  background-color: #d97706;
  transform: scale(1.02);
}

/* Vision Statement */
.vision-card {
  background-color: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .vision-card {
    padding: 2rem;
  }
}

.vision-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vision-quote-large {
  font-size: 1.25rem;
  font-weight: 800;
  color: #451a03;
}

@media (min-width: 640px) {
  .vision-quote-large {
    font-size: 1.5rem;
  }
}

.vision-fulltext {
  color: #334155;
  font-size: 0.75rem;
  max-width: 36rem;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .vision-fulltext {
    font-size: 0.875rem;
  }
}

/* Cards & Content Sections */
.content-section {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.white-card {
  background-color: #ffffff;
  border: 2px solid var(--color-border-light);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .white-card {
    padding: 2.5rem;
    gap: 1.5rem;
  }
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .section-heading {
    font-size: 1.875rem;
  }
}

.section-header-icon-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-heading-inline {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

@media (min-width: 640px) {
  .section-heading-inline {
    font-size: 1.875rem;
  }
}

.section-paragraph {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.625;
  font-weight: 500;
}

@media (min-width: 640px) {
  .section-paragraph {
    font-size: 1rem;
  }
}

/* Section Grids */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .two-col-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

@media (min-width: 640px) {
  .three-col-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.goal-item-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .goal-item-card {
    font-size: 1rem;
  }
}

.service-item-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #ecfdf5;
  border-radius: 0.75rem;
  border: 1px solid #d1fae5;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .service-item-card {
    font-size: 1rem;
  }
}

.service-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--color-primary);
  flex-shrink: 0;
}

.collection-box {
  padding: 1.25rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.malayalam-box {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.english-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
}

.collection-header {
  font-weight: 800;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e293b;
  list-style-type: disc;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .category-bullet-grid {
    font-size: 0.875rem;
  }
}

.special-section-pill {
  background-color: #f1f5f9;
  padding: 0.625rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .special-section-pill {
    font-size: 0.875rem;
  }
}

.activity-pill {
  background-color: #fffbeb;
  padding: 0.625rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #451a03;
  border: 1px solid #fde68a;
}

@media (min-width: 640px) {
  .activity-pill {
    font-size: 0.875rem;
  }
}

/* Membership Eligibility Box */
.membership-info-box {
  background-color: #ecfdf5;
  border: 2px solid #6ee7b7;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .membership-info-box {
    padding: 2.5rem;
  }
}

.membership-category-card {
  background-color: #ffffff;
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  border: 1px solid #a7f3d0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
}

@media (min-width: 640px) {
  .membership-category-card {
    font-size: 0.875rem;
  }
}

.btn-goto-form {
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

@media (min-width: 640px) {
  .btn-goto-form {
    font-size: 1rem;
  }
}

.btn-goto-form:hover {
  background-color: var(--color-primary-hover);
}

/* ===================================================================
   Form Layout & Single-Container Application Form
   =================================================================== */
.form-section-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  scroll-margin-top: 6rem;
  width: 100%;
}

.form-container-card {
  background-color: #ffffff;
  border: 2px solid var(--color-border-light);
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 640px) {
  .form-container-card {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .form-container-card {
    padding: 3rem;
  }
}

.form-header-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 1.25rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

@media (min-width: 640px) {
  .form-title {
    font-size: 1.875rem;
  }
}

.form-subtitle {
  font-size: 0.75rem;
  color: #475569;
  font-weight: 500;
  max-width: 32rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .form-subtitle {
    font-size: 0.875rem;
  }
}

.general-error-box {
  padding: 1rem;
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #7f1d1d;
  font-size: 0.875rem;
  font-weight: 700;
}

.error-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #dc2626;
  flex-shrink: 0;
}

.form-element {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.form-field-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .form-label {
    font-size: 1.125rem;
  }
}

.form-label-snug {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.375;
}

@media (min-width: 640px) {
  .form-label-snug {
    font-size: 1.125rem;
  }
}

.form-label-small {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.375rem;
}

@media (min-width: 640px) {
  .form-label-small {
    font-size: 1rem;
  }
}

/* Label Wrappers for Multi-Column Baseline Alignment */
.label-wrapper-tall {
  min-height: 2.75rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}

.label-wrapper-short {
  min-height: 2rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}

.label-wrapper-guardian {
  min-height: 2.5rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.375rem;
}

.flex-col-wrapper {
  display: flex;
  flex-direction: column;
}

.field-error-text {
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.375rem;
  display: block;
}

.input-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}

/* Radio Button Grids */
.gender-radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gender-radio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.category-radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .category-radio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .category-radio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.category-card {
  min-height: 3.625rem;
}

@media (min-width: 640px) {
  .category-card {
    min-height: 4rem;
  }
}

/* Guardian Container */
.guardian-container {
  background-color: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .guardian-container {
    padding: 1.5rem;
  }
}

.guardian-header {
  border-bottom: 1px solid #fef3c7;
  padding-bottom: 0.625rem;
}

.guardian-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #451a03;
}

@media (min-width: 640px) {
  .guardian-title {
    font-size: 1.25rem;
  }
}

.guardian-subtitle {
  font-size: 0.75rem;
  color: #78350f;
  font-weight: 700;
  margin-top: 0.125rem;
}

@media (min-width: 640px) {
  .guardian-subtitle {
    font-size: 0.875rem;
  }
}

.guardian-full-width {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem;
}

/* Payment Section */
.payment-container {
  background-color: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .payment-container {
    padding: 1.5rem;
  }
}

.payment-header {
  border-bottom: 1px solid #dcfce7;
  padding-bottom: 0.625rem;
}

.payment-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

@media (min-width: 640px) {
  .payment-title {
    font-size: 1.25rem;
  }
}

.payment-subtitle {
  font-size: 0.75rem;
  color: #475569;
  font-weight: 500;
  margin-top: 0.125rem;
}

@media (min-width: 640px) {
  .payment-subtitle {
    font-size: 0.875rem;
  }
}

.payment-label-wrapper {
  min-height: 1.75rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.375rem;
}

.payment-field-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

@media (min-width: 640px) {
  .payment-field-label {
    font-size: 1rem;
  }
}

.currency-input-wrapper {
  position: relative;
}

.currency-symbol {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding-left: 0.875rem;
  display: flex;
  align-items: center;
  pointer-events: none;
  color: #64748b;
  font-weight: 700;
}

.currency-input-box {
  width: 100%;
  padding-left: 2rem;
  padding-right: 0.875rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  background-color: #ffffff;
  border: 2px solid var(--color-border);
  border-radius: 0.75rem;
  outline: none;
  transition: all 0.15s ease-in-out;
}

.currency-input-box:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.15);
}

/* Submit Action Button */
.submit-action-wrapper {
  padding-top: 1rem;
  text-align: center;
}

.btn-submit {
  width: 100%;
  min-height: 3.5rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.125rem;
  padding: 1rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .btn-submit {
    width: auto;
    font-size: 1.25rem;
  }
}

.btn-submit:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success Confirmation State Card */
.success-card {
  background-color: #ffffff;
  border: 2px solid var(--color-accent);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .success-card {
    padding: 3rem;
  }
}

.success-icon-badge {
  width: 5rem;
  height: 5rem;
  background-color: #ecfdf5;
  color: var(--color-primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid #a7f3d0;
}

.success-icon {
  width: 3rem;
  height: 3rem;
  color: #059669;
}

.success-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

@media (min-width: 640px) {
  .success-heading {
    font-size: 1.875rem;
  }
}

.success-ref-box {
  background-color: #f8fafc;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}

.success-ref-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.25rem;
}

.success-ref-code {
  font-size: 1.5rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .success-ref-code {
    font-size: 1.875rem;
  }
}

.success-message {
  color: #334155;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .success-message {
    font-size: 1.125rem;
  }
}

.success-thankyou {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  padding-top: 0.5rem;
}

.btn-reset {
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-reset:hover {
  background-color: var(--color-primary-hover);
}

/* ===================================================================
   Footer Styles
   =================================================================== */
.footer-container {
  background-color: var(--color-primary-dark);
  color: #f1f5f9;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  border-top: 4px solid var(--color-accent);
}

.footer-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    padding: 0 1.5rem;
  }
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.footer-logo-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

@media (min-width: 640px) {
  .footer-title {
    font-size: 1.5rem;
  }
}

.footer-location {
  font-size: 0.875rem;
  color: #a7f3d0;
  font-weight: 500;
}

.footer-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #cbd5e1;
}

@media (min-width: 640px) {
  .footer-badges-row {
    gap: 1rem;
    font-size: 0.875rem;
  }
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(30, 41, 59, 0.8);
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #334155;
}

.footer-badge-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.text-emerald {
  color: #34d399;
}

.footer-call-wrapper {
  padding-top: 0.25rem;
}

.footer-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(52, 211, 153, 0.4);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

@media (min-width: 640px) {
  .footer-call-btn {
    font-size: 1rem;
  }
}

.footer-call-btn:hover {
  background-color: var(--color-accent-light);
  transform: scale(1.05);
}

.footer-call-btn:active {
  transform: scale(0.95);
}

.footer-call-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: #fde68a;
  flex-shrink: 0;
}

.footer-copyright-section {
  padding-top: 1rem;
  border-top: 1px solid rgba(6, 78, 59, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-quote {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fcd34d;
}

@media (min-width: 640px) {
  .footer-quote {
    font-size: 0.875rem;
  }
}

.footer-subtext {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ===================================================================
   Form Input Box & Radio Cards
   =================================================================== */
.form-input-box {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-main);
  background-color: #ffffff;
  border: 2px solid var(--color-border);
  border-radius: 0.875rem;
  transition: all 0.15s ease-in-out;
}

.form-input-box:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(6, 78, 59, 0.15);
  background-color: #ffffff;
}

.form-input-box::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  border: 2px solid var(--color-border);
  border-radius: 0.875rem;
  cursor: pointer;
  font-weight: 700;
  color: #1e293b;
  transition: all 0.15s ease-in-out;
  user-select: none;
}

.radio-card:hover {
  border-color: #94a3b8;
  background-color: #f8fafc;
}

.radio-card.active {
  border-color: var(--color-primary);
  background-color: #f0fdf4;
  color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.radio-card input[type="radio"] {
  accent-color: var(--color-primary);
  width: 1.15rem;
  height: 1.15rem;
  cursor: pointer;
}