/* ====LAYOUT STYLES S ==== */

/* === CONTAINER SYSTEM S=== */
.container {
    width: 100%;
    padding-right: var(--container-padding-x);
    padding-left: var(--container-padding-x);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
}

@media (min-width: 1200px) {
    .container { max-width: 1180px; }
}

@media (min-width: 1366px) {
    .container { max-width: 1280px; }
}

.container-fluid {
    width: 100%;
    padding-right: var(--container-padding-x);
    padding-left: var(--container-padding-x);
    margin-right: auto;
    margin-left: auto;
}
/* === CONTAINER SYSTEM E=== */

/* === ROW SYSTEM S=== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-1 * var(--container-padding-x));
    margin-left: calc(-1 * var(--container-padding-x));
}
/* === ROW SYSTEM E=== */

/* === COLUMN SYSTEM S=== */
.col,
[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: var(--container-padding-x);
    padding-left: var(--container-padding-x);
}

.col {
    flex: 1 0 0%;
    max-width: 100%;
}

.col-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3  { flex: 0 0 25%;        max-width: 25%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6  { flex: 0 0 50%;        max-width: 50%; }
.col-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9  { flex: 0 0 75%;        max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%;       max-width: 100%; }

@media (min-width: 576px) {
    .col-sm-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
    .col-sm-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3  { flex: 0 0 25%;        max-width: 25%; }
    .col-sm-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6  { flex: 0 0 50%;        max-width: 50%; }
    .col-sm-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9  { flex: 0 0 75%;        max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%;       max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
    .col-md-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3  { flex: 0 0 25%;        max-width: 25%; }
    .col-md-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6  { flex: 0 0 50%;        max-width: 50%; }
    .col-md-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9  { flex: 0 0 75%;        max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%;       max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
    .col-lg-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3  { flex: 0 0 25%;        max-width: 25%; }
    .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6  { flex: 0 0 50%;        max-width: 50%; }
    .col-lg-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9  { flex: 0 0 75%;        max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%;       max-width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
    .col-xl-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-3  { flex: 0 0 25%;        max-width: 25%; }
    .col-xl-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-6  { flex: 0 0 50%;        max-width: 50%; }
    .col-xl-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xl-9  { flex: 0 0 75%;        max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xl-12 { flex: 0 0 100%;       max-width: 100%; }
}
/* === COLUMN SYSTEM E=== */

/* === HEADER 1 (MAIN) S=== */
.site-header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.site-header.sticky {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .10), 0 2px 4px -1px rgba(0, 0, 0, 0.03); 
}
/* ==== HEADER SECTION E ==== */

/* ==== FOOTER SECTION S ==== */
.site-footer {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #200B08; 
  border-top: 1px solid #333;   
  font-size: 14px;
  color: #fff; 
}

.site-footer .container {
  display: flex !important; 
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-left a {
  color: #fff; 
  text-decoration: none;
  transition: color 0.2s;
}

.footer-left a:hover {
  color: #ccc;
  text-decoration: underline;
}

.separator {
  margin: 0 4px;
  color: #666;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}


.payment-logo {
  width: 60px; 
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.payment-logo:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .site-footer .container {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 20px;
  }

  .footer-left {
    justify-content: center;
    text-align: center;
    line-height: 2;
  }

  .footer-right {
    justify-content: center;
    width: 100%;
    margin-bottom: 5px;
  }
}
/* ==== FOOTER SECTION E ==== */

/* === HEADER 2 (DASHBOARD) S=== */
.site-header-2 {
  background-color: #fff;
  border-top: 3px solid;
  border-bottom: 1px solid #EAEAEA;
  padding: 16px 24px; 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .10), 0 2px 4px -1px rgba(0, 0, 0, 0.03); 
  position: relative;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.site-header.sticky {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .10), 0 2px 4px -1px rgba(0, 0, 0, 0.03); 
}

.site-header-2 .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header-2 .header-left,
.site-header-2 .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.site-header-2 .header-right {
  justify-content: flex-end;
}

.site-header-2 .site-logo img {
  display: block;
  width: 110px; 
  height: auto;
}

.site-header-2 .header-nav {
  display: flex;
  align-items: center;
  gap: 32px; 
}

.site-header-2 .logout-btn {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #CCCCCC;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  display: none;
}

.site-header-2 .logout-btn:hover {
  background-color: #f8f9fa;
  border-color: #999;
}

.site-header-2 .nav-link {
  font-family: inherit;
  font-weight: 500;
  font-size: 17px;
  color: #000;
  text-decoration: none;
  transition: color 0.15s;
}

.site-header-2 .nav-link:hover {
  color: var(--color-tertiary); 
}

.drawer-close {
    display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.hidden-toggle {
  display: none !important;
}

.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.hidden-toggle:checked ~ .nav-backdrop {
  display: block;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-logout-mobile {
  display: none !important;
}

@media (max-width: 991px) {
  .site-header-2 {
    padding: 12px 20px;
  }

  .site-header-2 .header-right {
    display: none; /* Hide desktop logout */
  }

  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-header-2 .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px; 
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 30px 0; 
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 1001;
    display: flex;
    overflow-y: auto;
  }

  .site-header-2 .header-nav.active {
    transform: translateX(0); 
  }

  .site-header-2 .nav-link {
    width: 100%;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    display: block;
    text-align: center;
  }

  .site-header-2 .nav-link.active {
    background-color: transparent;
    color: #337ab7;
  }

  .nav-logout-mobile {
    display: block !important;
    width: 100%;
    padding: 18px 0;
    color: #DD2F10 !important;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid #f5f5f5;
    text-align: center;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
    margin-left: auto;
  }

  .mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .drawer-close {
    display: block;
    background: none;
    border: none;
    font-size: 36px;
    line-height: 1;
    color: #DD2F10;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 25px;
    padding: 10px;
    z-index: 10;
  }

  .mobile-toggle.active {
    display: none; 
  }

  .mobile-toggle span {
    background-color: #000;
    height: 2px;
  }

  .mobile-toggle.active span,
  .hidden-toggle:checked ~ .mobile-toggle span {
    display: none;
  }
  .mobile-toggle.active span {
    display: none;
  }
  
  .hidden-toggle:checked ~ .header-nav {
    transform: translateX(0);
  }
  .hidden-toggle:checked ~ .mobile-toggle {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-header-2 .site-logo img {
    width: 90px;
  }
}


.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background-color: transparent;
  border: 1px solid #000; 
  border-radius: 999px; 
  font-weight: 500;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  transition: all 0.2s;
  line-height: normal;
  white-space: nowrap;
}

.btn-outline-pill:hover {
  background-color: transparent;
  color: #000;
  border-color: #000;
}
/* ==== HEADER 2 (DASHBOARD) E ==== */

/* ==== FOOTER 2 (DASHBOARD/ACCESS) S ==== */
.site-footer-2 {
  background-color: #E6E6E6; 
  border-top: 1px solid #d1d5db; 
  padding-top: 23px; 
  padding-bottom: 23px;
  font-family: inherit;
  color: #333;
}

.site-footer-2 .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px; 
}

.site-footer-2 .secondary-row {
  margin-bottom: 0;
}

.site-footer-2 .footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer-2 .footer-contact i {
  display: flex;
  align-items: center;
  color: #000;
}

.site-footer-2 .footer-contact a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 1; 
}

.site-footer-2 .footer-payment {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer-2 .pay-label {
  font-size: 18px;
  font-weight: 800;
  color: #6b7280; 
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.site-footer-2 .mastercard-logo {
  display: flex;
  align-items: center;
}

.site-footer-2 .footer-support {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-footer-2 .support-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.site-footer-2 .btn-contact-us {
  display: inline-block;
  background-color: #3b82f6; 
  color: #fff;
  padding: 8px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s;
}

.site-footer-2 .btn-contact-us:hover {
  opacity: 0.9;
}

.site-footer-2 .footer-copyright {
  font-size: 13px;
  color: #4b5563;
  font-weight: 500;
}

.site-footer-2 .footer-copyright a {
  color: #4b5563;
  text-decoration: none;
}

.site-footer-2 .footer-copyright a:hover {
  text-decoration: underline;
}

.site-footer-2 .dot-sep {
  margin: 0 4px;
}

@media (min-width: 768px) {
  .site-footer-2 .footer-row {
    flex-direction: row;
    gap: 10px;
  }
}

.site-footer-2 .container {
    max-width: 1200px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* ==== FOOTER 2 (DASHBOARD/ACCESS) E ==== */

/* ==== FOOTER 3 (MINIMAL) S ==== */
.footer3-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 30px 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer3-links {
    text-align: center;
    font-size: 13px;
    color: #666;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
}

.footer3-links a {
    color: #337ab7; 
    text-decoration: none;
    margin: 0 5px;
}

.footer3-links a:hover {
    text-decoration: underline;
    color: #286090;
}
/* ==== FOOTER 3 (MINIMAL) E ==== */


/* === FOOTER STYLES S === */
.site-footer-2 {
    padding: 0;
    margin: 0;
    background-color: #000;
}

.footer-bottom-bar {
    background-color: #363636;
    color: #ffffff;
    padding: 15px 0;
    width: 100%;
    margin: 0;
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-copyright-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
    color: #ffffff;
}

.footer-copyright-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copyright-links a:hover {
    color: #ffffff;
}

.footer-payment-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-logo {
    height: 20px; 
    width: auto;
    filter: grayscale(100%) brightness(200%); 
    opacity:unset;
}

.dot-sep {
    margin: 0 5px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .bottom-bar-content {
        flex-direction: column-reverse; 
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .footer-copyright-links {
        justify-content: center;
    }
}
/* === FOOTER STYLES E === */

/* =====  4. HEADER S ====*/ 

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header .nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-heading);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.site-header .nav-link:hover {
  color: var(--color-tertiary);
}

@media (max-width: 768px) {
  .site-header .site-logo img { width: 130px !important; }
  .header-actions { gap: 12px; }
  .header-actions .btn { padding: 8px 16px; font-size: 14px; }
}
@media (max-width: 480px) {
  .site-header { padding: 10px 0; }
  .site-header .site-logo img { width: 100px !important; }
  .header-actions .btn { padding: 6px 10px; font-size: 12px; white-space: nowrap; }
  .site-header .nav-link { font-size: 12px; white-space: nowrap; }
}

@media (max-width: 380px) {
    .site-header .site-logo img { width: 90px !important; }
}
/* =====  4. HEADER E ====*/