/* ============================================================
   PREMIUM OVERRIDE — SaaS-grade polish with brand teal colors
   Loaded AFTER main.css to upgrade the template
   ============================================================ */

/* ---- Color System (teal brand) ---- */
:root {
  --brand: #0e7c8a;
  --brand-dark: #0a5f6a;
  --brand-deeper: #0c2d3a;
  --brand-light: #e8f6f8;
  --dark: #0c2d3a;
  --light: #f8fafb;
  --light-surface: #f0f4f6;
  --muted: #7a8a94;
  --body-text: #4a5568;
  --heading: #0c2d3a;
  --white: #ffffff;
}

/* ---- Global ---- */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}

a { color: var(--brand); transition: 0.2s ease; }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

/* ---- Navigation (show full nav on smaller desktops) ---- */
@media (min-width: 992px) {
  .mobile-nav-toggle { display: none !important; }

  .navmenu ul {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    position: static !important;
    inset: unset !important;
    border: none !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .navmenu li { position: relative; }

  .navmenu a, .navmenu a:focus {
    padding: 18px 10px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }

  .navmenu .dropdown ul {
    position: absolute !important;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    top: 130%;
    left: 14px;
    padding: 10px 0;
    background: #fff !important;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    z-index: 99;
    transition: 0.3s;
    min-width: 200px;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
  }

  .header .container-fluid {
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .header .logo { order: 1 !important; flex-shrink: 0; }
  .header .navmenu { order: 2 !important; }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    order: 3 !important;
    margin: 0 0 0 12px !important;
    width: auto !important;
    font-size: 12px !important;
    padding: 9px 16px !important;
    flex-shrink: 0 !important;
    border: none !important;
  }

  .header .btn-getstarted i { display: none !important; }
}

@media (max-width: 991px) {
  .header .btn-getstarted i { display: none !important; }
}

/* ---- Sections Global ---- */
section, .section {
  padding: 110px 0;
  overflow: visible;
}

.section-title {
  padding-bottom: 56px;
  text-align: center;
}
.section-title h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  line-height: 1;
}
.section-title h2::after { display: none; }
.section-title p {
  font-size: 40px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-transform: none;
  max-width: 580px;
  margin: 0 auto;
}

/* ---- Light / Dark ---- */
.light-background {
  background-color: var(--light) !important;
}
.dark-background {
  background-color: var(--dark) !important;
}

/* ---- HERO (gradient with brand teal) ---- */
.hero {
  min-height: 100vh;
  padding: 160px 0 120px;
  background: linear-gradient(150deg, var(--brand-deeper) 0%, #0a4a5a 40%, var(--brand) 100%) !important;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14,124,138,0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero img { display: none !important; }
.hero:before { z-index: 1; }

.hero .container {
  position: relative;
  z-index: 3;
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}

.hero h2 {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.hero .btn-get-started {
  background: var(--white);
  color: var(--brand-deeper);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 16px;
  box-shadow: none;
  transition: 0.2s ease;
}
.hero .btn-get-started:hover {
  background: rgba(255,255,255,0.9);
  border-color: transparent;
  color: var(--brand-deeper);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hero .btn-outline-hero {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  padding: 14px 32px;
  border-radius: 10px;
}
.hero .btn-outline-hero:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero .hero-trust-badges {
  margin-top: 48px;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.hero .hero-trust-badges i {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero h2 { font-size: 36px; }
  .hero p { font-size: 16px; }
  section, .section { padding: 80px 0; }
  .section-title p { font-size: 30px; }
}
@media (max-width: 480px) {
  .hero h2 { font-size: 30px; }
}

/* ---- Stats ---- */
.counts { padding: 56px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.counts .stats-item span {
  font-size: 44px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
}
.counts .stats-item p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  opacity: 1;
}

/* ---- About ---- */
.about .content h3 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about .content p { font-size: 16px; color: var(--body-text); line-height: 1.8; }
.about .content ul i { color: var(--brand); }
.about .content .read-more {
  background: var(--brand);
  color: var(--white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 12px 28px;
}
.about .content .read-more:hover { background: var(--brand-dark); }
.about .img-fluid { border-radius: 20px; }

/* ---- Urgency Banner ---- */
.urgency-banner { padding: 0; }
.urgency-banner .urgency-box {
  background: linear-gradient(135deg, var(--brand-deeper), var(--brand));
  border-radius: 20px;
  padding: 44px 48px;
}
.urgency-banner .urgency-box h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.urgency-banner .urgency-box h3 i { color: rgba(255,255,255,0.5); }
.urgency-banner .urgency-box p { color: rgba(255,255,255,0.55); font-size: 15px; }
.urgency-banner .btn-urgency {
  background: var(--white);
  color: var(--brand-deeper);
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
}
.urgency-banner .btn-urgency:hover {
  background: rgba(255,255,255,0.9);
  transform: none;
  box-shadow: none;
}

/* ---- Who It's For ---- */
.who-its-for .audience-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: left;
  transition: 0.3s ease;
}
.who-its-for .audience-card:hover {
  box-shadow: 0 20px 60px rgba(14,124,138,0.08);
  transform: translateY(-4px);
  border-color: rgba(14,124,138,0.15);
}
.who-its-for .audience-card i {
  font-size: 26px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Colorful audience cards */
.who-its-for .row > div:nth-child(1) .audience-card i { background: #eef4ff; color: #4f6ef7; }
.who-its-for .row > div:nth-child(2) .audience-card i { background: #fef3ea; color: #e8872b; }
.who-its-for .row > div:nth-child(3) .audience-card i { background: #eafaf4; color: #2dba78; }
.who-its-for .audience-card h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.who-its-for .audience-card p { font-size: 14px; color: var(--body-text); line-height: 1.7; }

/* ---- Why Us ---- */
.why-us .why-box {
  background: linear-gradient(135deg, var(--brand-deeper), var(--brand-dark));
  padding: 44px;
  border-radius: 20px;
}
.why-us .why-box h3 { font-size: 30px; letter-spacing: -0.03em; color: var(--white); }
.why-us .why-box p { opacity: 0.65; color: var(--white); }
.why-us .why-box .more-btn {
  background: var(--white);
  color: var(--brand-deeper);
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
}
.why-us .why-box .more-btn:hover {
  background: rgba(255,255,255,0.9);
  color: var(--brand-deeper);
}

.why-us .icon-box {
  border: none;
  border-radius: 20px;
  padding: 36px 26px;
  transition: 0.3s ease;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.why-us .icon-box:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.why-us .icon-box i {
  border-radius: 14px;
  width: 56px;
  height: 56px;
  font-size: 24px;
}
.why-us .icon-box:hover i { filter: brightness(1.1); }
.why-us .icon-box h4 { font-size: 17px; letter-spacing: -0.02em; margin: 0 0 12px 0; }
.why-us .icon-box p { font-size: 14px; color: var(--body-text); }

/* Colorful Why Us icons */
.why-us .col-xl-4:nth-child(1) .icon-box i { background: #eef4ff; color: #4f6ef7; }
.why-us .col-xl-4:nth-child(2) .icon-box i { background: #eafaf4; color: #2dba78; }
.why-us .col-xl-4:nth-child(3) .icon-box i { background: #f4eefa; color: #8b5cf6; }

/* ---- Features (colorful icons) ---- */
.features { padding: 80px 0; }
.features .features-item {
  border: none;
  border-radius: 16px;
  padding: 22px 20px;
  transition: 0.25s ease;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.features .features-item:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.features .features-item i {
  font-size: 24px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 14px;
  flex-shrink: 0;
}
.features .features-item h3 { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.features .features-item h3 a { color: var(--heading); }
.features .features-item:hover h3 a { color: var(--heading); }

/* Colorful icon backgrounds */
.features .row > div:nth-child(1) .features-item i  { background: #eef4ff; color: #4f6ef7 !important; }
.features .row > div:nth-child(2) .features-item i  { background: #fef3ea; color: #e8872b !important; }
.features .row > div:nth-child(3) .features-item i  { background: #eafaf4; color: #2dba78 !important; }
.features .row > div:nth-child(4) .features-item i  { background: #f4eefa; color: #8b5cf6 !important; }
.features .row > div:nth-child(5) .features-item i  { background: #feeef0; color: #e5395d !important; }
.features .row > div:nth-child(6) .features-item i  { background: #fff8e6; color: #d4a017 !important; }
.features .row > div:nth-child(7) .features-item i  { background: #e8f6f8; color: #0e7c8a !important; }
.features .row > div:nth-child(8) .features-item i  { background: #eef0ff; color: #4338ca !important; }
.features .row > div:nth-child(9) .features-item i  { background: #fef3ea; color: #c2590a !important; }
.features .row > div:nth-child(10) .features-item i { background: #feeef0; color: #be185d !important; }
.features .row > div:nth-child(11) .features-item i { background: #fff0e8; color: #ea580c !important; }
.features .row > div:nth-child(12) .features-item i { background: #eafaf4; color: #059669 !important; }

/* ---- Bootcamp Cards ---- */
.bootcamps .bootcamp-item {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
}
.bootcamps .bootcamp-item:hover {
  box-shadow: 0 20px 60px rgba(14,124,138,0.1);
  transform: translateY(-6px);
  border-color: transparent;
}
.bootcamps .bootcamp-img { height: 200px; }
.bootcamps .bootcamp-content { padding: 24px; }
.bootcamps .bootcamp-content h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.bootcamps .bootcamp-content h3 a { color: var(--heading); }
.bootcamps .bootcamp-content h3 a:hover { color: var(--brand); }
.bootcamps .bootcamp-content .category {
  background: var(--brand);
  color: var(--white);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
}
.bootcamps .bootcamp-content .category:hover {
  background: var(--brand-dark);
  transform: none;
  box-shadow: none;
}
.bootcamps .bootcamp-content .description { font-size: 14px; color: var(--body-text); }

.bootcamp-badges .badge-duration {
  background: var(--brand-light);
  color: var(--brand-dark);
  border-radius: 8px;
}
.bootcamp-badges .badge-level {
  background: var(--light);
  color: var(--muted);
  border-radius: 8px;
}

.btn-see-all-bootcamps {
  border: 1px solid rgba(14,124,138,0.2);
  color: var(--brand);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
}
.btn-see-all-bootcamps:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* ---- FAQ ---- */
.faq .accordion-flush .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: transparent;
  border-radius: 0 !important;
}
.faq .accordion-button {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  padding: 24px 8px;
  letter-spacing: -0.01em;
  background: transparent;
  border-radius: 0 !important;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: transparent;
  box-shadow: none;
}
.faq .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--brand);
  width: auto;
  height: auto;
  transition: none;
}
.faq .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
  color: var(--brand);
}
.faq .accordion-button .question-icon { display: none; }
.faq .accordion-collapse { background: transparent; }
.faq .accordion-body {
  padding: 0 8px 24px 8px;
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.8;
  background: transparent;
}
.faq .accordion-button:focus { box-shadow: none; }

/* ---- Final CTA ---- */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--brand-deeper), var(--brand)) !important;
}
.final-cta h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.final-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 17px;
  max-width: 520px;
}
.final-cta .btn-final-cta {
  background: var(--white);
  color: var(--brand-deeper);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  box-shadow: none;
}
.final-cta .btn-final-cta:hover {
  background: rgba(255,255,255,0.9);
  color: var(--brand-deeper);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.final-cta .btn-final-cta-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  border-radius: 10px;
  font-size: 15px;
  padding: 14px 32px;
}
.final-cta .btn-final-cta-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: none;
  box-shadow: none;
}
.final-cta .final-cta-note { color: rgba(255,255,255,0.25); font-size: 13px; }

@media (max-width: 768px) {
  .final-cta { padding: 80px 0; }
  .final-cta h2 { font-size: 30px; }
}

/* ---- Footer (dark teal) ---- */
.footer {
  background: var(--brand-deeper) !important;
  color: rgba(255,255,255,0.5);
  padding-bottom: 40px;
}
.footer .footer-top { padding-top: 80px; }
.footer .footer-about .logo span {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
}
.footer .footer-about p { color: rgba(255,255,255,0.45); }
.footer .social-links a {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.footer .social-links a:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.footer h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer .footer-links ul a { color: rgba(255,255,255,0.4); }
.footer .footer-links ul a:hover { color: var(--white); }
.footer .footer-contact p { color: rgba(255,255,255,0.4); }
.footer .footer-contact strong { color: rgba(255,255,255,0.6); }
.footer .footer-newsletter p { color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer .footer-btn-enquire {
  background: var(--brand);
  color: var(--white);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 28px;
  letter-spacing: 0;
  text-transform: none;
}
.footer .footer-btn-enquire:hover {
  background: var(--brand-dark);
  color: var(--white);
  transform: none;
  box-shadow: none;
}
.footer .copyright {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
}
.footer .copyright p { color: rgba(255,255,255,0.2); font-size: 13px; }

/* ---- Page Titles (inner pages) ---- */
.page-title {
  background: linear-gradient(135deg, var(--brand-deeper), var(--brand)) !important;
}
.page-title .heading { padding: 100px 0 60px; border-top: none; }
.page-title .heading h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}
.page-title .heading p { font-size: 16px; opacity: 0.6; color: var(--white); }
.page-title nav { background: rgba(0,0,0,0.1); padding: 16px 0; }

/* ---- Scroll Top ---- */
.scroll-top {
  background-color: var(--brand);
  border-radius: 50% !important;
  width: 52px !important;
  height: 52px !important;
}
.scroll-top:hover { background-color: var(--brand-dark); }

/* ---- WhatsApp ---- */
.whatsapp-float {
  border-radius: 50% !important;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  justify-content: center !important;
  align-items: center !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.15);
  bottom: 86px !important;
  right: 24px !important;
}

/* Scroll top - move to bottom */
.scroll-top.active {
  bottom: 24px !important;
  right: 24px !important;
}

/* ---- Chatbot ---- */
#bridge-chat-bubble { 
  background: var(--brand-deeper); 
  width: 52px !important;
  height: 52px !important;
  bottom: 148px !important;
  left: auto !important;
  right: 24px !important;
}
.bridge-header { background: var(--brand-deeper); }
#bridge-chat-panel { 
  border-radius: 20px; 
  left: auto !important;
  right: 88px !important;
  bottom: 24px !important;
}

/* Chat toast (move to right) */
.bridge-toast {
  position: fixed;
  bottom: 148px !important;
  left: auto !important;
  right: 88px !important;
  z-index: 9999;
  background: var(--white);
  color: var(--heading);
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  max-width: 220px;
  line-height: 1.5;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 48px !important;
    height: 48px !important;
    bottom: 76px !important;
    right: 16px !important;
  }
  .scroll-top {
    width: 48px !important;
    height: 48px !important;
  }
  .scroll-top.active {
    bottom: 20px !important;
    right: 16px !important;
  }
  #bridge-chat-bubble {
    width: 48px !important;
    height: 48px !important;
    bottom: 132px !important;
    left: auto !important;
    right: 16px !important;
  }
  #bridge-chat-panel {
    width: calc(100vw - 32px) !important;
    height: 70vh !important;
    bottom: 16px !important;
    left: 16px !important;
    right: auto !important;
    border-radius: 16px !important;
  }
  .bridge-toast {
    bottom: 132px !important;
    right: 80px !important;
    left: auto !important;
  }
}

.bridge-toast.bridge-toast-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.bridge-toast-close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.bridge-back-btn { color: var(--brand); border-color: var(--brand); }
.bridge-back-btn:hover { background: var(--brand-light); }

/* ---- Bootcamp Detail Pages ---- */
.bootcamp-details .bootcamp-sidebar .pricing-card {
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.bootcamp-details .bootcamp-sidebar .pricing-card .price .currency,
.bootcamp-details .bootcamp-sidebar .pricing-card .price .amount {
  color: var(--brand);
}
.bootcamp-details .bootcamp-sidebar .pricing-card .btn-enroll {
  background: var(--brand);
  color: var(--white);
  border-radius: 10px;
}
.bootcamp-details .bootcamp-sidebar .pricing-card .btn-enroll:hover { background: var(--brand-dark); }
.bootcamp-details .bootcamp-sidebar .pricing-card .btn-preview {
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--heading);
  border-radius: 10px;
}
.bootcamp-details .bootcamp-sidebar .pricing-card .btn-preview:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.bootcamp-details .bootcamp-sidebar .bootcamp-info-card { border-radius: 20px; }
.bootcamp-details .bootcamp-sidebar .bootcamp-tags { border-radius: 20px; }
.bootcamp-details .bootcamp-sidebar .bootcamp-tags .tags-list .tag {
  background: var(--brand-light);
  color: var(--brand-dark);
  border-radius: 8px;
}

/* ---- Testimonials ---- */
.testimonials .testimonial-item {
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}
.testimonials .swiper-pagination .swiper-pagination-bullet { border-color: var(--brand); }
.testimonials .swiper-pagination .swiper-pagination-bullet-active { background-color: var(--brand); }

/* ---- Trainers ---- */
.trainers-index .member {
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

/* ---- Tabs ---- */
.tabs .nav-link.active { color: var(--brand); border-color: var(--brand); }
.tabs .nav-link:hover { color: var(--brand); }
@media (max-width: 992px) {
  .tabs .nav-link.active { background: var(--brand); color: var(--white); }
}

/* ---- Guarantee Strip ---- */
.guarantee-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.guarantee-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.guarantee-strip i {
  color: var(--brand);
  font-size: 15px;
}

/* ---- Hero Doubt Session CTA ---- */
.hero-secondary-cta {
  text-align: center;
}
.hero-secondary-cta .btn-doubt-session {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  border-radius: 10px;
  transition: 0.2s ease;
  text-decoration: none;
}
.hero-secondary-cta .btn-doubt-session:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
}
.hero-secondary-cta .btn-doubt-session i {
  font-size: 16px;
}
