/* ==========================================================================
   NEXTGEN KNOWLEDGE HUB - OFFICIAL STYLESHEET (CANVA DESIGN SYSTEM)
   Font: Canva Sans / Plus Jakarta Sans
   Colors: Primary Purple (#4b3bcb), Accent Cyan (#12b8e8), Deep Navy (#17172b, #2d2b49)
   ========================================================================== */

@font-face {
  font-family: 'Canva Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/canva-sans.woff2') format('woff2');
  unicode-range: U+0020-007E, U+00A0, U+00A2-00A9, U+00AC-00AE, U+00B0, U+00B4-00B7, U+00D7, U+00F7, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2190-2199;
}

@font-face {
  font-family: 'Canva Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/canva-sans-ext.woff2') format('woff2');
  unicode-range: U+00A1, U+00AA-00AB, U+00AF, U+00B8, U+00BA-00BB, U+00BF, U+00C0-00D6, U+00D8-00F6, U+00F8-0148, U+014A-017E;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');

:root {
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --brand-purple: #553ced;
  --brand-purple-hover: #452ee6;
  --brand-purple-dark: #120d3b;
  --brand-purple-light: #f4f2fe;
  --brand-purple-subtle: #ede9fe;

  --brand-cyan: #27cbdf;
  --brand-cyan-hover: #1cb7cb;
  --brand-cyan-light: #eafafd;

  --text-dark: #000001;
  --text-body: #1e1b38;
  --text-muted: #595775;
  --text-light: #737190;

  --border-light: #eaecf0;
  --border-pill: #cbd5e1;
  --bg-card: #ffffff;
  --bg-badge: #eafafd;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --container-max: 1380px;
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--white);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  color: var(--brand-purple);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 40px);
  line-height: 1.12;
}

h3 {
  font-size: 20px;
  color: var(--brand-purple);
  font-weight: 700;
}

p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 760px;
  color: var(--text-muted);
}

.eyebrow,
.section-label,
.hero-tagline {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: 0.5rem;
  display: block;
}

.headline {
  font-family: var(--font-main);
  color: var(--brand-purple);
  font-weight: 700;
}

.subheadline,
.subheading {
  font-family: var(--font-main);
  color: var(--brand-cyan);
  font-weight: 600;
}

.accent-text,
.text-cyan {
  color: var(--brand-cyan) !important;
}

.text-purple {
  color: var(--brand-purple) !important;
}

.body-copy {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text-dark);
}

.soft,
.bg-pale {
  background-color: #f5f4ff !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f3f7;
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-purple);
}

.btn-contact-header {
  background-color: var(--brand-purple);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-contact-header:hover {
  background-color: var(--brand-purple-hover);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
}

/* Mobile Menu Side Drawer & Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu {
  display: none;
}

body.menu-open {
  overflow: hidden !important;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.mobile-menu-close {
  background: var(--brand-purple-light);
  border: 1px solid rgba(75, 59, 203, 0.12);
  color: var(--brand-purple);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu-close svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
  background-color: var(--brand-purple);
  color: #ffffff;
  transform: rotate(90deg);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.mobile-nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background-color: var(--brand-purple-light);
  color: var(--brand-purple);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 1.75rem 0 1.5rem;
  background-color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-tagline {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

.hero-title .text-purple {
  color: var(--brand-purple);
  display: block;
}

.hero-title .text-cyan {
  color: var(--brand-cyan);
  display: block;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 530px;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-purple {
  background-color: var(--brand-purple);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.65rem;
  border-radius: 8px;
  border: 1.5px solid var(--brand-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(75, 59, 203, 0.2);
  transition: all 0.2s ease;
}

.btn-primary-purple:hover {
  background-color: var(--brand-purple-hover);
  border-color: var(--brand-purple-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 59, 203, 0.3);
}

.btn-outline-purple {
  background-color: #ffffff;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.65rem;
  border-radius: 8px;
  border: 1.5px solid var(--brand-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-outline-purple:hover {
  background-color: var(--brand-purple-light);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.15);
  background-color: #f1f5f9;
}

.hero-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   WHAT WE DO SECTION
   ========================================================================== */
.what-we-do-section {
  padding: 1.75rem 0 2rem;
  background-color: #ffffff;
}

.what-we-do-header {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.section-label {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.what-we-do-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--brand-purple);
  line-height: 1.22;
}

.what-we-do-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-body);
  padding-top: 1.25rem;
}

/* Cards Grid */
.cards,
.cards.three,
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 13px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 235px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -8px rgba(85, 60, 237, 0.12);
  border-color: #d8d4fc;
}

.icon,
.card-number-badge {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background-color: #eefbff;
  color: var(--brand-purple);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1;
  align-self: flex-start;
}

.card-tag-badge {
  display: inline-block;
  color: var(--brand-cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.card h3,
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-purple);
  margin-bottom: 8px;
}

.card p,
.card-description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.text-link,
.card-arrow-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.text-link:hover,
.card-arrow-link:hover {
  gap: 0.6rem;
}

.section-see-more-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.section-see-more-link:hover {
  color: var(--brand-purple-hover);
  gap: 0.6rem;
}

/* Generic Canva Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 18px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--brand-purple);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn.primary {
  background-color: var(--brand-purple);
  color: #ffffff !important;
}

.btn.primary:hover {
  background-color: var(--brand-purple-hover);
  border-color: var(--brand-purple-hover);
  transform: translateY(-1px);
}

.btn.ghost,
.btn.outline {
  background-color: #ffffff;
  color: var(--brand-purple) !important;
  border-color: var(--brand-purple);
}

.btn.ghost:hover,
.btn.outline:hover {
  background-color: var(--brand-purple-light);
  transform: translateY(-1px);
}

.btn.cyan {
  background-color: var(--brand-cyan);
  border-color: var(--brand-cyan);
  color: #ffffff !important;
}

.btn.cyan:hover {
  background-color: var(--brand-cyan-hover);
  border-color: var(--brand-cyan-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   PAGE HERO BACKGROUND & INNER PAGE STYLING
   ========================================================================== */
.page-hero-bg,
.page-hero-clean {
  position: relative;
  background-color: #ffffff;
  padding: 3.5rem 0 3rem;
  background-image: 
    linear-gradient(to bottom, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.90) 45%, rgba(255, 255, 255, 0.98) 85%, #ffffff 100%),
    url('../assets/page-hero-bg.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  border-bottom: 1px solid #f0edf9;
  background-attachment: scroll;
}

.page-header-block {
  margin-bottom: 2rem;
}

.page-title {
  font-size: 2.85rem;
  font-weight: 700;
  color: var(--brand-purple);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 780px;
}

.cards-grid-row {
  margin-bottom: 2rem;
}

.btn-card-fill {
  background-color: var(--brand-purple);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--brand-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  transition: all 0.2s ease;
}

.btn-card-fill:hover {
  background-color: var(--brand-purple-hover);
  border-color: var(--brand-purple-hover);
  transform: translateY(-1px);
}

.btn-card-outline {
  background-color: #ffffff;
  color: var(--text-dark) !important;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--brand-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  transition: all 0.2s ease;
}

.btn-card-outline:hover {
  background-color: var(--brand-purple-light);
  transform: translateY(-1px);
}

/* Contact Page Layout */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

/* Light Aesthetic Contact Info Card */
.contact-info-card-light {
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  border: 1.5px solid #e0e7ff;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 12px 35px -10px rgba(75, 59, 203, 0.08), 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.contact-info-card-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-purple) 0%, var(--brand-cyan) 100%);
}

.contact-info-badge {
  display: inline-block;
  background-color: var(--brand-purple-light);
  color: var(--brand-purple);
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.15rem;
}

.contact-info-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-purple);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.contact-info-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 1.75rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-icon-pill {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--brand-purple-light);
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-pill-cyan {
  background-color: var(--brand-cyan-light);
  color: #0284c7;
}

.contact-info-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-val {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-val:hover {
  color: var(--brand-purple);
}

/* Contact Form */
.contact-form-container {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.form-group-custom {
  margin-bottom: 1.5rem;
}

.form-label-custom {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input-custom,
.form-select-custom,
.form-textarea-custom {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-pill);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease;
  font-family: inherit;
  color: var(--text-dark);
}

.form-input-custom:focus,
.form-select-custom:focus,
.form-textarea-custom:focus {
  border-color: var(--brand-purple);
}

/* ==========================================================================
   CUSTOM DESIGNED DROPDOWN (DROP-CSS)
   ========================================================================== */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.custom-dropdown-trigger {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  background-color: #ffffff;
  border: 1.5px solid var(--border-pill);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.custom-dropdown-trigger:hover {
  border-color: #c7d2fe;
}

.custom-dropdown.open .custom-dropdown-trigger,
.custom-dropdown-trigger:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(75, 59, 203, 0.12);
}

.custom-dropdown-chevron {
  color: var(--brand-purple);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.custom-dropdown.open .custom-dropdown-chevron {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1.5px solid #e0e7ff;
  border-radius: 12px;
  box-shadow: 0 14px 35px -8px rgba(15, 23, 42, 0.12), 0 4px 10px rgba(0, 0, 0, 0.04);
  list-style: none;
  padding: 0.4rem;
  margin: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  max-height: 260px;
  overflow-y: auto;
}

.custom-dropdown.open .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-dropdown-option {
  padding: 0.7rem 0.9rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: #334155;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.15s ease;
}

.custom-dropdown-option:hover {
  background-color: var(--brand-purple-light);
  color: var(--brand-purple);
  font-weight: 600;
}

.custom-dropdown-option.selected {
  background-color: #f5f3ff;
  color: var(--brand-purple);
  font-weight: 700;
}

.custom-dropdown-option .check-icon {
  opacity: 0;
  color: var(--brand-purple);
  transition: opacity 0.15s ease;
}

.custom-dropdown-option.selected .check-icon {
  opacity: 1;
}

.who-we-serve-section {
  padding: 2.5rem 0 3.5rem;
  background-color: #ffffff;
}

.who-we-serve-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.serve-pill {
  background-color: #ffffff;
  border: 1.5px solid var(--border-pill);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.serve-pill:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
  transform: translateY(-1px);
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner-section {
  padding: 1rem 0 5rem;
}

.cta-banner-box {
  background-color: var(--brand-purple);
  border-radius: var(--radius-xl);
  padding: 2.75rem 3rem;
  color: #ffffff;
}

.cta-banner-tag {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.cta-banner-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 1.75rem;
  max-width: 780px;
}

.btn-banner-action {
  background: transparent;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.btn-banner-action:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ==========================================================================
   FOOTER (CLEAN & COMPACT - NO COPYRIGHT BAR)
   ========================================================================== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 2.25rem 0 2rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 0;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand-col img {
  height: 38px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer-brand-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-purple);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.footer-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav-link {
  font-size: 0.875rem;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--brand-purple);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--brand-purple-light);
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-icon-btn:hover {
  background-color: var(--brand-purple);
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-bottom-credit {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.8125rem;
  color: #64748b;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.footer-bottom-credit a {
  color: var(--brand-purple);
  font-weight: 700;
  text-decoration: none;
  margin-left: 0.25rem;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.footer-bottom-credit a:hover {
  text-decoration: underline;
  color: var(--brand-purple-hover);
}

/* ==========================================================================
   PROGRAMS, WORKSHOPS & LMS COMPONENTS
   ========================================================================== */

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.badge-purple {
  background-color: var(--brand-purple-light);
  color: var(--brand-purple);
}

.badge-cyan {
  background-color: var(--brand-cyan-light);
  color: #0284c7;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 2rem;
  max-width: 800px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-purple);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
}

.page-header {
  padding: 3.5rem 0 2.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #f0edf9;
  background-image: 
    linear-gradient(to bottom, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.90) 45%, rgba(255, 255, 255, 0.98) 85%, #ffffff 100%),
    url('../assets/page-hero-bg.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.page-header-content {
  max-width: 850px;
}

.page-header-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--brand-purple);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-header-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body);
}

.bg-slate-50 {
  background-color: #f8fafc;
}

.container-narrow {
  max-width: 840px !important;
}

.text-center {
  text-align: center;
}

/* Generic Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Generic Cards */
.card {
  background-color: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.card:hover {
  border-color: var(--brand-purple-subtle);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(75, 59, 203, 0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--brand-purple-light);
  color: var(--brand-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon-cyan {
  background-color: var(--brand-cyan-light);
  color: #0284c7;
}

.card-desc {
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--text-body);
}

/* Generic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--brand-purple);
  color: #ffffff !important;
  border-color: var(--brand-purple);
  box-shadow: 0 4px 14px rgba(75, 59, 203, 0.2);
}

.btn-primary:hover {
  background-color: var(--brand-purple-hover);
  border-color: var(--brand-purple-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: #ffffff;
  color: var(--brand-purple) !important;
  border-color: var(--brand-purple);
}

.btn-outline:hover {
  background-color: var(--brand-purple-light);
}

.btn-outline-cyan {
  background-color: #ffffff;
  color: #0284c7 !important;
  border-color: #0284c7;
}

.btn-outline-cyan:hover {
  background-color: var(--brand-cyan-light);
}

.btn-sm {
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 6px;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: 10px;
}

.btn-block {
  width: 100%;
}

/* Generic Form Styles */
.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-pill);
  border-radius: 8px;
  outline: none;
  font-family: inherit;
  color: var(--text-dark);
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-purple);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

/* Filter Tabs */
.tabs-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--brand-purple);
  background-color: var(--brand-purple-light);
}

.tab-btn.active {
  background-color: var(--brand-purple);
  color: #ffffff;
}

/* LMS Courses Grid */
.lms-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.lms-course-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.lms-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(75, 59, 203, 0.12);
  border-color: var(--brand-purple-subtle);
}

.lms-course-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #f1f5f9;
  overflow: hidden;
}

.lms-course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lms-thumb-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.badge-price {
  background-color: var(--brand-purple);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.badge-zoom,
.badge-days {
  background-color: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.lms-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ef4444;
  z-index: 2;
}

.lms-card-content {
  padding: 1.25rem;
  flex: 1;
}

.lms-course-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.4rem;
}

.lms-course-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-purple);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.lms-course-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
}

.rating-score {
  font-weight: 700;
  color: var(--text-dark);
}

.rating-stars {
  color: #f59e0b;
}

.lms-card-bottom {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background-color: #fafbfc;
}

.lms-features-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.lms-enroll-btn {
  background-color: var(--brand-purple);
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lms-enroll-btn:hover {
  background-color: var(--brand-purple-hover);
}

/* Course Detail Page */
.course-page-wrapper {
  padding: 2rem 0 4rem;
}

.breadcrumb-nav {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb-nav a {
  color: var(--brand-purple);
  text-decoration: none;
}

.course-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.course-title-main {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-purple);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.course-subcat-main {
  font-size: 1rem;
  color: var(--text-muted);
}

.lms-modal-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: flex-start;
}

.lms-modal-main-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lms-modal-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.lms-modal-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
}

.lms-modal-tab-btn.active {
  color: var(--brand-purple);
  border-bottom-color: var(--brand-purple);
}

.lms-modal-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-purple);
  margin: 1.75rem 0 0.75rem;
}

.lms-modal-section-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
}

.lms-learn-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.lms-learn-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.5;
}

.lms-learn-bullet {
  color: var(--brand-cyan);
  font-weight: 800;
}

.lms-content-accordion {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 0.75rem;
}

.lms-accordion-header {
  background-color: #f8fafc;
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--text-dark);
}

.lms-accordion-body {
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  border-top: 1px solid var(--border-light);
  background-color: #ffffff;
}

.lms-sidebar-box {
  background-color: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.lms-sidebar-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.lms-sidebar-price span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-purple);
}

.lms-sidebar-price original {
  font-size: 1.1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.btn-add-cart {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--brand-purple);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
}

.btn-add-cart:hover {
  background-color: var(--brand-purple-hover);
}

.lms-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.lms-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

/* Footer Grid Alternates */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-purple);
  margin-bottom: 0.65rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-body);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--brand-purple);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MOBILE & RESPONSIVE PERFECTION
   ========================================================================== */
@media (max-width: 992px) {
  .container {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-img {
    max-height: 320px;
  }

  .what-we-do-header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .what-we-do-desc {
    padding-top: 0;
  }

  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .site-header {
    background-color: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
  }

  .header-inner {
    height: 60px;
  }

  .brand-logo img {
    height: 36px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

  .mobile-toggle:active {
    background-color: var(--brand-purple-light);
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 270px;
    max-width: 80vw;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    z-index: 9999;
    flex-direction: column;
    padding: 1.15rem 1.15rem 1.75rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    border-left: 1px solid var(--border-light);
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .btn-contact-mobile {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--brand-purple);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    margin-top: auto;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 2.25rem 0 2.25rem;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.90) 65%, #ffffff 100%), url('../assets/hero-building.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .hero-visual {
    display: none;
  }

  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8.5vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 0.85rem;
  }

  .hero-desc {
    font-size: 0.925rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .btn-primary-purple,
  .btn-outline-purple {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.925rem;
  }

  /* Section Spacing on Mobile */
  .what-we-do-section {
    padding: 1.25rem 0 1.5rem;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }

  .what-we-do-title {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .what-we-do-desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.35rem 1.25rem;
    min-height: auto;
    border-radius: 12px;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  /* Who We Serve on Mobile */
  .who-we-serve-section {
    padding: 1.25rem 0 1.5rem;
  }

  .who-we-serve-pills {
    gap: 0.5rem;
  }

  .serve-pill {
    font-size: 0.825rem;
    padding: 0.45rem 1rem;
  }

  /* CTA Banner on Mobile */
  .cta-banner-section {
    padding: 0.75rem 0 2rem;
  }

  .cta-banner-box {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }

  .cta-banner-tag {
    font-size: 0.75rem;
  }

  .cta-banner-title {
    font-size: 1.125rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .btn-banner-action {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
  }

  /* Page Hero / Inner Pages on Mobile */
  .page-hero-bg,
  .page-hero-clean {
    padding: 2rem 0 1.5rem;
  }

  .page-header-block {
    margin-bottom: 1.5rem;
  }

  .page-title {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .page-subtitle {
    font-size: 0.925rem;
    line-height: 1.55;
  }

  .cards-grid-row {
    margin-bottom: 1.25rem;
  }

  .btn-card-fill,
  .btn-card-outline {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1.25rem;
  }

  /* Contact Form on Mobile */
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }

  .contact-form-container {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    margin-top: 0;
  }

  .form-group-custom {
    margin-bottom: 1.15rem;
  }

  .form-input-custom,
  .form-select-custom,
  .form-textarea-custom {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 0.7rem 0.85rem;
  }

  /* Institutional & LMS Mobile Adjustments */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .page-header-title {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
  }

  .section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .course-page-header {
    flex-direction: column;
    gap: 1rem;
  }

  .course-title-main {
    font-size: 1.65rem;
  }

  .lms-modal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Footer on Mobile */
  .site-footer {
    padding: 1.75rem 0 1.25rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-col-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .social-icon-btn {
    width: 36px;
    height: 36px;
  }

  .footer-bottom-credit {
    justify-content: center;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }

  .what-we-do-title {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   DYNAMIC TRAINING PROGRAMMES STYLES
   ========================================================================== */
.training-controls-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.training-filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  color: var(--slate-700);
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-pill-btn:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
  background: #f8fafc;
}

.filter-pill-btn.active {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(75, 59, 203, 0.25);
}

.filter-pill-btn .pill-count {
  font-size: 0.72rem;
  padding: 0.1rem 0.45rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

.filter-pill-btn.active .pill-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ==========================================================================
   TRAINING PROGRAMME TABLE / LISTING DESIGN (SLEEK & COMPACT)
   ========================================================================== */
.trg-listing-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px -6px rgba(75, 59, 203, 0.08), 0 2px 6px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(75, 59, 203, 0.12);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.trg-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.trg-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
}

.trg-data-table thead {
  background: linear-gradient(135deg, #1b1238 0%, #301f5c 100%);
  color: #ffffff;
  border-bottom: 2px solid var(--brand-purple);
}

.trg-data-table th {
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f1f0fd;
  border: none;
  white-space: nowrap;
}

.trg-data-table th.text-center,
.trg-data-table td.text-center {
  text-align: center;
}

.trg-data-table th.text-right {
  text-align: right;
}

.trg-data-table tbody tr {
  border-bottom: 1px solid #edf2f7;
  transition: background-color 0.15s ease;
}

.trg-data-table tbody tr:nth-child(even) {
  background-color: #fafaff;
}

.trg-data-table tbody tr:last-child {
  border-bottom: none;
}

.trg-data-table tbody tr:hover {
  background-color: #f1edff !important;
}

.trg-data-table td {
  padding: 0.62rem 1rem;
  vertical-align: middle;
  font-size: 0.88rem;
  color: #334155;
}

.trg-col-sno {
  font-weight: 700;
  color: #64748b;
  text-align: center;
  font-size: 0.84rem;
  width: 55px;
}

.trg-title-text {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.88rem;
  line-height: 1.35;
}

.trg-badge-upcoming {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  border-radius: 9999px;
  padding: 0.12rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.trg-badge-upcoming .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

.trg-col-date {
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  font-size: 0.84rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.trg-action-btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: var(--brand-purple);
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.42rem 0.95rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 5px rgba(75, 59, 203, 0.2);
  white-space: nowrap;
}

.trg-action-btn-navy:hover {
  background-color: var(--brand-purple-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(75, 59, 203, 0.3);
}

.trg-btn-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulseGreen 1.8s infinite;
  flex-shrink: 0;
}

.trg-action-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ffffff;
  color: #475569 !important;
  border: 1px solid #cbd5e1;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.trg-action-btn-outline:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.trg-status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

/* Dynamic Training Card */
.trg-prog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.trg-prog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -8px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.trg-prog-card.is-open {
  border-color: #cbd5e1;
}

.trg-prog-card.is-open:hover {
  border-color: #a7f3d0;
  box-shadow: 0 14px 32px -8px rgba(16, 185, 129, 0.18);
}

.trg-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
  gap: 0.5rem;
}

.trg-code-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-purple);
  background: #f1f0fd;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.trg-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  text-transform: capitalize;
}

.trg-status-badge.status-open {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.trg-status-badge.status-open .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.trg-status-badge.status-closed {
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.trg-prog-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.45;
  margin-bottom: 1.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trg-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  background: #f8fafc;
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  font-size: 0.825rem;
  color: var(--slate-700);
}

.trg-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trg-meta-item svg {
  flex-shrink: 0;
  color: var(--brand-purple);
}

.trg-meta-item strong {
  color: var(--slate-900);
  font-weight: 600;
}

.trg-card-footer {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.btn-trg-register {
  flex: 1;
  background: var(--brand-purple);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  border: 1.5px solid var(--brand-purple);
}

.btn-trg-register:hover {
  background: var(--brand-purple-hover);
  border-color: var(--brand-purple-hover);
  transform: translateY(-1px);
}

.btn-trg-enquire {
  flex: 1;
  background: #ffffff;
  color: var(--slate-700);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1.5px solid #cbd5e1;
  transition: all 0.2s ease;
}

.btn-trg-enquire:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
  background: #f8fafc;
}

.training-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1.5rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px dashed #cbd5e1;
}

.training-empty-state h4 {
  color: var(--slate-800);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.training-empty-state p {
  color: var(--slate-500);
  font-size: 0.9rem;
}

/* ==========================================================================
   ERROR PAGES (404, 500, 403)
   ========================================================================== */
.error-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 1rem;
  background: radial-gradient(circle at 50% 20%, rgba(238, 251, 255, 0.7) 0%, rgba(244, 243, 255, 0.4) 60%, rgba(255, 255, 255, 1) 100%);
}

.error-hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(75, 59, 203, 0.08) 0%, rgba(18, 184, 232, 0.04) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.error-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.error-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f1f0fd;
  color: var(--brand-purple);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(75, 59, 203, 0.15);
}

.error-code-giant {
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--brand-purple) 0%, #7c3aed 50%, var(--brand-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  user-select: none;
}

.error-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--brand-purple-dark);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.error-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.error-actions-group {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.error-nav-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.error-nav-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  text-align: center;
}

.error-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.error-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-md);
  background: var(--brand-purple-light);
  color: var(--brand-purple);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s ease;
  border: 1px solid rgba(75, 59, 203, 0.08);
  text-align: center;
}

.error-nav-item svg {
  flex-shrink: 0;
}

.error-nav-item:hover {
  background: var(--brand-purple);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(75, 59, 203, 0.2);
}

.error-nav-item:hover svg {
  color: #ffffff;
}

@media (max-width: 640px) {
  .error-code-giant {
    font-size: 5.5rem;
  }

  .error-title {
    font-size: 1.65rem;
  }

  .error-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   LEGAL & POLICY PAGES STYLES
   ========================================================================== */
.policy-hero {
  padding: 3.5rem 0 2.5rem;
  background: radial-gradient(circle at 50% 10%, rgba(238, 251, 255, 0.8) 0%, rgba(244, 243, 255, 0.5) 60%, #ffffff 100%);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.policy-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f1f0fd;
  color: var(--brand-purple);
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  border: 1px solid rgba(75, 59, 203, 0.12);
}

.policy-hero-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--brand-purple-dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.policy-hero-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.policy-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.policy-content-section {
  padding: 3.5rem 0 4.5rem;
  background: #ffffff;
}

.policy-layout-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.policy-sidebar {
  position: sticky;
  top: 100px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
}

.policy-sidebar-title {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--slate-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-sidebar-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 14px;
  background: var(--brand-purple);
  border-radius: 2px;
}

.policy-sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.policy-sidebar-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: transparent;
}

.policy-sidebar-link:hover {
  background: #ffffff;
  color: var(--brand-purple);
  padding-left: 0.95rem;
}

.policy-sidebar-link.active {
  background: #ffffff;
  color: var(--brand-purple-dark);
  font-weight: 700;
  border-left: 3px solid var(--brand-purple);
  padding-left: 0.95rem;
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.09);
  transform: translateX(2px);
}

.policy-sidebar-link.active::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-purple);
  box-shadow: 0 0 6px rgba(79, 70, 229, 0.5);
  animation: pulsePoint 2s infinite;
}

@keyframes pulsePoint {
  0% { transform: translateY(-50%) scale(1); opacity: 0.9; }
  50% { transform: translateY(-50%) scale(1.35); opacity: 0.4; }
  100% { transform: translateY(-50%) scale(1); opacity: 0.9; }
}

.policy-article {
  max-width: 820px;
  color: var(--slate-800);
  font-size: 0.975rem;
  line-height: 1.75;
}

.policy-article h2,
.policy-article h3,
.developer-shield-box,
.policy-business-info {
  scroll-margin-top: 110px;
}

.policy-article h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-purple-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid #f1f5f9;
}

.policy-article h2:first-of-type {
  margin-top: 0;
}

.policy-article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
}

.policy-article p {
  margin-bottom: 1rem;
}

.policy-article ul, .policy-article ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.policy-article li {
  margin-bottom: 0.45rem;
}

.policy-callout-box {
  background: #f8fafc;
  border-left: 4px solid var(--brand-purple);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.75rem 0;
}

.developer-shield-box {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2.25rem 0;
}

.developer-shield-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.developer-shield-box p {
  font-size: 0.9rem;
  color: #14532d;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.developer-shield-box p:last-child {
  margin-bottom: 0;
}

.policy-business-info {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.policy-business-info h3 {
  margin-top: 0;
  color: var(--brand-purple);
}

@media (max-width: 900px) {
  .policy-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .policy-sidebar {
    position: static;
    display: none;
  }

  .policy-hero-title {
    font-size: 1.85rem;
  }
}

/* ==========================================================================
   COOKIE CONSENT BANNER & SETTINGS MODAL
   ========================================================================== */
.cookie-banner-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99999;
  max-width: 440px;
  width: calc(100% - 3rem);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 1.5rem 1.65rem;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.8);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
}

.cookie-banner-wrap.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.cookie-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-purple-light);
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-banner-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--slate-900);
  margin: 0;
}

.cookie-banner-desc {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

.cookie-banner-desc a {
  color: var(--brand-purple);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  flex: 1;
  min-width: 120px;
  background: var(--brand-purple);
  color: #ffffff;
  border: 1.5px solid var(--brand-purple);
  border-radius: 9px;
  padding: 0.55rem 0.85rem;
  font-size: 0.825rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-cookie-accept:hover {
  background: var(--brand-purple-hover);
  border-color: var(--brand-purple-hover);
  transform: translateY(-1px);
}

.btn-cookie-reject {
  flex: 1;
  min-width: 120px;
  background: #ffffff;
  color: var(--slate-700);
  border: 1.5px solid var(--border-pill);
  border-radius: 9px;
  padding: 0.55rem 0.85rem;
  font-size: 0.825rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-cookie-reject:hover {
  background: #f8fafc;
  border-color: var(--slate-400);
}

.btn-cookie-custom {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--brand-purple);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.btn-cookie-custom:hover {
  color: var(--brand-purple-hover);
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.cookie-modal-box {
  background: #ffffff;
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.cookie-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
}

.cookie-category-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.85rem;
}

.cookie-category-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.cookie-cat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-900);
}

.cookie-cat-desc {
  font-size: 0.8rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

/* Custom Switch Toggle */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

input:checked + .cookie-slider {
  background-color: var(--brand-purple);
}

input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #94a3b8;
}

@media (max-width: 480px) {
  .cookie-banner-wrap {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (DOWN RIGHT CORNER)
   ========================================================================== */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row-reverse;
  font-family: var(--font-main, 'Plus Jakarta Sans', system-ui, sans-serif);
  pointer-events: none;
}

.floating-whatsapp-btn {
  pointer-events: auto;
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.floating-whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.8;
  animation: wa-pulse-ring 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

@keyframes wa-pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff !important;
}

.floating-whatsapp-btn:active {
  transform: scale(0.95);
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  transition: transform 0.3s ease;
}

.floating-whatsapp-btn:hover svg {
  transform: scale(1.06) rotate(6deg);
}

/* Tooltip Badge */
.floating-whatsapp-tooltip {
  pointer-events: auto;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-decoration: none;
}

.floating-whatsapp-tooltip .wa-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #25D366;
}

.floating-whatsapp-wrap:hover .floating-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .floating-whatsapp-wrap {
    bottom: 20px;
    right: 20px;
  }
  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
  .floating-whatsapp-tooltip {
    display: none;
  }
}