/* TBI Landing Page - Global Styles */

:root {
  --primary-brand: #f67627; /* TBI Orange Primary (Dominant) */
  --primary-secondary: #ff8a00; /* TBI Orange Secondary */
  --primary-light: rgba(246, 118, 39, 0.1);
  --accent: #2186e0; /* TBI Blue (Accent) */
  --accent-light: rgba(33, 134, 224, 0.1);
  --text-dark: #333333;
  --text-light: #ffffff;
  --dark-brand: #1f242e;
  --blue-dark: #121620; /* Dark gray-black for dark backgrounds */
  --light-bg: #f8f9fa;
  --font-heading: "Open Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

/* Typography Base */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: #4a4a4a;
  line-height: 1.6;
  padding-top: 97px;
}

@media (max-width: 991px) {
  body {
    padding-top: 61px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.fw-bold {
  font-family: var(--font-heading);
}

/* Color Utility Classes */
.text-primary-brand {
  color: var(--primary-brand) !important;
}
.text-accent {
  color: var(--accent) !important;
}
.text-dark-brand {
  color: var(--blue-dark) !important;
}
.fc-blue-dark {
  color: var(--blue-dark) !important;
}
.bg-blue-dark {
  background-color: var(--blue-dark) !important;
}
.bg-primary-brand {
  background-color: var(--primary-brand) !important;
}
.bg-accent {
  background-color: var(--accent) !important;
}
.bg-primary-subtle {
  background-color: var(--primary-light) !important;
}
.bg-accent-subtle {
  background-color: var(--accent-light) !important;
}

.bg-dark-brand {
  background-color: var(--dark-brand) !important;
}

/* Header Logo */
.header-logo {
  height: 65px;
  object-fit: contain;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .header-logo {
    height: 45px;
  }
}

/* Buttons */
.btn-primary-brand {
  background-color: var(--primary-brand);
  color: #fff;
  border: none;
}
.btn-primary-brand:hover {
  background-color: var(--primary-secondary);
  color: #fff;
}

.btn-accent {
  background-color: var(--accent);
  color: #fff;
  border: none;
}
.btn-accent:hover {
  background-color: #165ea8;
  color: #fff;
}

.btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
}

.btn-outline-primary-brand {
  border: 2px solid var(--primary-brand);
  color: var(--primary-brand);
  background: transparent;
}
.btn-outline-primary-brand:hover {
  background: var(--primary-brand);
  color: #fff;
}

/* Logo Placeholder */
.logo-placeholder {
  background-color: var(--primary-brand);
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Navbar */
.navbar {
  transition: all 0.3s ease-in-out;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.navbar.navbar-scrolled::before {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
  color: var(--dark-brand);
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-brand);
}

/* Utilities */
.tracking-wider {
  letter-spacing: 0.1em;
}
.grayscale {
  filter: grayscale(100%);
  transition:
    filter 0.3s,
    opacity 0.3s;
}
.grayscale:hover {
  filter: grayscale(0%);
  opacity: 1 !important;
}
.hover-text-white:hover {
  color: white !important;
}

/* Secondary brand color utilities */
.text-primary-secondary {
  color: var(--primary-secondary) !important;
}
.bg-primary-secondary {
  background-color: var(--primary-secondary) !important;
}

.text-shadow-sm {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* TBI Floating Action Button (FAB) Support Widget */
.tbi-floating-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.tbi-fab-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-brand) 0%, var(--primary-secondary) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 25px rgba(246, 118, 39, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  outline: none !important;
}

.tbi-fab-btn:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 8px 30px rgba(246, 118, 39, 0.5);
}

.tbi-fab-btn.active {
  transform: scale(0.9) rotate(90deg);
  background: #dc3545 !important;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.tbi-fab-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.tbi-fab-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tbi-fab-header {
  background: linear-gradient(135deg, var(--dark-brand) 0%, var(--blue-dark) 100%);
  color: #ffffff;
  padding: 20px 24px;
  text-align: left;
}

.tbi-fab-header h6 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1.05rem;
  color: #ffffff;
}

.tbi-fab-header p {
  font-size: 0.8rem;
  margin-bottom: 0;
  opacity: 0.8;
  color: #f8f9fa;
  line-height: 1.4;
}

.tbi-fab-body {
  padding: 20px 24px;
  max-height: 400px;
  overflow-y: auto;
  text-align: left;
}

.tbi-fab-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tbi-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888888;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tbi-fab-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  border: 1px solid #f0f0f0;
}

.tbi-fab-link.wa-link {
  background: rgba(40, 167, 69, 0.03);
}

.tbi-fab-link.wa-link:hover {
  background: rgba(40, 167, 69, 0.08);
  border-color: #28a745;
}

.tbi-fab-link.ig-link {
  background: rgba(225, 48, 108, 0.03);
}

.tbi-fab-link.ig-link:hover {
  background: rgba(225, 48, 108, 0.08);
  border-color: #e1306c;
}

.tbi-link-info {
  display: flex;
  flex-direction: column;
}

.tbi-link-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-brand);
}

.tbi-link-desc {
  font-size: 0.75rem;
  color: #777777;
  margin-top: 2px;
}

.tbi-fab-link i.fa-chevron-right {
  font-size: 0.8rem;
  color: #bbbbbb;
  transition: transform 0.2s ease;
}

.tbi-fab-link:hover i.fa-chevron-right {
  transform: translateX(3px);
}

.tbi-fab-link.wa-link:hover i.fa-chevron-right {
  color: #28a745;
}

.tbi-fab-link.ig-link:hover i.fa-chevron-right {
  color: #e1306c;
}

@media (max-width: 576px) {
  .tbi-floating-widget {
    bottom: 20px;
    right: 20px;
  }
  .tbi-fab-menu {
    width: 290px;
    bottom: 70px;
  }
}

/* --- Extracted Inline Styles --- */
.inline-style-1 { line-height: 1.3; }
.inline-style-2 { font-size: 1.05rem; line-height: 1.7; }
.inline-style-3 { font-size: 0.95rem; }
.inline-style-4 { width: 45px; height: 45px; margin-right: -15px; z-index: 3; }
.inline-style-5 { width: 45px; height: 45px; margin-right: -15px; z-index: 2; }
.inline-style-6 { width: 45px; height: 45px; z-index: 1; }
.inline-style-7 { font-size: 1.4rem; }
.inline-style-8 { font-size: 1.1rem; }
.inline-style-9 { top: 10px; left: -10px; z-index: 0; filter: blur(10px); transform: scale(0.9); }
.inline-style-10 { z-index: 1; max-height: 380px; object-fit: contain; }
.inline-style-11 { font-size: 0.85rem; }
.inline-style-12 { height: 22px; vertical-align: middle; margin-left: 2px; }
.inline-style-13 { max-width: 600px }
.inline-style-14 { width: 60px; height: 60px; z-index: 2; position: relative; }
.inline-style-15 { font-size: 0.95rem; line-height: 1.6; }
.inline-style-16 { max-width: 620px; font-size: 0.95rem; }
.inline-style-17 { font-size: 0.9rem; max-width: 680px; }
.inline-style-18 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.inline-style-19 { max-width: 700px }
.inline-style-20 { font-size:0.8rem; letter-spacing:1.5px; }
.inline-style-21 { font-size: 2rem; color: var(--dark-brand); line-height: 1.3; }
.inline-style-22 { color: var(--primary-brand); }
.inline-style-23 { line-height: 1.8; font-size: 0.95rem; }
.inline-style-24 { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.inline-style-25 { width: 42px; height: 42px; flex-shrink: 0; }
.inline-style-26 { line-height: 1.6; }
.inline-style-27 { width: 24px; height: 24px; }
.inline-style-28 { min-height: 80vh; }
.inline-style-29 { font-size: 4rem; }
.inline-style-30 { width: 80px; height: 53px; object-fit: cover; }
.inline-style-31 { max-width: 600px; }
.inline-style-32 { font-size: 1.05rem; line-height: 1.6; }
.inline-style-33 { font-size: 1.6rem; }
.inline-style-34 { max-width: 650px; line-height: 1.6; }
.inline-style-35 { line-height: 1.4; }
.inline-style-36 { font-size: 1.05rem; }
.inline-style-37 { height: 8px; border-radius: 10px; }
.inline-style-38 { width: 16.66%; }
.inline-style-39 { display: none; }
.inline-style-40 { width: 3rem; height: 3rem; }
.inline-style-41 { font-size: 1.85rem; line-height: 1.4; }
.inline-style-42 { font-size: 0.75rem; }
.inline-style-43 { font-size: 0.8rem; }
.inline-style-44 { opacity: 0.85; z-index: 0; }
.inline-style-45 { top: -100px; right: -100px; width: 300px; height: 300px; background: var(--accent-light); filter: blur(80px); border-radius: 50%; }
.inline-style-46 { bottom: -50px; left: -50px; width: 250px; height: 250px; background: var(--primary-light); filter: blur(60px); border-radius: 50%; }
.inline-style-47 { z-index: 1; }
.inline-style-48 { top: 15px; left: -15px; z-index: 0; }
.inline-style-49 { z-index: 1; height: 400px; }
.inline-style-50 { font-size: 1.1rem; line-height: 1.8; }
.inline-style-51 { background: linear-gradient(135deg, rgba(246, 118, 39, 0.85) 0%, rgba(255, 138, 0, 0.95) 100%); z-index: 0; }
.inline-style-52 { font-size: 1.85rem; line-height: 1.5; }
.inline-style-53 { background: linear-gradient(135deg, var(--primary-brand) 0%, #1a1a1a 100%); z-index: 0; }
.inline-style-54 { font-size: 0.75rem }
.inline-style-55 { width: 40px; height: 40px }
.inline-style-56 { height: 40px; width: 40px; object-fit: contain }
.inline-style-57 { font-size: 0.9rem; }
.inline-style-58 { margin-bottom: 2rem; }
.inline-style-59 { border: 2px solid var(--dark-brand); color: var(--dark-brand); }
.inline-style-60 { filter: none; }
.inline-style-61 { line-height: 1.8; font-size: 1.2rem; }
.inline-style-62 { background: rgba(33, 134, 224, 0.08); border-left: 4px solid var(--accent) !important; text-align: left; }
.inline-style-63 { width: 36px; height: 36px; flex-shrink: 0; }
.inline-style-64 { width: 100%; padding: 12px 18px; border: 2px solid rgba(0,0,0,0.08); border-radius: 12px; font-size: 0.95rem; background: #fafafa; }
.inline-style-65 { max-width: 750px; line-height: 1.7; }
.inline-style-66 { font-size: 1.25rem; }
.inline-style-67 { max-width: 600px; font-size: 0.95rem; }
.inline-style-68 { box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.inline-style-69 { width: 48px; height: 48px; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(246, 118, 39, 0.2); }
.inline-style-70 { font-size: 2.5rem; }
.inline-style-71 { color: #cbd5e1; }
.inline-style-72 { max-width: 650px }
.inline-style-73 { line-height: 1.8; font-size: 1.15rem; }
.inline-style-74 { width: 54px; height: 54px; font-size: 1.4rem; box-shadow: 0 4px 10px rgba(246, 118, 39, 0.2); }
.inline-style-75 { font-size: 1.3rem; }
.inline-style-76 { line-height: 1.7; font-size: 0.95rem; }
.inline-style-77 { line-height: 1.7; font-size: 0.95rem; max-width: 800px; }
.inline-style-78 { font-size: 1.2rem; }
.inline-style-79 { line-height: 1.7; }
.inline-style-80 { width: 28px; height: 28px; flex-shrink: 0; font-size: 0.85rem; }
.inline-style-81 { box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.inline-style-82 { box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.inline-style-83 { width: 50px; height: 50px; background: rgba(33, 134, 224, 0.08); }
.inline-style-84 { width: 50px; height: 50px; background: rgba(243, 156, 18, 0.1); }
.inline-style-85 { color: var(--accent); }
.inline-style-86 { border: 0; }
