/* ============================================
       CUSTOM FONT
       ============================================ */
    @font-face {
      font-family: 'Acumin Variable Concept';
      src: url('../fonts/AcuminVariableConcept.otf') format('opentype');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }

    /* ============================================
       DESIGN SYSTEM
       ============================================ */
    :root {
      --color-bg: #f8f7f4;
      --color-bg-warm: #f3f0eb;
      --color-text: #2c2c2c;
      --color-text-light: #6b6b6b;
      --color-text-muted: #9a9a9a;
      --color-accent: #7b8ec8;
      --color-accent-deep: #5c6fa6;
      --color-accent-soft: #c0cce8;
      --color-teal: #7ecac1;
      --color-teal-soft: #b8e3dd;
      --color-white: #ffffff;
      --color-border: #e8e5e0;
      --font-heading: 'Acumin Variable Concept', 'Inter', -apple-system, sans-serif;
      --font-body: 'Acumin Variable Concept', 'Inter', -apple-system, sans-serif;
      --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
      --shadow-card: 0 2px 16px rgba(0,0,0,0.05);
      --radius: 16px;
      --radius-sm: 10px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--color-text);
      background: var(--color-bg);
      -webkit-font-smoothing: antialiased;
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-heading);
      font-weight: 600;
      line-height: 1.25;
    }

    /* ============================================
       NAVBAR
       ============================================ */
    .navbar-tlb {
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,0,0,0.04);
      padding: 12px 0;
      transition: var(--transition);
      z-index: 1000;
    }
    .navbar-tlb .navbar-brand img { height: 68px; }
    .navbar-tlb .nav-link {
      font-size: 16;
      font-weight: 500;
      color: var(--color-text);
      letter-spacing: 0.03em;
      padding: 8px 16px !important;
      transition: var(--transition);
    }
    .navbar-tlb .nav-link:hover { color: var(--color-accent-deep); }
    .btn-nav-register {
      background: var(--color-text);
      color: var(--color-white) !important;
      border: none;
      border-radius: 50px;
      padding: 8px 24px !important;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: var(--transition);
    }
    .btn-nav-register:hover {
      background: var(--color-accent-deep);
      color: var(--color-white) !important;
      transform: translateY(-1px);
    }

    a.nav-link.btn-nav-call {
    background-color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 10px 20px !important;
    border-radius: 110px;
    }
    

a.nav-link.btn-nav-call:hover {
    background: var(--color-accent-deep);
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

    /* ============================================
       HERO SECTION
       ============================================ */
    .hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* background: linear-gradient(135deg, #f0eef8 0%, #e4eaf5 30%, #d4e8e8 70%, #e8f4f2 100%); */
    background: url('images/herp-bg.jpg') center/cover no-repeat;
}

    .hero-bg-image {
      position: absolute;
      inset: 0;
      background: url('../images/hero-bg.jpg') center/cover no-repeat;
      opacity: 0.45;
    }

    .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
}

    .hero-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-accent-deep);
      background: rgba(123,142,200,0.12);
      padding: 6px 18px;
      border-radius: 50px;
      margin-bottom: 24px;
    }
    .hero-headline {
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
.hero-subheadline {
    font-size: 28px;
    color: #2c2c2c;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 25px;
}
.hero-text {
    font-size: 24px;
    color: #2c2c2c;
    margin-bottom: 28px;
    max-width: 76%;
}
.hero-event-line {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.hero-event-line i {
    font-size: 19px;
}
    .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
    .btn-hero-primary {
      background: var(--color-text);
      color: var(--color-white);
      border: none;
      border-radius: 50px;
      padding: 14px 36px;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: var(--transition);
      text-decoration: none;
    }
    .btn-hero-primary:hover {
      background: var(--color-accent-deep);
      color: var(--color-white);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(92,111,166,0.25);
    }
    .btn-hero-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid #000;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid;
}
    .btn-hero-secondary:hover {
      border-color: var(--color-accent);
      color: var(--color-accent-deep);
      transform: translateY(-2px);
    }
    .hero-price {
    font-size: 19px;
    color: #2c2c2c;
    letter-spacing: 0.05em;
    font-weight: 600;
}
    .hero-price strong { color: var(--color-text); font-weight: 600; }
    .hero-image-wrapper {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      /*margin-bottom: -140px;*/
    }
    .hero-image-wrapper img {
      max-height: 100%;
      height: 81vh;
      width: auto;
      filter: drop-shadow(0 20px 60px rgba(0,0,0,0.12));
      object-fit: contain;
    }

    /* ============================================
       SECTION DEFAULTS
       ============================================ */
    .section-padding { padding: 100px 0; }
    .section-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-accent-deep);
      margin-bottom: 16px;
    }
    .section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
    .section-text {
      font-size: 1.02rem;
      color: var(--color-text-light);
      line-height: 1.8;
      max-width: 560px;
    }
    
    .bg-warm { background: var(--color-bg-warm); }

    /* ============================================
       ABOUT EVENT SECTION
       ============================================ */
    .about-highlight {
      border-left: 3px solid var(--color-teal);
      padding-left: 24px;
      margin-top: 24px;
    }
    .about-highlight p {
      font-size: 1.05rem;
      color: var(--color-text);
      font-weight: 400;
      line-height: 1.8;
    }

    /* ============================================
       WHAT IS TLB SECTION
       ============================================ */
    .highlight-question {
      font-family: var(--font-heading);
      font-size: clamp(1.4rem, 2.8vw, 2rem);
      font-style: italic;
      font-weight: 500;
      color: var(--color-accent-deep);
      margin-top: 32px;
      padding: 32px 0;
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
      line-height: 1.4;
    }

    /* ============================================
       EXPERIENCE CARDS
       ============================================ */
    .experience-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 36px 28px;
    height: 100%;
    border: 1px solid rgb(0 0 0 / 9%);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
    .experience-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--color-accent-soft), var(--color-teal-soft));
      opacity: 0;
      transition: var(--transition);
    }
    .experience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    background: linear-gradient(135deg, #f0eef8 0%, #e4eaf5 30%, #d4e8e8 70%, #e8f4f2 100%);
}
    .experience-card:hover::before { opacity: 1; }
    .experience-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    /* background: linear-gradient(135deg, rgba(123,142,200,0.1), rgba(126,202,193,0.1)); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #000;
}
.experience-card .card-icon i {
    font-size: 40px;
}
    .experience-card h4 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 8px;
      font-family: var(--font-body);
    }
.experience-card p {
    font-size: 16px;
    color: var(--color-text-light);
    margin: 0;
    /*width: 77%;*/
}
section#concept {
    background: url(../images/tlb-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 99;
}

section#concept .content-wrapper {
    position: relative;
    margin-top: 2em;
}

section#concept .content-wrapper p.section-text {
    max-width: 100%;
}

figure.dot-vector {
    position: absolute;
    right: 12px;
    top: -60px;
}

    /* ============================================
       WHY ATTEND SECTION
       ============================================ */
       
section#why .section-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #2c2c2c;
}
       
    .why-attend-list {
      list-style: none;
      padding: 0;
      margin-top: 32px;
    }
    .why-attend-list li {
      font-size: 1.05rem;
      color: var(--color-text);
      padding: 14px 0;
      border-bottom: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .why-attend-list li:last-child { border-bottom: none; }
    .why-attend-list .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-accent), var(--color-teal));
      flex-shrink: 0;
    }

    /* ============================================
       EVENT DETAILS CARD
       ============================================ */
.event-details-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
    .event-details-card .detail-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 14px 0;
    }
.event-details-card .detail-item i {
    color: var(--color-accent-deep);
    font-size: 34px;
    margin-top: 0;
}
    .event-details-card .detail-item span {
      font-size: 1rem;
      color: var(--color-text);
    }
.event-details-card .detail-item .label {
    font-size: 16px;
    color: #2c2c2c;
    display: block;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2px;
}
    .event-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

.video-wrapper {
    overflow: hidden;
    border-radius: 20px;
    height: 510px;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



    /* ============================================
       REGISTRATION FORM
       ============================================ */
    .form-section {
      background: linear-gradient(135deg, #eceaf3 0%, #e2ecec 100%);
    }
    .form-card {
      background: var(--color-white);
      border-radius: var(--radius);
      padding: 48px;
      box-shadow: var(--shadow-soft);
      margin: 0 auto;
    }
.form-card .form-control, .form-card .form-select {
    border: 1.5px solid #070707;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--color-text);
    transition: var(--transition);
    background: #fff;
    appearance: auto;
}
    .form-card .form-control:focus,
    .form-card .form-select:focus {
      border-color: var(--color-accent);
      box-shadow: 0 0 0 3px rgba(123,142,200,0.12);
    }
    .form-card label {
      font-size: 1rem;
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 6px;
      letter-spacing: 0.02em;
    }
    .btn-submit {
      width: 100%;
      background: var(--color-text);
      color: var(--color-white);
      border: none;
      border-radius: 50px;
      padding: 14px;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: var(--transition);
      margin-top: 8px;
    }
    .btn-submit:hover {
    background: #294997;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92,111,166,0.25);
}

#register .section-text {
    font-size: 16px;
    font-weight: 500;
    color: rgb(107, 107, 107);
    max-width: unset;
    width: 80%;
}

section#register figure {
    background-color: #fff;
    margin: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-sizing: var(--shadow-soft);
}

section#register figure img {
    width: 74% ! IMPORTANT;
    margin: 0 auto;
    display: block;
    padding-top: 15px;
    position: relative;
    bottom: -20px;
}



    /* ============================================
       FOOTER
       ============================================ */
   
   /* FOOTER SECTION */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, #f0eef8 0%, #e4eaf5 30%, #d4e8e8 70%, #e8f4f2 100%);
    padding: 80px 0;
    overflow: hidden;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}


.footer-logo {
    max-height: 80px;
    width: auto;
}

.footer-left h5 {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-transform: uppercase;
    color: rgba(41, 73, 151, 1);
}

.logo-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 25px;
}

/* Social Icons */
/* Social Connect */
.social-connect {
    display: block;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #294997;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icon:hover {
    color: #000;
}


/* Disclaimer */
.disclaimer {
    border-top: 1px solid rgba(0,0,0,0.2);
}

.disclaimer p {
    font-size: 11px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.contact-inline a {
    color: var(--bs-body-color);
    text-decoration: none;
}
   
   

    /* ============================================
       STICKY MOBILE BAR
       ============================================ */
    .mobile-sticky-bar {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 999;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(16px);
      border-top: 1px solid rgba(0,0,0,0.06);
      padding: 12px 16px;
      gap: 10px;
    }
    .mobile-sticky-bar a {
      flex: 1;
      text-align: center;
      padding: 8px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
    }
    .mobile-sticky-bar .btn-mobile-register {
      background: var(--color-text);
      color: var(--color-white);
    }
    .mobile-sticky-bar .btn-mobile-call {
      background: transparent;
      color: var(--color-text);
      border: 1.5px solid #000;
    }


    
    
    @media(max-width: 1366px) {
        .hero-headline {
            font-size: 2.8rem;
        }
        .hero-subheadline {
            font-size: 24px;
        }
        
        .hero-text {
            font-size: 20px;
            line-height: 28px;
        }
    }

    @media (max-width: 991px) {
      .mobile-sticky-bar { display: flex; }
      body { padding-bottom: 72px; }
      .hero-image-wrapper img { height: 60vh; max-height: 100%; }
      .section-padding { padding: 72px 0; }
      .event-details-card, .form-card { padding: 32px 24px; }
    }

    @media (max-width: 575px) {
        
        button.navbar-toggler.border-0 {
    padding: 0;
}
        
        .navbar-tlb .navbar-brand img {
            height: 55px;
        }
        
        .section-padding {
    padding: 50px 0;
}
        
section#hero {
    margin-top: 93px;
    height: fit-content;
    min-height: auto;
}
        
/*        .hero-section .row {
    display: flex;
    flex-direction: column-reverse;
}
    */    
        
.hero-image-wrapper img {
    height: 38vh;
    max-height: 100%;
    border-bottom: 1px solid #000;
}
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0;
    text-align: center;
    margin-bottom: 0;
    padding: 30px 40px !important;
}

.hero-image-wrapper {
    margin-bottom: 0;
}

.hero-headline {
    font-size: 32px;
    text-align: center;
}

.hero-event-line {
    display: flex;
    justify-content: center;
    border: 1px solid rgb(0 0 0 / 49%);
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 18px;
}

.hero-text {
    font-size: 15px;
    max-width: 77%;
    margin: 0 auto 15px;
}

.hero-event-line span.seprator {
    display: none;
}
      .hero-buttons {
    flex-direction: column;
    display: none;
}
      .hero-buttons a { text-align: center; }
    

.hero-subheadline {
    font-size: 17px;
    margin-top: 15px;
}
.hero-text {
    font-size: 15px;
    margin-bottom: 15px;
    max-width: 100%;
}
.hero-event-line {
    font-size: 13px;
    width: 100%;
    padding: 8px 0;
    margin: 0 auto;
}

#hero a.btn-reg-banner {
    margin-top: 30px;
}

.event-details-card, .form-card {
    flex-direction: column;
}


section#concept {
    padding-bottom: 50px;
}

section#experience .row.gy-5 {
    --bs-gutter-y: 2rem;
}

figure.tlb-logo-text img {
    width: 47%;
}
figure.dot-vector {
    top: -150px;
}

section#about .col-lg-7.fade-up.visible {
    margin-top: 10px;
}

figure.dot-vector img {
    width: 70px;
}

section#why, section#about {
    overflow: hidden;
}

section#details .text-center.mb-5.fade-up.visible {
    margin-bottom: 0 !important;
}

.video-wrapper {
    height: auto;
    margin-bottom: 20px;
}

section#register .text-center.mb-5.fade-up.visible {
    margin-bottom: 20px !IMPORTANT;
}

section#register .row {
    display: flex;
    flex-direction: column-reverse;
}
section#register figure {
    margin-bottom: 20px;
}

section#why {
    padding-top: 50px;
}

section#why .row.align-items-center.g-5 {
    --bs-gutter-y: auto;
}

.why-attend-list li:last-child {
    margin-bottom: 0;
}

.experience-card p {
    width: 100%;
}

.why-attend-list {
    margin-top: 0;
}

section#why {
    padding-bottom: 0;
}

.event-buttons {
    display: none;
}

a.nav-link.btn-nav-register {
    display: none;
}

div#navMenu {
    padding-top: 20px;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: unset !IMPORTANT;
}
.logo-divider {
    opacity: 0;
}
.mobile-sticky-bar {
    background: linear-gradient(135deg, #f0eef8 0%, #e4eaf5 30%, #d4e8e8 70%, #e8f4f2 100%);
}

p.small-text.address br {
    display: none;
}

section.footer-section {
    padding: 50px 0;
}

}

.section-tag {
    display: none;
}
    /* ============================================
       ANIMATIONS
       ============================================ */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }