/* ==========================
       Design Tokens
       ========================== */
    :root {
      --text: #1f2933;
      --muted: #6b7280;
      --card: #ffffff;
      --radius: 16px;
      --shadow: 0 10px 30px rgba(0,0,0,0.08);
      --max-width: 1400px;
    } 
 
 /* ==========================
       Base Styles
       ========================== */
   

    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }

    img { max-width: 100%; display: block; }

    a { color: var(--portalThemeColor4); text-decoration: none; }
    a:hover { text-decoration: underline; }
 
 /* ==========================
       Header
       ========================== */

.header-container{
    height: auto;
}

.static-top.navbar-dark{
    background: linear-gradient(-90deg, var(--portalThemeColor1), #b0d3f8) !important; 
}

.static-top.navbar .menu-bar > .navbar-nav > li > a{
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
}
.navbar-dark .navbar-nav > li > a:hover,
.navbar-dark .navbar-nav > li > a:focus {
  background: transparent !important;
}

/* Force hamburger menu to stay on the right */
.navbar-toggle {
  float: right;
  margin-right: 15px;   /* adjust if needed */
}



/* Mobile */
@media (max-width: 1200px) {
  .navbar-dark img {
    max-height: 40px;
  }
}




/* ==========================
       Hero
       ========================== */
    .hero {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 72px 40px 56px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .hero h1 {
      font-size: 44px;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .hero p {
      font-size: 18px;
      color: var(--muted);
      margin-bottom: 18px;
      max-width: 640px;
    }

    .hero a {
        font-size: 18px;
        text-decoration: none;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      margin-top: 28px;
    }

    .hero-image img {
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      object-fit: cover;
    }

    /* ==========================
       Buttons
       ========================== */
    .btn {
      padding: 14px 22px !important;
      border-radius: 12px !important;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-primary {
      background: var(--portalThemeColor4);
      color: #ffffff;
      box-shadow: 0 6px 20px rgba(29,112,184,0.35);
    }

    .btn-primary:hover { transform: translateY(-1px); }

    .btn-secondary {
      background: #ffffff;
      color: var(--primary);
      border: 1px solid #dbe3ea;
    }

    .btn-info {
      background: var(--portalThemeColor4);
      color: #ffffff;
      box-shadow: 0 6px 20px rgba(29,112,184,0.35);
    }

    /* ==========================
       Sections
       ========================== */
    .section {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 64px 40px;
    }

    .section h2 {
      font-size: 30px;
      margin-bottom: 24px;
    }

    /* ==========================
       Accreditation Block
       ========================== */
    .accreditation {
      background: #f6f8fb;
      border-radius: var(--radius);
      padding: 40px;
    }

    .accreditation ul {
      padding-left: 20px;
    }

    .accreditation li {
      margin-bottom: 10px;
    }

    /* ==========================
       Cards
       ========================== */
    .c2c-home-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
    }

    .c2c-home-card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      transition: transform 0.2s ease;
    }

    .c2c-home-card:hover { transform: translateY(-4px); }

    .c2c-home-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .c2c-home-card p {
      font-size: 14px;
      color: var(--muted);
    }

    .c2c-home-card img {
      border-radius: 12px;
      margin: 14px 0;
    }

     /* ==========================
   Experience – Enhanced
   ========================== */
.experience {
  background: linear-gradient(180deg, #f6f8fb, #ffffff);
}

.experience-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.experience-content .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--portalThemeColor4);
  margin-bottom: 12px;
}

.experience-content h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.experience-content p {
  font-size: 16px;
  color: var(--text);
}

.experience-content .lead {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 24px;
}

.experience-content .lead strong{
  font-weight: bold;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.stat {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--portalThemeColor4);
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-list span {
  background: #eef4fa;
  color: var(--portalThemeColor1);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* Visual Side */
.experience-visual {
  position: relative;
}

.experience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--portalThemeColor1);
  color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.experience-overlay h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #e5eef5;
}

.experience-overlay p {
  margin: 0;
  font-size: 13px;
  color: #e5eef5;
}

/* Responsive */
@media (max-width: 900px) {
  .experience-wrapper {
    grid-template-columns: 1fr;
  }

  .experience-stats {
    grid-template-columns: 1fr;
  }
}


/* ==========================
       CTA
       ========================== */
    .cta-banner {
      background: linear-gradient(135deg, var(--portalThemeColor1), #092a40);
      color: #ffffff;
      border-radius: var(--radius);
      padding: 56px 40px;
      text-align: center;
    }

    .cta-banner h3 {
      font-size: 28px;
      margin-bottom: 12px;
      color: #ffffff;
    }

    .cta-banner p {
      color: #ffffff;
    }


    /* Accreditation Images*/
.accreditation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.accreditation-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.accreditation-card img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.accreditation-top-text {
  text-align: center;
  font-size: 14px;
  margin-bottom: 32px;
  color: var(--muted);
}


    /* ==========================
       Dispute Status Lookup
       ========================== */

    .input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.prefix {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.input-field {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 16px;
}

.button-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.results-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 40px;
  display: none;
}

.validation-message {
  color: #b91c1c; /* red-700 */
  font-size: 14px;
  margin-top: 6px;
  display: none;
}


/* Dispute Result */

.table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--card);
}

.c2c-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
}

.c2c-table thead {
  background: #f6f8fb;
}

.c2c-table th,
.c2c-table td {
  padding: 16px;
  text-align: left;
  color: var(--text);
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

.c2c-table th:last-child,
.c2c-table td:last-child {
  border-right: none;
}

.c2c-table th {
  font-weight: 600;
}

.c2c-table tbody tr:hover {
  background: #f9fafb;
  transition: background 0.2s ease;
}

.c2c-table tr:last-child td {
  border-bottom: none;
}


/* ==========================
       Dispute Inquiries Form
       ========================== */

  .c2c-container {
    max-width: 1100px;
    margin: 0 auto;
}

.c2c-card {
    background: #fafbfc;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    border: 1px solid #e2e2e2;
}

.c2c-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 3px solid #0050b3; /* your brand blue */
    margin-bottom: 20px;
}

.c2c-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.c2c-input {
    width: 100%;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 0.95rem;
    background-color: #f9fafb;
}

.form-wrapper {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


/* ==========================
       Dispute Submission History
       ========================== */

/* Make the whole toolbar row flex so things can sit inline */
.toolbar-actions {
    display: flex !important;
    justify-content: flex-end;
}

/* Turn the search container into an inline flex row */
.toolbar-actions .entitylist-search {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    width: auto !important;
}

/* Kill the table-cell behavior and full-width input */
.toolbar-actions .entitylist-search input.query {
    display: inline-block !important;
    width: 240px !important;
}

/* Keep the button right next to the input */
.toolbar-actions .entitylist-search .input-group-btn {
    display: inline-block !important;
}

.toolbar-actions .entitylist-search .input-group-btn button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.c2c-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.c2c-list-custom-font th a,
.c2c-list-custom-font td {
    font-size: 15px !important;
}

/* Add a vertical line between filter sections */
.entitylist-filter-option-group:not(:last-child) {
    border-right: 1px solid #ccc;
    padding-right: 25px;
    margin-right: 20px;
}

/* Reduce text size for the "Response to..." label specifically */
.entitylist-filter-option-group label[for*="additional"] {
    max-width: 180px; /* Forces wrap so it doesn't push the screen wide */
    line-height: 1.2;
}

/* Reduce Label Text Size and Weight */
.entitylist-filter-option-group label {
    font-size: 14px !important;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Reduce Checkbox/Picklist Text Size */
.entitylist-filter-option-group .checkbox label, 
.entitylist-filter-option-group .radio label,
.entitylist-filter-option-group select {
    font-size: 13px !important;
}

/* Adjust spacing for a cleaner horizontal look */
.entity-grid.entitylist-filter-option-group {
    padding: 10px 0;
}

/* Optional: Shrink the filter icon box width */
.input-group-addon {
    padding: 4px 8px !important;
}



/* ==========================
       FAQ
========================== */


/* Category Title Styling */
.faq-category-header {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 40px 0 15px 0;
    border-left: 5px solid #0078D4;
    padding-left: 15px;
}

/* The blue top bar for each item */
.faq-blue-line {
    width: 100%;
    height: 4px;
    background-color: #0078D4;
    border-radius: 4px 4px 0 0;
}

/* Accordion Item Container */
.faq-custom-item {
    border: 1px solid #dee2e6 !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Header / Button Styling */
#faqAccordion .accordion-button {
    padding: 1.25rem;
    font-weight: 500;
    color: #0056b3;
    background-color: #fff;
    box-shadow: none;
}

/* Active State (When Open) */
#faqAccordion .accordion-button:not(.collapsed) {
    background-color: #f0f7ff; /* Matches the light blue active state */
    color: #004a99;
}

/* Body / Answer Styling */
.accordion-body {
    line-height: 1.6;
    color: #444;
    background-color: #fff;
    padding: 1.5rem;
}

/* Overriding default Bootstrap margins */
.accordion-header {
    margin: 0 !important;
    padding: 0 !important;
}

/* --- BULLET POINT FIXES --- */
        .accordion-body { 
            padding: 20px 25px; 
            line-height: 1.7; 
            color: #444; 
        }

        .accordion-body ul, .accordion-body ol {
            margin-left: 20px !important;
            padding-left: 0 !important;
            list-style-position: outside !important;
        }

        .accordion-body li {
            margin-bottom: 8px;
            padding-left: 5px; /* Tiny space between bullet and text */
        }