/* ==========================================================================
   TBGFL COMMON STYLES
   Global CSS for all pages - Converted from common.css + shared page styles
   ========================================================================== */

/* ==========================================================================
   GLOBAL VARIABLES & RESETS
   ========================================================================== */
:root {
  --tbgfl-black: #111111;
  --tbgfl-black-alt: #161616;
  --tbgfl-gold: #b88a44;
  --tbgfl-green: #6c7b67;
  --tbgfl-blue: #56708a;
  --tbgfl-blue-alt: #4d6d8f;
  --tbgfl-off: #f8f6f1;
  --tbgfl-bg: #f8f6f1;
  --tbgfl-border: #e8dfd0;
  --tbgfl-border-alt: #e6ddd0;
  --tbgfl-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
  background: var(--tbgfl-off);
  font-family: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   GLOBAL REUSABLE CLASSES
   ========================================================================== */
.global-label {
  display: inline-block;
  color: #B8860B;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.global-divider {
  width: 90px;
  height: 2px;
  background: #B8860B;
  margin: 0 auto 30px auto;
  border-radius: 10px;
}

/* ==========================================================================
   SMOOTH SCROLL ANIMATION (REVEAL)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  width: 100%;
  background: rgba(248, 246, 241, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 5px 0;
}

.main-header.scrolled {
  top: 5px;
  width: 92%;
  left: 4%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 138, 68, 0.15);
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 4px 0;
}

.main-header.scrolled .logo img {
  width: 80px;
}

.menu-container {
  max-width: 1200px;
  margin: auto;
  padding: 0px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 90px;
  height: auto;
  display: block;
}

.desktop-menu ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.desktop-menu ul li a {
  text-decoration: none;
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.desktop-menu ul li a:hover {
  color: #b8860b;
}

.desktop-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2.5px;
  background: #b8860b;
  border-radius: 2px;
  transition: 0.3s ease;
}

.desktop-menu ul li a:hover::after {
  width: 100%;
}

.desktop-menu ul li.current-menu-item a,
.desktop-menu ul li a.active {
  color: var(--tbgfl-gold);
  font-weight: 700;
}

.desktop-menu ul li.current-menu-item a::after,
.desktop-menu ul li a.active::after {
  width: 100%;
}

/* ==========================================================================
   COURSE MENU ITEM HIGHLIGHT & TOP BADGE STYLES
   ========================================================================== */
.desktop-menu ul li.tbgfl-course-highlight-item a,
.desktop-menu ul li a[href*="course"] {
  position: relative !important;
  padding: 6px 18px !important;
  background: rgba(184, 134, 11, 0.09) !important;
  border: 1.5px solid rgba(184, 134, 11, 0.38) !important;
  border-radius: 20px !important;
  color: #1E3A2B !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 3px 10px rgba(184, 134, 11, 0.15) !important;
  margin-top: 4px !important;
}

.desktop-menu ul li.tbgfl-course-highlight-item a::after,
.desktop-menu ul li a[href*="course"]::after {
  display: none !important;
}

.desktop-menu ul li.tbgfl-course-highlight-item a:hover,
.desktop-menu ul li a[href*="course"]:hover,
.desktop-menu ul li.tbgfl-course-highlight-item.current-menu-item a,
.desktop-menu ul li a[href*="course"].active {
  background: linear-gradient(135deg, #1E3A2B 0%, #162C20 100%) !important;
  border-color: #B8860B !important;
  color: #F3D079 !important;
  box-shadow: 0 5px 16px rgba(30, 58, 43, 0.3) !important;
  transform: translateY(-1.5px);
}

.tbgfl-course-badge {
  position: absolute !important;
  top: -9px !important;
  right: 8px !important;
  display: inline-block !important;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%) !important;
  color: #FFFFFF !important;
  font-size: 8px !important;
  font-weight: 900 !important;
  padding: 2px 6px !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  line-height: 1 !important;
  box-shadow: 0 3px 8px rgba(184, 134, 11, 0.45) !important;
  z-index: 10 !important;
  animation: tbgflGlowPulse 2.5s infinite ease-in-out !important;
  margin: 0 !important;
}

.desktop-menu ul li.tbgfl-course-highlight-item a:hover .tbgfl-course-badge,
.desktop-menu ul li a[href*="course"]:hover .tbgfl-course-badge,
.desktop-menu ul li.tbgfl-course-highlight-item.current-menu-item a .tbgfl-course-badge {
  background: #F3D079 !important;
  color: #1E3A2B !important;
}

@keyframes tbgflGlowPulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(184, 134, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #111111;
  border-radius: 10px;
  transition: 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #f8f6f1;
  padding: 60px 30px;
  transition: 0.4s ease;
  z-index: 1000;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.04);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 24px;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #111111;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li.current-menu-item a,
.mobile-menu ul li a.active {
  color: var(--tbgfl-gold);
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 34px;
  color: #111111;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media(max-width:991px) {
  .desktop-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* =========================================
   HEADER ACTIONS (Cart & Auth)
   ========================================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid #B8860B;
  padding: 9px 18px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.cart-btn:hover {
  background: #B8860B;
  color: #FFFFFF;
  border-color: #B8860B;
  transform: translateY(-2px);
}

.cart-btn svg {
  width: 18px;
  height: 18px;
  stroke: #B8860B;
  fill: none;
  transition: stroke 0.3s ease;
}

.cart-btn:hover svg {
  stroke: #FFFFFF;
}

.cart-btn .cart-count {
  position: static;
  background: #B8860B;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 2px;
  display: inline-block;
  line-height: 1.2;
  width: auto;
  height: auto;
}

.my-account-btn {
  text-decoration: none;
  background: var(--tbgfl-gold);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--tbgfl-gold);
}

.my-account-btn svg {
  width: 18px;
  height: 18px;
}

.my-account-btn:hover {
  background: transparent;
  color: var(--tbgfl-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 138, 68, 0.15);
}

.mobile-account {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-account-btn {
  text-decoration: none;
  background: var(--tbgfl-gold);
  color: white;
  padding: 15px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--tbgfl-gold);
}

.mobile-account-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-account-btn:hover {
  background: transparent;
  color: var(--tbgfl-gold);
  box-shadow: 0 8px 25px rgba(184, 138, 68, 0.15);
}

@media (max-width: 1100px) {
  .header-actions { gap: 15px; }
  .my-account-btn { padding: 8px 18px; }
}

@media (max-width: 991px) {
  .header-actions { display: none; }
}

/* ==========================================================================
   SUPPORT SECTION (NEED ASSISTANCE)
   ========================================================================== */
.tbgfl-support-section {
  width: 100%;
  padding: 40px 20px;
  background: var(--tbgfl-black);
  position: relative;
  overflow: hidden;
}

.tbgfl-support-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 138, 68, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.tbgfl-support-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(108, 123, 103, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.tbgfl-support-container {
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tbgfl-support-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(184, 138, 68, 0.1);
  border: 1px solid rgba(184, 138, 68, 0.2);
  border-radius: 50px;
  color: var(--tbgfl-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tbgfl-support-content h2 {
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.tbgfl-support-content p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  max-width: 620px;
}

.tbgfl-support-closing {
  font-style: italic;
  color: var(--tbgfl-gold) !important;
  margin-top: 20px;
  font-size: 19px !important;
}

.tbgfl-support-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tbgfl-support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tbgfl-support-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--tbgfl-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tbgfl-support-icon {
  width: 56px;
  height: 56px;
  background: rgba(184, 138, 68, 0.1);
  border: 1px solid rgba(184, 138, 68, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbgfl-gold);
  transition: all 0.4s ease;
}

.tbgfl-support-card:hover .tbgfl-support-icon {
  background: var(--tbgfl-gold);
  color: var(--tbgfl-black);
}

.tbgfl-support-icon svg {
  width: 24px;
  height: 24px;
}

.tbgfl-support-info span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.tbgfl-support-info strong {
  display: block;
  font-size: 19px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .tbgfl-support-container { grid-template-columns: 1fr; gap: 50px; }
  .tbgfl-support-content h2 { font-size: 38px; }
}

@media (max-width: 767px) {
  .tbgfl-support-section { padding: 70px 20px; }
  .tbgfl-support-content h2 { font-size: 32px; }
  .tbgfl-support-card { padding: 24px 20px; gap: 16px; }
  .tbgfl-support-info strong { font-size: 16px; }
  .tbgfl-support-icon { width: 48px; height: 48px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.tbgfl-footer {
  width: 100%;
  background: var(--tbgfl-bg);
  position: relative;
  overflow: hidden;
  padding: 0 18px 20px;
  border-top: 1px solid var(--tbgfl-border-alt);
}

.tbgfl-footer-top-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--tbgfl-gold), var(--tbgfl-green));
}

.tbgfl-footer-container {
  width: 100%;
  max-width: 1240px;
  margin: auto;
}

.tbgfl-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}

.tbgfl-footer-logo {
  margin-bottom: 16px;
}

.tbgfl-footer-logo img {
  width: 110px;
  display: block;
  filter: brightness(0);
}

.tbgfl-footer-brand p {
  color: #555;
  font-size: 15px;
  line-height: 1.9;
  max-width: 320px;
}

.tbgfl-footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.tbgfl-footer-social a {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px solid var(--tbgfl-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbgfl-black);
  transition: all 0.3s ease;
  text-decoration: none;
}

.tbgfl-footer-social a:hover {
  background: var(--tbgfl-gold);
  border-color: var(--tbgfl-gold);
  color: #ffffff;
  transform: translateY(-3px);
}

.tbgfl-footer-social a svg {
  width: 18px;
  height: 18px;
}

.tbgfl-footer-links h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.tbgfl-footer-links h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 34px;
  height: 2px;
  background: var(--tbgfl-gold);
  border-radius: 50px;
}

.tbgfl-footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tbgfl-footer-links ul li a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s ease;
  line-height: 1.75;
}

.tbgfl-footer-links ul li a:hover {
  color: var(--tbgfl-gold);
  padding-left: 6px;
}

.tbgfl-contact-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  word-break: break-word;
}

.tbgfl-contact-list li a svg {
  width: 16px;
  height: 16px;
  color: var(--tbgfl-gold);
  flex-shrink: 0;
}

.tbgfl-footer-divider {
  width: 100%;
  height: 1px;
  background: var(--tbgfl-border-alt);
  margin: 30px 0 14px;
}

.tbgfl-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tbgfl-footer-bottom p {
  color: #777;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .tbgfl-footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .tbgfl-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .tbgfl-footer { padding: 0 14px 20px; }
  .tbgfl-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .tbgfl-footer-logo { margin-bottom: 14px; }
  .tbgfl-footer-logo img { width: 95px; }
  .tbgfl-footer-brand p { font-size: 14px; line-height: 1.85; max-width: 100%; }
  .tbgfl-footer-links h3 { font-size: 17px; margin-bottom: 18px; }
  .tbgfl-footer-links ul { gap: 11px; }
  .tbgfl-footer-links ul li a { font-size: 14px; line-height: 1.7; }
  .tbgfl-footer-divider { margin: 26px 0 14px; }
  .tbgfl-footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .tbgfl-footer-bottom p { font-size: 12px; }
}

/* ==========================================================================
   WHATSAPP STICKY
   ========================================================================== */
.whatsapp-sticky {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-sticky svg {
  width: 35px;
  height: 35px;
}

@media (max-width: 767px) {
  .whatsapp-sticky { display: none; }
}

/* ==========================================================================
   FOOTER TRUST BAR & NO-TRUST-BAR PADDING
   ========================================================================== */
.tbgfl-footer.tbgfl-no-trust-bar {
  padding-top: 50px !important;
}

@media (max-width: 768px) {
  .tbgfl-footer.tbgfl-no-trust-bar {
    padding-top: 35px !important;
  }
}

.tbgfl-footer-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px 0;
  width: 100%;
}

.tbgfl-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tbgfl-trust-item:hover { transform: translateY(-4px); }

.tbgfl-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(184, 138, 68, 0.08);
  border: 1px solid rgba(184, 138, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tbgfl-trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--tbgfl-gold);
  stroke-width: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tbgfl-trust-item:hover .tbgfl-trust-icon {
  background: var(--tbgfl-gold);
  border-color: var(--tbgfl-gold);
  box-shadow: 0 10px 25px rgba(184, 138, 68, 0.25);
  transform: scale(1.05);
}

.tbgfl-trust-item:hover .tbgfl-trust-icon svg {
  stroke: white;
}

.tbgfl-trust-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--tbgfl-black);
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tbgfl-trust-info p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .tbgfl-footer-trust-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 576px) {
  .tbgfl-footer-trust-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 20px 0; }
  .tbgfl-trust-item { gap: 10px; }
  .tbgfl-trust-icon { width: 38px; height: 38px; border-radius: 8px; }
  .tbgfl-trust-icon svg { width: 18px; height: 18px; }
  .tbgfl-trust-info h4 { font-size: 12px; margin-bottom: 2px; }
  .tbgfl-trust-info p { font-size: 11px; line-height: 1.35; }
}

/* ==========================================================================
   PAYMENT BADGES
   ========================================================================== */
.tbgfl-payment-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.secured-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 123, 103, 0.06);
  border: 1px solid rgba(108, 123, 103, 0.18);
  padding: 4px 10px;
  border-radius: 6px;
  color: #4A5D45;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.secure-lock-icon {
  width: 12px;
  height: 12px;
  stroke: #4A5D45;
}

.payment-divider {
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.1);
}

.payment-icon {
  height: 22px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.payment-icon:hover {
  transform: translateY(-1.5px);
}

@media (max-width: 767px) {
  .tbgfl-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .tbgfl-payment-badges { order: 2; }
  .payment-divider { display: none; }
}

/* ==========================================================================
   IMAGE QUOTE SECTION (SHARED HERO - used on About, Blog, Course, FAQ, Guidance, Policy pages)
   ========================================================================== */
.financial-image-quote-section {
  position: relative;
  width: 100%;
  min-height: 360px;
  background-image: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.financial-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.financial-image-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
}
.financial-image-content.reveal.active,
.financial-image-quote-section > .financial-image-content.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.financial-image-title {
  color: #F8F6F1;
  font-size: 34px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .financial-image-quote-section { min-height: 350px; }
  .financial-image-title { font-size: 32px; line-height: 1.4; }
}

/* ==========================================================================
   BLOG STYLES (shared between listing and single)
   ========================================================================== */
.finance-blog-section {
  width: 100%;
  padding: 60px 14px;
  background: #F7F4EE;
}

/* Remove padding from .finance-blog-section strictly on Single Blog Detail Pages ONLY */
body.single .finance-blog-section,
body.single-post .finance-blog-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.finance-blog-container {
  max-width: 1280px;
  margin: auto;
}

.finance-blog-header {
  text-align: center;
  margin-bottom: 38px;
}

.finance-blog-label {
  display: inline-block;
  color: #B8860B;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.finance-blog-title {
  color: #B8860B;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 14px;
}

.finance-blog-subtitle {
  color: #4E5B52;
  font-size: 15px;
  line-height: 1.8;
  max-width: 760px;
  margin: auto;
}

.finance-blog-divider {
  width: 70px;
  height: 2px;
  background: #6E8B74;
  border-radius: 20px;
  margin: 18px auto 0;
}

.blog-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.blog-main {
  flex: 2.8;
  min-width: 0;
}

.blog-sidebar {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

@media screen and (min-width: 992px) {
  .blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: #B8860B #F7F4EE;
  }
  .blog-sidebar::-webkit-scrollbar {
    width: 4px;
  }
  .blog-sidebar::-webkit-scrollbar-track {
    background: #F7F4EE;
    border-radius: 10px;
  }
  .blog-sidebar::-webkit-scrollbar-thumb {
    background: #B8860B;
    border-radius: 10px;
  }
}

.finance-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Blog Card */
.finance-blog-card {
  background: #FCFAF6;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, 0.10);
  transition: 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.finance-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 134, 11, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.finance-blog-image {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #F2EEE8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finance-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.finance-blog-card:hover .finance-blog-image img { transform: scale(1.05); }

.finance-blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #B8860B;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.finance-blog-content { padding: 22px; }

.finance-blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: #6E8B74;
  font-size: 13px;
}

.finance-blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.finance-blog-meta svg {
  width: 14px;
  height: 14px;
  stroke: #6E8B74;
}

.finance-blog-card-title {
  color: #111111;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 12px;
}

.finance-blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.finance-blog-card-title a:hover { color: #B8860B; }

.finance-blog-card-text {
  color: #5A5A5A;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.finance-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #B8860B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.finance-blog-link:hover { gap: 12px; }

.finance-blog-link svg {
  width: 16px;
  height: 16px;
}

/* Card Actions / Sharing */
.card-actions-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  border-top: 1px solid rgba(184, 134, 11, 0.08);
  padding-top: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.card-share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-share-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F7F4EE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4E5B52;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  outline: none;
  padding: 0;
}

.card-share-icon:hover { transform: translateY(-2px); }
.card-share-icon:hover i { transform: scale(1.1); }

.card-share-icon.whatsapp:hover { color: #25D366; background: rgba(37, 211, 102, 0.08); border-color: rgba(37, 211, 102, 0.2); }
.card-share-icon.facebook:hover { color: #1877F2; background: rgba(24, 119, 242, 0.08); border-color: rgba(24, 119, 242, 0.2); }
.card-share-icon.twitter:hover { color: #111111; background: rgba(0, 0, 0, 0.05); border-color: rgba(0, 0, 0, 0.15); }
.card-share-icon.copy:hover { color: #B8860B; background: rgba(184, 134, 11, 0.08); border-color: rgba(184, 134, 11, 0.2); }
.card-share-icon.copy.copied { color: #FFFFFF; background: #B8860B; border-color: #B8860B; }

/* Sidebar Styles */
.sidebar-search { position: relative; display: flex; align-items: center; }
.sidebar-search input { width: 100%; padding: 15px 22px; padding-right: 55px; border: 1px solid rgba(184, 134, 11, 0.2); border-radius: 50px; background: #fff; font-size: 15px; color: #111; font-family: inherit; transition: all 0.3s ease; }
.sidebar-search input:focus { outline: none; border-color: #B8860B; box-shadow: 0 5px 15px rgba(184, 134, 11, 0.1); }
.sidebar-search button { position: absolute; right: 6px; background: #B8860B; color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.sidebar-search button:hover { background: #A67808; transform: scale(1.05); }

.sidebar-widget {
  background: #FCFAF6;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(184, 134, 11, 0.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 15px 45px rgba(184, 134, 11, 0.05);
}

.widget-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: #B8860B;
  border-radius: 10px;
}

.recent-posts-list {
  max-height: 340px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #B8860B #F7F4EE;
}

.recent-posts-list::-webkit-scrollbar {
  width: 5px;
}

.recent-posts-list::-webkit-scrollbar-track {
  background: #F7F4EE;
  border-radius: 10px;
}

.recent-posts-list::-webkit-scrollbar-thumb {
  background: #B8860B;
  border-radius: 10px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 12px;
}

.recent-post-item:hover { background: rgba(184, 134, 11, 0.05); transform: translateX(8px); }

.recent-post-thumb {
  width: 75px;
  height: 75px;
  min-width: 75px;
  min-height: 75px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  background: #F2EEE8;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.recent-post-info h4 {
  font-size: 15px;
  color: #111;
  line-height: 1.4;
  margin-bottom: 6px;
  font-weight: 600;
}

.recent-post-info span {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.category-list {
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #B8860B #F7F4EE;
}

.category-list::-webkit-scrollbar {
  width: 5px;
}

.category-list::-webkit-scrollbar-track {
  background: #F7F4EE;
  border-radius: 10px;
}

.category-list::-webkit-scrollbar-thumb {
  background: #B8860B;
  border-radius: 10px;
}

.category-list li { margin-bottom: 12px; }
.category-list li:last-child { margin-bottom: 0; }

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #4E5B52;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 10px 15px;
  background: #F7F4EE;
  border-radius: 12px;
  border: 1px solid transparent;
}

.category-link:hover {
  color: #B8860B;
  background: #fff;
  border-color: rgba(184, 134, 11, 0.2);
  transform: translateX(5px);
}

.category-count {
  background: #B8860B;
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.blog-top-search {
  max-width: 650px;
  margin: 0 auto 30px;
  position: relative;
}

.blog-top-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-top-search-input {
  width: 100%;
  padding: 16px 55px 16px 26px;
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: 50px;
  background: #fff;
  font-size: 15px;
  color: #111;
  font-family: inherit;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  outline: none;
}

.blog-top-search-input:focus {
  border-color: #B8860B;
  box-shadow: 0 10px 25px rgba(184, 134, 11, 0.12);
}

.blog-top-search-btn {
  position: absolute;
  right: 6px;
  background: #B8860B;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

.blog-top-search-btn:hover {
  background: #1E3A2B;
  transform: scale(1.05);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #B8860B #F7F4EE;
}

.tags-cloud::-webkit-scrollbar {
  width: 5px;
}

.tags-cloud::-webkit-scrollbar-track {
  background: #F7F4EE;
  border-radius: 10px;
}

.tags-cloud::-webkit-scrollbar-thumb {
  background: #B8860B;
  border-radius: 10px;
}

.tag-link {
  text-decoration: none;
  background: #F7F4EE;
  color: #4E5B52;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(184, 134, 11, 0.1);
  transition: all 0.3s ease;
}

.tag-link:hover {
  background: #B8860B;
  color: #fff;
  border-color: #B8860B;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2);
}

/* Blog Responsive */
@media screen and (max-width:1100px) {
  .blog-layout { flex-direction: column; gap: 50px; }
  .blog-sidebar { order: 2; position: static; top: auto; max-height: none; overflow-y: visible; }
  .blog-main { order: 1; }
}

@media screen and (max-width:991px) {
  .finance-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width:768px) {
  .finance-blog-section { padding: 45px 10px; }
  .finance-blog-title { font-size: 38px; }
  .finance-blog-subtitle { font-size: 14px; line-height: 1.7; }
  .finance-blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .finance-blog-image { height: 220px; }
  .finance-blog-content { padding: 18px; }
  .finance-blog-card-title { font-size: 22px; }
  .finance-blog-card-text { font-size: 14px; line-height: 1.7; }
}

/* ==========================================================================
   BLOG SINGLE - ARTICLE STYLES
   ========================================================================== */
.article-body {
  font-family: "Mona Sans", -apple-system, "system-ui", "Segoe UI", Roboto, sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  color: rgb(68, 68, 68) !important;
}

.article-body h2 {
  font-size: 28px;
  color: #111;
  margin: 35px 0 20px;
  font-weight: 700;
}

.article-body h3 {
  font-size: 22px;
  color: #111;
  margin: 30px 0 15px;
  font-weight: 700;
}

.article-body p {
  font-family: "Mona Sans", -apple-system, "system-ui", "Segoe UI", Roboto, sans-serif !important;
  font-size: 17px;
  line-height: 1.85;
  font-style: normal !important;
  font-weight: 400 !important;
  color: rgb(68, 68, 68) !important;
  margin-bottom: 24px;
}

.article-body strong,
.article-body p strong,
.article-body li strong {
  font-weight: 700 !important;
  color: #111111 !important;
}

.article-body a {
  color: #B8860B;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.article-body a:hover {
  color: #A67808;
  text-decoration-thickness: 2px;
}

.article-body ul {
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: none !important;
}

.article-body ul li {
  font-size: 16px;
  line-height: 1.75;
  color: #222;
  margin-bottom: 12px;
  position: relative;
  list-style: none !important;
}

.article-body ul li::before {
  content: '▶' !important;
  color: #B8860B !important;
  font-size: 11px !important;
  position: absolute !important;
  left: -22px !important;
  top: 2px !important;
}

.article-body blockquote,
.article-blockquote,
.single-post .entry-content blockquote,
.single-post blockquote.wp-block-quote {
  position: relative !important;
  padding: 24px 30px 24px 44px !important;
  margin: 32px 0 !important;
  background: #FCFAF6 !important;
  border-left: 3.5px solid #B8860B !important;
  border-radius: 0 12px 12px 0 !important;
  font-size: 16px !important;
  font-style: italic !important;
  color: #222222 !important;
  line-height: 1.65 !important;
  box-shadow: none !important;
}

.article-body blockquote::before,
.article-blockquote::before,
.single-post .entry-content blockquote::before,
.single-post blockquote.wp-block-quote::before {
  content: '“' !important;
  position: absolute !important;
  left: 16px !important;
  top: 14px !important;
  font-size: 38px !important;
  font-family: Georgia, serif !important;
  color: #E5DDCB !important;
  line-height: 1 !important;
  font-style: normal !important;
  pointer-events: none !important;
}

.article-body blockquote p,
.article-blockquote p,
.single-post .entry-content blockquote p,
.single-post blockquote.wp-block-quote p {
  margin: 0 !important;
  padding: 0 !important;
  color: #222222 !important;
  font-style: italic !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.article-image {
  width: 100%;
  border-radius: 16px;
  margin: 30px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.article-author-box {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 30px;
  background: #F7F4EE;
  border-radius: 16px;
  margin-top: 50px;
  border: 1px solid rgba(184, 134, 11, 0.1);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  color: #111;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Blog single hero override for taller hero */
.blog-single-hero {
  min-height: 450px;
}

.blog-single-hero .financial-image-title {
  font-size: 42px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(248, 246, 241, 0.8);
  font-size: 15px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 1100px) {
  .blog-main { padding: 30px 20px; }
}

@media screen and (max-width: 768px) {
  .blog-single-hero { min-height: 380px; }
  .blog-single-hero .financial-image-title { font-size: 32px; }
  .article-meta { flex-direction: column; gap: 10px; }
  .article-body h2 { font-size: 24px; }
  .article-body p { font-size: 16px; }
  .article-blockquote { padding: 20px; font-size: 17px; }
  .article-author-box { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   POLICY PAGE STYLES
   ========================================================================== */
.policy-section {
  padding: 50px 20px;
  background: #F8F6F1;
}

.policy-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.1);
}

.policy-item {
  margin-bottom: 40px;
}

.policy-item h2 {
  font-size: 24px;
  color: #111;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.policy-item h2 span {
  color: #B8860B;
  font-size: 28px;
  font-weight: 700;
}

.policy-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.policy-item ul {
  list-style: none;
  margin-top: 15px;
}

.policy-item ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.policy-item ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #B8860B;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.policy-item .sub-section {
  margin-top: 20px;
  padding-left: 20px;
  border-left: 2px solid rgba(184, 134, 11, 0.2);
}

.last-updated {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e8dfd0;
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* Policy hero (for disclaimer) */
.policy-hero {
  position: relative;
  width: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.policy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.policy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
}

.policy-hero-title {
  color: #F8F6F1;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.policy-hero-subtitle {
  color: rgba(248, 246, 241, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Alternate policy body style (disclaimer) */
.policy-body {
  color: #444;
  line-height: 1.8;
  font-size: 17px;
}

.policy-body h2 {
  font-size: 24px;
  color: #111;
  margin: 40px 0 20px;
  font-weight: 700;
}

.policy-body h2:first-child { margin-top: 0; }

.policy-body p { margin-bottom: 20px; }

.policy-body ul {
  margin-bottom: 25px;
  list-style: none;
  padding-left: 0;
}

.policy-body li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.policy-body li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: #b88a44;
  font-weight: bold;
}

.policy-hero-divider { margin-top: 24px; margin-bottom: 0; }
.policy-card {
  background: #ffffff;
  border: 1px solid #e8dfd0;
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
}
.policy-intro {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--tbgfl-border);
}
.policy-intro h2 {
  font-size: 28px;
  color: var(--tbgfl-gold);
  margin-bottom: 20px;
  font-weight: 700;
}
.policy-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}
.policy-item {
  margin-bottom: 45px;
}
.policy-item h2 {
  font-size: 22px;
  color: #111;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.policy-item h2 span {
  color: #B8860B;
  font-size: 24px;
  font-weight: 700;
}
.policy-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}
.policy-item p a {
  color: #B8860B;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.policy-item p a:hover {
  text-decoration: underline;
}
.policy-item ul {
  list-style: none;
  margin-top: 15px;
}
.policy-item ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.policy-item ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #B8860B;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
.policy-item .sub-section {
  margin-top: 20px;
  padding-left: 20px;
  border-left: 2px solid rgba(184, 134, 11, 0.2);
}
.policy-item .sub-part {
  margin-bottom: 20px;
}
.policy-item .sub-part h4 {
  font-size: 17px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-info-box {
  background: #FDFCF9;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(184, 134, 11, 0.15);
  margin-top: 40px;
}
.contact-info-box h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 15px;
  font-weight: 600;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-detail p {
  margin-bottom: 5px !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-detail i {
  color: #B8860B;
  width: 20px;
}
.contact-detail code {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #B8860B;
  letter-spacing: 0.5px;
}
.contact-detail span {
  color: #B8860B;
  font-weight: 700;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .policy-hero-title { font-size: 36px; }
  .policy-container { padding: 30px 20px; }
  .policy-item h2, .policy-body h2 { font-size: 20px; }
  .policy-card { padding: 30px 20px; }
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */
.faq-section {
  padding: 70px 20px;
  background: var(--tbgfl-off);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--tbgfl-border-alt);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-item.active {
  border-color: var(--tbgfl-gold);
  box-shadow: 0 10px 30px rgba(184,138,68,0.08);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--tbgfl-black);
  transition: 0.3s ease;
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: rgba(184,138,68,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbgfl-gold);
  font-size: 14px;
  transition: 0.4s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--tbgfl-gold);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  padding: 0 30px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  padding-top: 4px;
  padding-bottom: 16px;
  margin: 0;
}

/* FAQ Bottom Support Card */
.faq-bottom-prompt {
  margin-top: 40px;
  width: 100%;
  box-sizing: border-box;
}

.tbgfl-faq-support-card {
  background: #ffffff;
  border: 1px solid rgba(184, 138, 68, 0.15);
  border-radius: 20px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 15px 40px rgba(184, 138, 68, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.tbgfl-faq-support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--tbgfl-gold), var(--tbgfl-green));
}

.tbgfl-faq-support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 138, 68, 0.3);
  box-shadow: 0 20px 50px rgba(184, 138, 68, 0.08);
}

.tbgfl-faq-support-content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.tbgfl-faq-support-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(184, 138, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbgfl-gold);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tbgfl-faq-support-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--tbgfl-gold);
}

.tbgfl-faq-support-card:hover .tbgfl-faq-support-icon {
  background: var(--tbgfl-gold);
  color: white;
  transform: scale(1.05) rotate(5deg);
}

.tbgfl-faq-support-card:hover .tbgfl-faq-support-icon svg {
  stroke: white;
}

.tbgfl-faq-support-text {
  flex: 1;
}

.tbgfl-faq-quote {
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
  color: #4E5B52;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.2px;
}

.tbgfl-faq-support-action {
  flex-shrink: 0;
}

.tbgfl-faq-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--tbgfl-gold);
  color: #ffffff;
  padding: 11px 22px;
  border-radius: 12px;
  font-family: "Mona Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(184, 138, 68, 0.2);
}

.tbgfl-faq-support-btn svg {
  width: 16px;
  height: 16px;
  stroke: white;
  transition: transform 0.3s ease;
}

.tbgfl-faq-support-btn:hover {
  background: var(--tbgfl-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 123, 103, 0.25);
}

.tbgfl-faq-support-btn:hover svg {
  transform: translateX(4px);
}

/* FAQ Feedback Styling - Clean Seamless Layout (No Splitting Lines) */
.faq-feedback-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-top: 6px;
  margin-bottom: 20px;
  background: rgba(184, 138, 68, 0.04);
  border: 1px solid rgba(184, 138, 68, 0.12);
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-feedback-label {
  font-size: 13.5px;
  color: #4B5563;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.faq-feedback-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-feedback-btn {
  background: #FFFFFF;
  border: 1.5px solid #E2DCCF;
  padding: 7px 18px;
  border-radius: 50px;
  color: #374151;
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  outline: none;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.faq-feedback-btn svg,
.faq-feedback-btn i {
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover States */
.faq-feedback-btn.yes:hover:not(:disabled) {
  background: #F0FDF4;
  border-color: #22C55E;
  color: #15803D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.faq-feedback-btn.yes:hover:not(:disabled) svg,
.faq-feedback-btn.yes:hover:not(:disabled) i {
  transform: scale(1.2) rotate(-8deg);
}

.faq-feedback-btn.no:hover:not(:disabled) {
  background: #FEF2F2;
  border-color: #EF4444;
  color: #B91C1C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.faq-feedback-btn.no:hover:not(:disabled) svg,
.faq-feedback-btn.no:hover:not(:disabled) i {
  transform: scale(1.2) rotate(8deg);
}

/* Active / Voted States */
.faq-feedback-btn.yes.active {
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%) !important;
  border-color: #15803D !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35) !important;
  animation: faqVotePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-feedback-btn.yes.active svg,
.faq-feedback-btn.yes.active i {
  color: #FFFFFF !important;
  animation: faqThumbsUpPulse 0.5s ease;
}

.faq-feedback-btn.no.active {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
  border-color: #B91C1C !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35) !important;
  animation: faqVotePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-feedback-btn.no.active svg,
.faq-feedback-btn.no.active i {
  color: #FFFFFF !important;
  animation: faqThumbsDownPulse 0.5s ease;
}

/* Disabled & Locked state (after voting or if already voted by IP) */
.faq-feedback-actions.is-voted .faq-feedback-btn:not(.active),
.faq-feedback-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

/* Feedback Response Messages */
.faq-feedback-msg {
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  padding: 5px 14px;
  display: none;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  align-items: center;
  gap: 6px;
}

.faq-feedback-msg.show {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
}

.faq-feedback-msg.msg-yes {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.faq-feedback-msg.msg-no {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.faq-feedback-msg.msg-info {
  background: #F3F4F6;
  color: #374151;
  border: 1px solid #E5E7EB;
}

@keyframes faqVotePop {
  0% { transform: scale(0.92); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes faqThumbsUpPulse {
  0% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(1.35) rotate(-14deg); }
  75% { transform: scale(1.15) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes faqThumbsDownPulse {
  0% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(1.35) rotate(14deg); }
  75% { transform: scale(1.15) rotate(-4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@media (max-width: 991px) {
  .tbgfl-faq-support-card {
    padding: 20px 28px;
    gap: 16px;
  }
  .tbgfl-faq-quote {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .faq-section { padding: 60px 14px; }
  .faq-question { padding: 20px; }
  .tbgfl-faq-support-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }
  .tbgfl-faq-support-card::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }
  .tbgfl-faq-support-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .tbgfl-faq-support-action {
    width: 100%;
  }
  .tbgfl-faq-support-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .faq-feedback-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0 6px 0;
    gap: 8px;
  }
  .faq-feedback-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ==========================================================================
   COURSE PAGE STYLES
   ========================================================================== */
.course-intro-box { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; background: #FCFAF6; border: 1px solid rgba(184, 134, 11, 0.12); border-radius: 28px; overflow: hidden; padding: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); }
.course-intro-content { position: relative; z-index: 2; }
.financial-toolkit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.financial-toolkit-left { padding-right: 20px; }
.financial-toolkit-right { display: flex; flex-direction: column; gap: 16px; }
.course-intro-box::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #D4A94D, #B8860B); }
.course-intro-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; background: #B8860B; color: #FFFFFF; text-decoration: none; padding: 15px 28px; border-radius: 50px; font-size: 16px; font-weight: 600; transition: 0.35s ease; }
.course-intro-cta:hover { transform: translateY(-3px); background: #A67808; box-shadow: 0 12px 24px rgba(184, 134, 11, 0.22); }
.course-intro-image { position: relative; height: 100%; min-height: 480px; border-radius: 24px; overflow: hidden; }
.course-intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.course-intro-image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)); }

.walkaway-item { background: #FFFFFF; border: 1px solid rgba(184, 134, 11, 0.10); border-radius: 22px; padding: 26px; transition: all 0.35s ease; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02); }
.walkaway-item:hover { transform: translateY(-4px); border-color: rgba(184, 134, 11, 0.28); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07); }
.walkaway-top { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.walkaway-icon { min-width: 48px; width: 48px; height: 48px; border-radius: 14px; background: rgba(110, 139, 116, 0.10); display: flex; align-items: center; justify-content: center; }
.walkaway-icon svg { width: 22px; height: 22px; stroke: #6E8B74; }

.course-module-card { background: #FCFAF6; border: 1px solid rgba(184, 134, 11, 0.16); border-radius: 20px; overflow: hidden; transition: all 0.35s ease; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03); }
.course-module-card:hover { transform: translateY(-4px); border-color: rgba(184, 134, 11, 0.30); }
.course-module-image { width: 100%; height: 200px; }
.course-module-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.course-module-content { padding: 24px; }
.course-module-number { width: 40px; height: 40px; border-radius: 50%; background: rgba(110, 139, 116, 0.14); color: #6E8B74; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; margin-bottom: 14px; }

.financial-toolkit-card { display: flex; align-items: center; gap: 16px; background: #FFFFFF; border: 1px solid rgba(184, 134, 11, 0.16); border-radius: 22px; padding: 22px 26px; transition: all 0.35s ease; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04); }
.financial-toolkit-card:hover { transform: translateY(-4px); border-color: rgba(184, 134, 11, 0.35); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08); }
.financial-toolkit-icon { min-width: 40px; width: 40px; height: 40px; border-radius: 50%; background: rgba(110, 139, 116, 0.14); color: #6E8B74; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; }

.financial-audience-card { background: #FCFAF6; border: 1px solid rgba(184, 134, 11, 0.20); border-radius: 24px; padding: 40px 44px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); transition: all 0.35s ease; }
.financial-audience-card:hover { transform: translateY(-4px); border-color: rgba(184, 134, 11, 0.38); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); }
.financial-audience-card .audience-card-title { color: #111111; font-size: 24px; font-weight: 700; margin-bottom: 28px; text-align: center; }
.financial-audience-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 36px; padding: 0; margin: 0; }
.financial-audience-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 0; color: #111111; font-size: 16px; line-height: 1.65; }
.financial-icon-box { min-width: 32px; width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.financial-icon-box svg { width: 16px; height: 16px; }
.financial-card-positive .financial-icon-box { background: rgba(110, 139, 116, 0.16); color: #1E3A2B; }
.financial-card-negative .financial-icon-box { background: rgba(184, 134, 11, 0.12); color: #B8860B; }

.luxury-testimonial-card { background: #FFFFFF; border: 1px solid rgba(184, 134, 11, 0.18); border-radius: 24px; padding: 32px; transition: all 0.35s ease; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); }
.luxury-testimonial-card:hover { transform: translateY(-6px); border-color: rgba(184, 134, 11, 0.35); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); }
.luxury-testimonial-quote { color: #B8860B; font-size: 56px; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.luxury-testimonial-text { color: #1A1A1A; font-size: 16px; line-height: 1.8; margin-bottom: 26px; }
.luxury-testimonial-user { display: flex; align-items: center; gap: 14px; }
.luxury-testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: #6E8B74; color: #FFFFFF; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.luxury-testimonial-user-info h4 { color: #111111; font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.luxury-testimonial-user-info p { color: #6E8B74; font-size: 14px; margin: 0; }

.pricing-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(184, 134, 11, 0.08); color: #B8860B; padding: 10px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.pricing-feature { display: flex; align-items: center; gap: 14px; }
.pricing-feature-icon { min-width: 40px; width: 40px; height: 40px; border-radius: 12px; background: rgba(110, 139, 116, 0.10); display: flex; align-items: center; justify-content: center; }
.pricing-feature-icon svg { width: 18px; height: 18px; stroke: #6E8B74; }
.pricing-right { position: relative; background: linear-gradient(180deg, #B8860B, #A67808); padding: 40px 32px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; overflow: hidden; }
.pricing-right::before { content: ""; position: absolute; top: -80px; right: -80px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); }
.pricing-price { position: relative; color: #FFFFFF; font-size: 60px; line-height: 1; font-weight: 700; margin-bottom: 12px; }
.pricing-price-text { position: relative; color: rgba(255, 255, 255, 0.88); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.pricing-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #FFFFFF; color: #111111; text-decoration: none; padding: 16px 28px; border-radius: 50px; font-size: 16px; font-weight: 700; transition: all 0.35s ease; width: 100%; }
.pricing-btn:hover { transform: translateY(-3px); background: #F3F3F3; }
.pricing-btn svg { width: 18px; height: 18px; }

/* ==========================================================================
   ENDING QUOTE SECTION
   ========================================================================== */
@keyframes tbgflFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tbgfl-ending-section {
  width: 100%;
  padding: 0px 0 0;
  background: var(--tbgfl-off);
  overflow: hidden;
}

.tbgfl-ending-container {
  width: 100%;
  max-width: 100%;
  margin: auto;
  background: linear-gradient(to bottom, #ffffff, var(--tbgfl-off));
  border-top: 1px solid var(--tbgfl-border);
  padding: 35px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.02);
}

.tbgfl-top-design {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.tbgfl-top-design span {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 138, 68, 0.5), transparent);
}

.tbgfl-svg-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(184, 138, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 138, 68, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tbgfl-ending-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: tbgflFadeUp 1s ease;
}

.tbgfl-ending-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 60px;
  background: #ffffff;
  color: var(--tbgfl-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid var(--tbgfl-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.tbgfl-ending-content h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1.5px;
  max-width: 960px;
  margin: auto auto 24px;
  color: var(--tbgfl-black) !important;
}

.tbgfl-ending-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.85;
  max-width: 700px;
  margin: auto auto 30px;
}

.tbgfl-ending-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.tbgfl-signature-line {
  width: 80px;
  height: 1px;
  background: rgba(184, 138, 68, 0.3);
}

.tbgfl-ending-signature span {
  color: var(--tbgfl-gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.tbgfl-bottom-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 138, 68, 0.05), transparent 70%);
  bottom: -250px;
  right: -150px;
  border-radius: 50%;
  pointer-events: none;
}

.sticky-cta-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px); z-index: 1000; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0; pointer-events: none; width: 100%; max-width: 320px; padding: 0 20px; }
.sticky-cta-container.visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.sticky-cta-btn { display: flex; align-items: center; justify-content: center; gap: 12px; background: var(--tbgfl-gold); color: #ffffff; text-decoration: none; padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 16px; box-shadow: 0 10px 30px rgba(184, 138, 68, 0.35); white-space: nowrap; transition: all 0.3s ease; width: 100%; }
.sticky-cta-btn:hover { background: #A67808; transform: scale(1.03); box-shadow: 0 15px 40px rgba(184, 138, 68, 0.45); }
.sticky-cta-btn svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.sticky-cta-btn:hover svg { transform: translateX(4px); }

/* Course containers */
.course-intro-container,
.walkaway-container,
.course-curriculum-container,
.financial-toolkit-container,
.financial-audience-container,
.luxury-testimonial-container,
.pricing-container {
  max-width: 1180px;
  margin: auto;
}
.walkaway-heading,
.course-curriculum-heading,
.financial-audience-heading,
.luxury-testimonial-heading {
  text-align: center;
  margin-bottom: 40px;
}
.walkaway-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.financial-audience-wrapper {
  max-width: 960px;
  margin: 0 auto;
}
.course-curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.luxury-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-top-quote {
  text-align: center;
  color: #6E8B74;
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.pricing-bottom-quote {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.pricing-feature span {
  color: #111111;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}
.pricing-label svg {
  width: 16px;
  height: 16px;
  stroke: #B8860B;
}
.pricing-right {
  position: relative;
  background: linear-gradient(180deg, #B8860B, #A67808);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.pricing-right::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.pricing-left {
  padding: 40px;
}
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  background: #FCFAF6;
  border: 1px solid rgba(184, 134, 11, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(184, 134, 11, 0.04);
}

/* Course Responsive */
@media (max-width: 991px) {
  .course-intro-box { grid-template-columns: 1fr; }
  .course-intro-image { min-height: 380px; order: -1; }
  .walkaway-wrapper, .financial-audience-wrapper { grid-template-columns: 1fr; }
  .course-curriculum-grid { grid-template-columns: repeat(2, 1fr); }
  .financial-toolkit-grid { grid-template-columns: 1fr; gap: 36px; }
  .financial-toolkit-left { padding-right: 0; }
  .luxury-testimonial-grid { grid-template-columns: 1fr; }
  .pricing-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .course-intro-box { padding: 22px; border-radius: 20px; gap: 20px; }
  .course-intro-image { min-height: 260px; }
  .course-intro-cta { width: 100%; justify-content: center; font-size: 15px; padding: 14px 20px; }
  .course-curriculum-grid { grid-template-columns: 1fr; gap: 16px; }
  .financial-toolkit-card { padding: 18px; flex-direction: column; text-align: center; }
  .financial-audience-card { padding: 28px 20px; }
  .financial-audience-card .audience-card-title { font-size: 20px; margin-bottom: 20px; text-align: left; }
  .financial-audience-list { grid-template-columns: 1fr; gap: 16px; }
  .luxury-testimonial-card { padding: 26px 20px; }
  .pricing-left { padding: 26px 18px; }
  .pricing-right { padding: 32px 18px; }
  .pricing-price { font-size: 46px; }
  .sticky-cta-container { bottom: 20px; max-width: 280px; }
  .sticky-cta-btn { padding: 14px 24px; font-size: 14px; }
}

/* ==========================================================================
   BLOG SINGLE POST - ARTICLE BODY STYLES
   ========================================================================== */
.blog-single-hero .financial-image-quote-section,
body.blog-single .financial-image-quote-section {
  min-height: 450px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(248, 246, 241, 0.8);
  font-size: 15px;
}
.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-body h2 {
  font-size: 28px;
  color: #111;
  margin: 35px 0 20px;
  font-weight: 700;
}
.article-body h3 {
  font-size: 22px;
  color: #111;
  margin: 30px 0 15px;
  font-weight: 700;
}
.article-body p {
  font-family: "Mona Sans", -apple-system, "system-ui", "Segoe UI", Roboto, sans-serif !important;
  font-size: 17px;
  line-height: 1.85;
  font-style: normal !important;
  font-weight: 400 !important;
  color: rgb(68, 68, 68) !important;
  margin-bottom: 24px;
}
.article-body a {
  color: #B8860B;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.article-body a:hover {
  color: #A67808;
  text-decoration-thickness: 2px;
}
.article-body ul {
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: none !important;
}
.article-body ul li {
  font-size: 16px;
  line-height: 1.75;
  color: #222;
  margin-bottom: 12px;
  position: relative;
  list-style: none !important;
}
.article-body ul li::before {
  content: '▶' !important;
  color: #B8860B !important;
  font-size: 11px !important;
  position: absolute !important;
  left: -22px !important;
  top: 2px !important;
}

.article-blockquote::before {
  content: '\f10d';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 30px;
  color: rgba(184, 134, 11, 0.1);
  z-index: 0;
}
.article-image {
  width: 100%;
  border-radius: 16px;
  margin: 30px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.article-author-box {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 30px;
  background: #F7F4EE;
  border-radius: 16px;
  margin-top: 50px;
  border: 1px solid rgba(184, 134, 11, 0.1);
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 18px;
  color: #111;
  margin-bottom: 5px;
}
.author-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Blog Single Main - White background */
body.blog-single .blog-main,
.single .blog-main {
  background: #FFFFFF;
  padding: 40px 50px;
  border-radius: 24px;
  border: 1px solid rgba(184, 134, 11, 0.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.02);
}
@media (max-width: 1100px) {
  body.blog-single .blog-main,
  .single .blog-main {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   BLOG FEEDBACK / ENGAGEMENT WIDGET
   ========================================================================== */
.blog-feedback-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  margin: 45px 0 35px;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.03);
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-feedback-section:hover {
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.08);
  border-color: rgba(184, 134, 11, 0.3);
  transform: translateY(-1px);
}
.feedback-text h3 {
  font-size: 18px;
  color: #111;
  font-weight: 600;
  margin: 0 0 4px 0;
}
.feedback-text p {
  font-size: 13.5px;
  color: #666;
  margin: 0 !important;
  line-height: 1.5;
}
.feedback-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.feedback-btn {
  background: #F7F4EE;
  border: 1px solid transparent;
  padding: 10px 18px;
  border-radius: 50px;
  color: #4E5B52;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  outline: none;
  user-select: none;
}
.feedback-btn i {
  font-size: 16px;
  transition: transform 0.25s ease;
}
.feedback-btn:hover {
  background: #EBE7DD;
  color: #111;
  transform: translateY(-2px);
}
.feedback-btn:active {
  transform: translateY(0);
}
.feedback-btn.like-btn.active {
  background: rgba(108, 123, 103, 0.12);
  border-color: rgba(108, 123, 103, 0.3);
  color: #4A5D45;
}
.feedback-btn.like-btn.active i {
  font-weight: 900;
  color: #4A5D45;
  animation: thumbsUpPulse 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feedback-btn.dislike-btn.active {
  background: rgba(184, 134, 11, 0.08);
  border-color: rgba(184, 134, 11, 0.3);
  color: #B8860B;
}
.feedback-btn.dislike-btn.active i {
  font-weight: 900;
  color: #B8860B;
  animation: thumbsDownPulse 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feedback-btn.share-btn.copied {
  background: #B8860B;
  color: #FFF;
  border-color: #B8860B;
}
.feedback-divider {
  width: 1px;
  height: 24px;
  background: rgba(184, 134, 11, 0.15);
  margin: 0 8px;
}
.feedback-btn .count {
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.feedback-btn.active .count {
  background: rgba(255, 255, 255, 0.4);
}
.feedback-message {
  position: absolute;
  bottom: -25px;
  right: 30px;
  font-size: 12px;
  color: #B8860B;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.feedback-message.show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes thumbsUpPulse {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.3) rotate(-15deg); }
  100% { transform: scale(1) rotate(0deg); }
}
@keyframes thumbsDownPulse {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.3) rotate(15deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Share Dropdown */
.share-container {
  position: relative;
}
.share-dropdown {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 170px;
  z-index: 100;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.share-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 25px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #FFFFFF;
  filter: drop-shadow(0 2px 1px rgba(184, 134, 11, 0.08));
}
.share-dropdown.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #4E5B52;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
}
.dropdown-item i {
  font-size: 15px;
  width: 16px;
  text-align: center;
  transition: transform 0.2s ease;
}
.dropdown-item:hover {
  background: #F7F4EE;
  color: #111;
}
.dropdown-item:hover i {
  transform: scale(1.1);
}
.dropdown-item.whatsapp:hover { color: #25D366; background: rgba(37, 211, 102, 0.08); }
.dropdown-item.twitter:hover { color: #111111; background: rgba(0, 0, 0, 0.05); }
.dropdown-item.linkedin:hover { color: #0A66C2; background: rgba(10, 102, 194, 0.08); }
.dropdown-item.facebook:hover { color: #1877F2; background: rgba(24, 119, 242, 0.08); }
.dropdown-item.copy-link:hover { color: #B8860B; background: rgba(184, 134, 11, 0.08); }

@media (max-width: 768px) {
  .blog-feedback-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    margin: 35px 0 25px;
  }
  .feedback-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .feedback-divider {
    display: none;
  }
  .feedback-message {
    position: static;
    margin-top: 10px;
    text-align: left;
  }
}

/* Search form in sidebar */
.sidebar-search form,
.sidebar-search .search-form {
  display: flex;
  position: relative;
  width: 100%;
}
.sidebar-search .search-field,
.sidebar-search input[type="search"] {
  width: 100%;
  padding: 15px 22px;
  padding-right: 55px;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 50px;
  background: #fff;
  font-size: 15px;
  color: #111;
  font-family: inherit;
  transition: all 0.3s ease;
}
.sidebar-search .search-field:focus,
.sidebar-search input[type="search"]:focus {
  outline: none;
  border-color: #B8860B;
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.1);
}
.sidebar-search .search-submit,
.sidebar-search button[type="submit"] {
  position: absolute;
  right: 6px;
  background: #B8860B;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar-search .search-submit:hover,
.sidebar-search button[type="submit"]:hover {
  background: #A67808;
  transform: scale(1.05);
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Pagination styling */
.navigation.pagination {
  display: flex;
  justify-content: center;\  align-items: center;
  gap: 8px;
  margin-top: 30px;
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(184, 134, 11, 0.15);
  color: #111;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: #B8860B;
  color: #fff;
  border-color: #B8860B;
}
.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 16px;
  gap: 6px;
}

/* ==========================================================================
   BLOG FILTER TABS & SORT DROPDOWN
   ========================================================================== */
.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 40px;
}

.blog-filters-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.blog-filters-track {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.blog-filters-track::-webkit-scrollbar {
  display: none;
}

.blog-filters-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.blog-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 4px 2px;
}

.filter-btn {
  background: #fff;
  border: 1px solid rgba(184, 134, 11, 0.15);
  color: #111;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover {
  background: rgba(184, 134, 11, 0.05);
  border-color: #B8860B;
}

.filter-btn.active {
  background: #B8860B;
  color: #fff;
  border-color: #B8860B;
}

.blog-slider-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(184, 134, 11, 0.25);
  color: #B8860B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  outline: none;
}

.blog-slider-arrow:hover {
  background: #B8860B;
  color: #fff;
  border-color: #B8860B;
  transform: scale(1.06);
}

.blog-slider-arrow.disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.blog-sort select {
  padding: 10px 40px 10px 20px;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 50px;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23B8860B%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 10px auto;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.blog-sort select:focus {
  outline: none;
  border-color: #B8860B;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.1);
}

.finance-blog-bottom {
  text-align: center;
  margin-top: 34px;
}

.finance-blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #B8860B;
  color: #FFFFFF;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.35s ease;
}

.finance-blog-btn:hover {
  transform: translateY(-3px);
  background: #A67808;
}

@media (max-width: 768px) {
  .blog-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .blog-sort select {
    width: 100%;
  }
}

/* ==========================================================================
   GLOBAL SECTION CLASSES (Course & Shared)
   ========================================================================== */
.global-section {
  width: 100%;
  padding: 70px 20px;
}
.global-section.bg-cream { background-color: #F7F4EE; }
.global-section.bg-white { background-color: #FFFFFF; }
.global-title {
  color: #B8860B;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.global-subtitle {
  color: #4E5B52;
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 20px auto;
}
.global-card-title {
  color: #B8860B;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 12px;
}
.global-text {
  color: #4E4E4E;
  font-size: 16px;
  line-height: 1.7;
}


.course-hero-label { color: #B8860B; }
.course-hero-divider { margin-top: 24px; margin-bottom: 0; }
.course-intro-section { padding: 70px 20px; background: #fff; }
.course-intro-heading { color: #111; font-size: 18px; line-height: 1.4; font-weight: 700; margin-bottom: 16px; }
.course-intro-text { margin-bottom: 12px; }
.course-intro-content p.global-text { margin-bottom: 12px; }
.course-intro-content p.global-text:last-of-type { margin-bottom: 0; }
.pricing-title { margin-bottom: 12px; }
.pricing-text1 { margin-bottom: 4px; }
.pricing-feature-text { color: #111; font-weight: 600; }
.toolkit-highlight { color: #111; font-size: 18px; font-weight: 600; margin-bottom: 14px; }
.toolkit-card-text { color: #111; font-weight: 600; }
.audience-card-title { color: #111; }
.walkaway-section { padding: 70px 20px; background: #F7F4EE; }
.walkaway-divider { background: #6E8B74; }
.walkaway-item .global-card-title { margin: 0; }
.walkaway-subtitle { max-width: 760px; margin: 0 auto 30px; color: #4E5B52; font-size: 18px; }
.course-curriculum-section { padding: 70px 20px; background: #fff; }
.course-module-title { color: #111; }
.toolkit-section { padding: 70px 20px; background: #F7F4EE; }
.toolkit-divider-left { margin-left: 0; margin-bottom: 20px; }
.audience-section { padding: 70px 20px; background: #fff; }
.testimonials-section { padding: 70px 20px; background: #F7F4EE; }
.pricing-section { padding: 70px 20px; background: #fff; }
.course-cta-section { min-height: 400px; }
.course-cta-label { color: #B8860B; }
.course-cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.course-cta-btn-primary { display: inline-flex; align-items: center; gap: 10px; background: #B8860B; color: #fff; text-decoration: none; padding: 15px 30px; border-radius: 50px; font-size: 15px; font-weight: 700; transition: 0.35s ease; box-shadow: 0 10px 25px rgba(184,138,68,0.3); }
.course-cta-btn-primary:hover { background: #A67808; transform: translateY(-3px); }
.course-cta-btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: #fff; text-decoration: none; padding: 15px 30px; border-radius: 50px; font-size: 15px; font-weight: 700; transition: 0.35s ease; border: 1px solid rgba(255,255,255,0.3); }
.course-cta-btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }
.course-interlude-label,
.course-interlude2-label { color: #B8860B; }
.course-interlude-divider,
.course-interlude2-divider { margin-top: 24px; margin-bottom: 0; }

/* Course extra responsive */
@media screen and (max-width: 768px) {
  .global-section { padding: 45px 15px; }
  .global-title { font-size: 32px; line-height: 1.3; margin-bottom: 12px; }
  .global-subtitle { font-size: 16px; margin-bottom: 20px; }
  .global-label { font-size: 12px; margin-bottom: 10px; }
  .global-card-title { font-size: 18px; }
  .global-text { font-size: 15px; }
  .global-divider { margin-bottom: 24px; }
  .reveal { transform: translateY(20px); }
  .walkaway-item { padding: 20px; }
  .course-module-image { height: 180px; }
  .course-module-content { padding: 20px; }
  .financial-toolkit-card { padding: 18px; flex-direction: column; text-align: center; gap: 12px; }
  .pricing-top-quote, .pricing-bottom-quote { font-size: 15px; }
  .pricing-bottom-quote { margin-top: 24px; padding: 0 10px; }
}
@media (max-width: 991px) {
  .tbgfl-ending-container {
    padding: 50px 24px;
  }

  .tbgfl-ending-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .tbgfl-ending-section {
    padding: 40px 0 0;
  }

  .tbgfl-ending-container {
    padding: 40px 20px;
  }

  .tbgfl-top-design {
    margin-bottom: 24px;
    gap: 12px;
  }

  .tbgfl-top-design span {
    width: 50px;
  }

  .tbgfl-svg-icon {
    width: 48px;
    height: 48px;
  }

  .tbgfl-ending-tag {
    font-size: 11px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }

  .tbgfl-ending-content h2 {
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }

  .tbgfl-ending-signature {
    gap: 12px;
  }

  .tbgfl-signature-line {
    width: 40px;
  }

  .tbgfl-ending-signature span {
    font-size: 13px;
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
.about-label {
  display: inline-block;
  color: #B8860B;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.about-section {
  padding: 40px 20px;
  background: var(--tbgfl-off);
}
.about-container {
  max-width: 1100px;
  margin: auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.intention-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.intention-header h2 {
  font-size: 38px;
  color: var(--tbgfl-gold);
  margin-bottom: 24px;
}
.intention-card {
  background: #ffffff;
  border: 1px solid var(--tbgfl-border);
  border-radius: 30px;
  padding: 40px;
  margin-bottom: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}
.intention-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}
.vision-list {
  list-style: none;
  margin: 30px 0;
}
.vision-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
}
.vision-list li::before {
  content: "\2022";
  color: var(--tbgfl-gold);
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
.author-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.author-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-content h2 {
  font-size: 34px;
  margin-bottom: 24px;
  color: var(--tbgfl-black);
}
.author-bio p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}
.author-quote-box {
  margin-top: 40px;
  padding-left: 30px;
  border-left: 3px solid var(--tbgfl-gold);
}
.author-quote-box blockquote {
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-left: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 22px !important;
  font-style: italic !important;
  color: var(--tbgfl-black) !important;
  line-height: 1.6 !important;
  font-family: Georgia, serif !important;
}
.author-quote-box blockquote::before,
.author-quote-box blockquote::after {
  content: none !important;
  display: none !important;
}
.signature-section {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--tbgfl-border);
}
.signature-line {
  font-family: "Mona Sans", sans-serif;
  font-size: 24px;
  font-style: italic;
  color: var(--tbgfl-gold);
  margin-top: 20px;
  opacity: 0.9;
}

.about-hero-label { color: #B8860B; }
.about-hero-title { margin-bottom: 12px; }
.about-hero-subtitle { color: #F8F6F1; font-size: 20px; font-style: italic; line-height: 1.6; margin-top: 10px; max-width: 720px; margin-left: auto; margin-right: auto; }
.about-hero-divider { margin-top: 24px; margin-bottom: 0; }
.about-grid-vision { margin-top: 40px; }
.about-grid-author { margin-top: 60px; direction: rtl; }
.about-grid-author > * { direction: ltr; }
.intention-card-no-bottom { margin-bottom: 0; }
.about-vision-heading { font-size: 34px; margin-bottom: 24px; color: var(--tbgfl-black); }
.about-author-heading { font-size: 34px; margin-bottom: 24px; color: var(--tbgfl-black); }
.author-content-col { direction: ltr; }
.author-image-direction { direction: ltr; }
.about-closing { min-height: 300px; }
.about-closing-divider { margin-top: 24px; margin-bottom: 0; }
.motto-section { padding: 60px 20px; background: var(--tbgfl-off); text-align: center; }
.motto-container { max-width: 800px; margin: 0 auto; }
.motto-text { font-family: Georgia, serif; font-size: 24px; font-style: italic; color: var(--tbgfl-black); line-height: 1.6; margin: 0; }
.motto-divider { width: 40px; height: 1px; background: var(--tbgfl-gold); margin: 20px auto 0 auto; }
.page-editor-content { padding: 40px 20px; background: var(--tbgfl-bg); }
.page-editor-container { max-width: 1140px; margin: auto; }

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-section {
    padding: 60px 20px;
  }
  .intention-card {
    padding: 30px;
  }
  .intention-header h2 {
    font-size: 32px;
  }
  .about-grid-author {
    direction: ltr;
  }
  .about-hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about-hero-title {
    font-size: 28px;
  }
  .about-hero-subtitle {
    font-size: 16px;
  }
  .motto-text {
    font-size: 20px;
  }
  .about-vision-heading,
  .about-author-heading {
    font-size: 28px;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 20px;
  text-align: center;
}
.hero-label {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  color: #ffffff;
  font-size: 44px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0;
}
.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.7;
}
.contact-section {
  padding: 60px 18px;
  background: var(--tbgfl-bg);
}
.contact-container {
  max-width: 1140px;
  margin: auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-card {
  background: #ffffff;
  border: 1px solid var(--tbgfl-border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--tbgfl-gold);
  box-shadow: 0 15px 40px rgba(184,138,68,0.1);
}
.info-icon {
  width: 54px;
  height: 54px;
  background: rgba(184,138,68,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon i {
  color: var(--tbgfl-gold);
  font-size: 20px;
}
.info-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}
.info-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}
.info-text a {
  color: var(--tbgfl-gold);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.info-text a:hover {
  text-decoration: underline;
}
.info-text .info-company {
  margin-bottom: 6px;
}
.info-text .info-company span {
  color: var(--tbgfl-gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.info-text .info-desc {
  margin-bottom: 8px;
}
.info-text code {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--tbgfl-gold);
  letter-spacing: 0.5px;
}
.form-container {
  background: #ffffff;
  border: 1px solid var(--tbgfl-border);
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.03);
}
.form-header {
  margin-bottom: 34px;
}
.form-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.form-header p {
  color: #666;
  font-size: 16px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--tbgfl-black);
  margin-left: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: #fafafa;
  border: 1px solid var(--tbgfl-border);
  border-radius: 16px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: var(--tbgfl-gold);
  box-shadow: 0 0 0 4px rgba(184,138,68,0.08);
}
.form-group textarea {
  height: 150px;
  resize: none;
}
.submit-btn,
.wpcf7 input[type="submit"],
.wpcf7-submit {
  grid-column: 1 / -1;
  width: 100%;
  box-sizing: border-box;
  background: var(--tbgfl-gold, #B8860B);
  color: #ffffff;
  border: none;
  padding: 18px 30px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  font-family: inherit;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.15);
}
.submit-btn:hover,
.wpcf7 input[type="submit"]:hover,
.wpcf7-submit:hover {
  background: var(--tbgfl-green, #1E3A2B);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.wpcf7-form p {
  margin-bottom: 16px;
}
.wpcf7-form p:last-child {
  margin-bottom: 0;
}
.founder-note-section {
  padding: 50px 18px 24px;
  background: var(--tbgfl-bg);
}
.founder-card {
  background: #ffffff;
  border: 1px solid var(--tbgfl-border);
  border-radius: 40px;
  padding: 50px 54px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.03);
}
.founder-image {
  width: 100%;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0,0,0,0.12);
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-content h2 {
  font-size: 30px;
  line-height: 1.4;
  font-style: italic;
  color: var(--tbgfl-black);
  margin-bottom: 22px;
  font-family: Georgia, serif;
}
.founder-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
  max-width: 100%;
}
.founder-signature p {
  margin-bottom: 4px;
  font-size: 15px;
  color: #888;
}
.founder-signature h3 {
  font-size: 24px;
  color: var(--tbgfl-gold);
  margin-bottom: 4px;
  font-family: "Mona Sans", sans-serif;
}
.founder-signature span {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .founder-card {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
    text-align: center;
  }
  .founder-image {
    width: 100%;
    max-width: 320px;
    height: 400px;
    margin: 0 auto;
    border-radius: 24px;
  }
  .founder-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .founder-content h2 {
    font-size: 26px;
  }
  .founder-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-container {
    padding: 34px 24px;
  }
  .tbgfl-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .hero-title { font-size: 34px; }
  .contact-section { padding: 60px 14px; }
  .contact-form { grid-template-columns: 1fr; }
  .tbgfl-footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   GUIDANCE PAGE STYLES
   ========================================================================== */
.guidance-hero-title { font-size: 34px; }
.guidance-hero-text { font-size: 20px; font-weight: 400; opacity: 0.9; }
.guidance-hero-divider { margin-top: 24px; margin-bottom: 0; }
.step-list { list-style: none; }
.step-check { position: absolute; left: 0; color: var(--tbgfl-gold); font-weight: 700; font-size: 14px; }
.steps-section {
  padding: 50px 20px;
  background: #ffffff;
}
.steps-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.steps-container::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(184, 138, 68, 0.1);
  z-index: 1;
}
.step-item {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.step-item.active {
  opacity: 1;
  transform: translateY(0);
}
.step-number {
  min-width: 100px;
  height: 100px;
  background: #ffffff;
  border: 2px solid var(--tbgfl-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--tbgfl-gold);
  box-shadow: 0 10px 25px rgba(184, 138, 68, 0.1);
  position: relative;
  z-index: 3;
}
.step-content {
  background: #fdfcf9;
  border: 1px solid var(--tbgfl-border-alt);
  border-radius: 24px;
  padding: 34px;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.step-content:hover {
  transform: translateX(5px);
  border-color: rgba(184, 138, 68, 0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}
.step-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--tbgfl-black);
  margin-bottom: 14px;
}
.step-content ul {
  list-style: none;
}
.step-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.step-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--tbgfl-gold);
  font-size: 14px;
}

@media (max-width: 767px) {
  .guidance-hero h1 { font-size: 36px; }
  .steps-container::before { left: 20px; }
  .step-item { gap: 20px; flex-direction: column; }
  .step-number {
    min-width: 50px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-left: -5px;
  }
  .step-content { padding: 20px; }
}

/* ==========================================================================
   SINGLE BLOG DETAILS COMPACT AUTHOR & NAV CARDS
   ========================================================================== */
.compact-author-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: #FCFAF6;
  border-radius: 50px;
  border: 1px solid rgba(184, 134, 11, 0.2);
  margin-top: 25px;
}

.compact-author-box .author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.compact-author-box .author-info {
  margin: 0;
}

.compact-author-box .author-label {
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.compact-author-box .author-label strong {
  color: #B8860B;
  font-weight: 600;
}

.post-navigation-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.post-nav-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  background: #FCFAF6;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-nav-card:hover {
  background: #fff;
  border-color: #B8860B;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(184, 134, 11, 0.08);
}

.post-nav-card.next {
  text-align: right;
  align-items: flex-end;
}

.nav-direction {
  font-size: 12px;
  font-weight: 700;
  color: #B8860B;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.post-nav-card:hover .nav-title {
  color: #B8860B;
}

@media screen and (max-width: 600px) {
  .post-navigation-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FOOTER NEWSLETTER SUBSCRIBE FORM & CLEAN WHITE SUCCESS NOTICE
   ========================================================================== */
.tbgfl-footer-subscribe {
  margin-top: 25px;
  width: 100%;
}

.tbgfl-footer-subscribe h4 {
  font-size: 13px;
  font-weight: 700;
  color: #B8860B;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tbgfl-subscribe-box {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.tbgfl-subscribe-input {
  flex: 1;
  padding: 12px 18px !important;
  border-radius: 14px !important;
  border: 1.5px solid rgba(184, 134, 11, 0.4) !important;
  background: #FFFFFF !important;
  color: #1E3A2B !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
}

.tbgfl-subscribe-input::placeholder {
  color: #777777 !important;
  font-weight: 400 !important;
}

.tbgfl-subscribe-input:focus {
  border-color: #B8860B !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 10px rgba(184, 134, 11, 0.25) !important;
}

.tbgfl-subscribe-btn {
  background: #B8860B !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2) !important;
  text-transform: uppercase;
}

.tbgfl-subscribe-btn:hover {
  background: #1E3A2B !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
}

/* Success Notice Box - Clean Pure White Box with Proper Rich Green Text & Border */
.tbgfl-subscribe-notice {
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  display: none;
  line-height: 1.5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.tbgfl-subscribe-notice.success {
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: #FFFFFF !important;
  color: #2E7D32 !important;
  border: 1.5px solid #2E7D32 !important;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.15) !important;
}

.tbgfl-subscribe-notice.success i {
  color: #2E7D32 !important;
  font-size: 17px !important;
}

.tbgfl-subscribe-notice.error {
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: #FFFFFF !important;
  color: #c62828 !important;
  border: 1.5px solid #c62828 !important;
}

.tbgfl-subscribe-notice.error i {
  color: #c62828 !important;
  font-size: 16px !important;
}
