/*
Theme Name: TedQu
Template: oceanwp
Version: 1.0.0
Description: TedQu – 21st Century Learning Ecosystem. Child theme of OceanWP.
Author: WizdomEdge
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary:    #1A3C6E;
  --primary-dk: #0D2B52;
  --accent:     #00AEEF;
  --accent-dk:  #0090C7;
  --green:      #27AE60;
  --orange:     #E67E22;
  --light:      #F4F8FC;
  --white:      #FFFFFF;
  --text:       #2C3E50;
  --muted:      #6B7A8D;
  --border:     #DDE6F0;
  --shadow-sm:  0 2px 12px rgba(26,60,110,0.08);
  --shadow-md:  0 8px 32px rgba(26,60,110,0.12);
  --shadow-lg:  0 16px 56px rgba(26,60,110,0.18);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
  margin: 0 0 1rem;
}

p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }

/* ============================================================
   OCEANWP OVERRIDES
   ============================================================ */
#page { overflow-x: hidden; }
.page-header { display: none !important; }
.content-area { float: none; width: 100%; }
.sidebar { display: none; }
.oceanwp-row { max-width: 100% !important; }
#main { padding: 0 !important; }
.entry-content { padding: 0; }
.entry-header { display: none; }

/* Header */
#site-header {
  box-shadow: 0 2px 20px rgba(26,60,110,0.10) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff !important;
}
#site-logo a { font-weight: 900; font-size: 22px; color: var(--primary) !important; letter-spacing: -0.5px; }
.navigation-top { background: transparent !important; }
#site-navigation-wrap .dropdown-menu > li > a {
  font-weight: 600;
  font-size: 14px;
  color: var(--text) !important;
  letter-spacing: 0.2px;
  padding: 0 14px !important;
}
#site-navigation-wrap .dropdown-menu > li > a:hover { color: var(--accent) !important; }
#site-navigation-wrap .dropdown-menu > li.current-menu-item > a { color: var(--accent) !important; }

/* Footer */
#footer-widgets { background: var(--primary) !important; }
#footer-bottom { background: var(--primary-dk) !important; }
#footer-bottom .copyright { color: rgba(255,255,255,0.6) !important; font-size: 13px; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.tq-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.tq-container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.tq-section { padding: 100px 0; }
.tq-section-sm { padding: 72px 0; }
.tq-section-xs { padding: 48px 0; }

.tq-badge {
  display: inline-block;
  background: rgba(0,174,239,0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.tq-badge-white {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.tq-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

/* Buttons */
.tq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.tq-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,174,239,0.35);
}
.tq-btn-primary:hover {
  background: var(--accent-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,174,239,0.45);
}
.tq-btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.tq-btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.tq-btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.tq-btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.tq-btn-dark {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.tq-btn-dark:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.tq-btn-lg { padding: 17px 44px; font-size: 17px; }
.tq-btn-xl { padding: 20px 52px; font-size: 18px; }

/* Text helpers */
.tq-text-white { color: #fff !important; }
.tq-text-white-muted { color: rgba(255,255,255,0.72) !important; }
.tq-text-accent { color: var(--accent) !important; }
.tq-text-primary { color: var(--primary) !important; }
.tq-text-center { text-align: center; }
.tq-text-muted { color: var(--muted); }
.tq-fw-800 { font-weight: 800; }
.tq-fw-700 { font-weight: 700; }

/* BG helpers */
.tq-bg-primary { background: var(--primary); }
.tq-bg-primary-dk { background: var(--primary-dk); }
.tq-bg-accent { background: var(--accent); }
.tq-bg-light { background: var(--light); }
.tq-bg-white { background: #fff; }
.tq-bg-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #1557A0 50%, #0D3E7F 100%);
}
.tq-bg-gradient-2 {
  background: linear-gradient(135deg, #0D2B52 0%, var(--primary) 60%, #1557A0 100%);
}

/* Divider */
.tq-divider {
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
  margin: 20px auto 32px;
}
.tq-divider-left { margin: 20px 0 32px; }

/* Flex/Grid */
.tq-flex { display: flex; }
.tq-flex-center { display: flex; align-items: center; justify-content: center; }
.tq-gap-8 { gap: 8px; }
.tq-gap-16 { gap: 16px; }
.tq-gap-24 { gap: 24px; }
.tq-gap-32 { gap: 32px; }
.tq-wrap { flex-wrap: wrap; }

/* ============================================================
   CARDS
   ============================================================ */
.tq-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.tq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,174,239,0.2);
}
.tq-card-accent { border-top: 4px solid var(--accent); }
.tq-card-primary { border-top: 4px solid var(--primary); }
.tq-card-green { border-top: 4px solid var(--green); }
.tq-card-orange { border-top: 4px solid var(--orange); }

.tq-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.tq-card-icon-accent { background: rgba(0,174,239,0.1); }
.tq-card-icon-primary { background: rgba(26,60,110,0.08); }
.tq-card-icon-green { background: rgba(39,174,96,0.1); }

.tq-card h3 { font-size: 19px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.tq-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

/* Feature card grid */
.tq-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tq-feature-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tq-feature-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.tq-hero {
  padding: 130px 0 110px;
  position: relative;
  overflow: hidden;
}
.tq-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: rgba(0,174,239,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.tq-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 340px; height: 340px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.tq-hero-title {
  font-size: 58px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.tq-hero-title span { color: var(--accent); }
.tq-hero-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.80);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 400;
}
.tq-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Page hero (inner pages) */
.tq-page-hero { padding: 90px 0 80px; }
.tq-page-hero-title {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.tq-page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0;
}

/* ============================================================
   STAT COUNTERS
   ============================================================ */
.tq-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tq-stat {
  padding: 48px 32px;
  text-align: center;
  background: rgba(255,255,255,0.05);
}
.tq-stat-num {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.tq-stat-num span { color: var(--accent); }
.tq-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* White stat cards */
.tq-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tq-stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.tq-stat-card-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.tq-stat-card-num.accent { color: var(--accent); }
.tq-stat-card-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tq-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tq-testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.tq-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 28px;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.tq-testimonial p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.tq-testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.tq-testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.tq-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.tq-step { text-align: center; padding: 0 32px; position: relative; }
.tq-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px; right: -20px;
  width: 40px; height: 2px;
  background: var(--border);
}
.tq-step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.tq-step h4 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.tq-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.tq-compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tq-compare-table thead tr {
  background: var(--primary);
}
.tq-compare-table thead th {
  color: #fff;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.5px;
}
.tq-compare-table thead th:not(:first-child) { text-align: center; }
.tq-compare-table tbody tr:nth-child(even) { background: var(--light); }
.tq-compare-table tbody tr:nth-child(odd) { background: #fff; }
.tq-compare-table tbody td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.tq-compare-table tbody td:not(:first-child) { text-align: center; }
.tq-compare-check { color: var(--green); font-size: 18px; font-weight: 700; }
.tq-compare-x { color: #C0C0C0; font-size: 18px; }

/* ============================================================
   PRICING
   ============================================================ */
.tq-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.tq-pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.tq-pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tq-pricing-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.tq-pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.tq-pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 40px;
  white-space: nowrap;
}
.tq-pricing-tier {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.tq-pricing-card.featured .tq-pricing-tier { color: rgba(255,255,255,0.6); }
.tq-pricing-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}
.tq-pricing-card.featured .tq-pricing-price { color: #fff; }
.tq-pricing-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.tq-pricing-card.featured .tq-pricing-desc { color: rgba(255,255,255,0.6); }
.tq-pricing-features { list-style: none; padding: 0; margin: 0 0 36px; }
.tq-pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tq-pricing-card.featured .tq-pricing-features li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}
.tq-pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.tq-pricing-features li.no::before {
  content: '×';
  color: #C0C0C0;
}
.tq-pricing-features li.no { color: var(--muted); }
.tq-pricing-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}
.tq-pricing-cta-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--primary);
}
.tq-pricing-cta-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.tq-pricing-cta-solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,174,239,0.35);
}
.tq-pricing-cta-solid:hover {
  background: var(--accent-dk);
  color: #fff;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.tq-trust-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.tq-trust-items {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.tq-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.tq-trust-item span:first-child { font-size: 20px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.tq-cta-section { padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.tq-cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 380px; height: 380px;
  background: rgba(0,174,239,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.tq-cta-title { font-size: 42px; font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.tq-cta-sub { font-size: 18px; color: rgba(255,255,255,0.72); margin-bottom: 44px; max-width: 540px; margin-left: auto; margin-right: auto; }
.tq-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.tq-form { display: flex; flex-direction: column; gap: 16px; }
.tq-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tq-input,
.tq-select,
.tq-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
}
.tq-input:focus,
.tq-select:focus,
.tq-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.12);
}
.tq-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A8D' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.tq-textarea { resize: vertical; min-height: 130px; }
.tq-form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,174,239,0.3);
}
.tq-form-submit:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,174,239,0.4);
}

/* ============================================================
   MARKET CARDS
   ============================================================ */
.tq-market-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 6px solid var(--primary);
  transition: var(--transition);
}
.tq-market-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.tq-market-card:nth-child(2) { border-left-color: var(--accent); }
.tq-market-card:nth-child(3) { border-left-color: var(--green); }
.tq-market-card:nth-child(4) { border-left-color: var(--orange); }
.tq-market-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.tq-market-flag { font-size: 44px; }
.tq-market-header h3 { font-size: 24px; font-weight: 800; color: var(--primary); margin: 0; }
.tq-market-body { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.tq-market-focus { font-size: 14px; color: var(--text); }
.tq-market-focus strong { color: var(--primary); }

/* ============================================================
   ABOUT / MISSION
   ============================================================ */
.tq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tq-two-col-tight { gap: 48px; }
.tq-quote-block {
  background: var(--light);
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 36px 40px;
}
.tq-quote-block p { font-size: 20px; color: var(--primary); font-weight: 600; line-height: 1.6; font-style: italic; margin: 0; }

/* Value cards */
.tq-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.tq-section-header { text-align: center; margin-bottom: 64px; }
.tq-section-header.left { text-align: left; }
.tq-section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.tq-section-title-white { color: #fff; }
.tq-section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.tq-section-sub-white { color: rgba(255,255,255,0.72); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.tq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 28px;
}
.tq-breadcrumb a { color: rgba(255,255,255,0.6); }
.tq-breadcrumb a:hover { color: #fff; }
.tq-breadcrumb span { color: rgba(255,255,255,0.4); }
.tq-breadcrumb .current { color: rgba(255,255,255,0.85); }

/* ============================================================
   FOOTER
   ============================================================ */
.tq-footer { background: var(--primary-dk); padding: 52px 0 0; }
.tq-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tq-footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  display: block;
}
.tq-footer-logo span { color: var(--accent); }
.tq-footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 28px;
}
.tq-footer-social { display: flex; gap: 12px; }
.tq-footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
}
.tq-footer-social a:hover { background: var(--accent); transform: translateY(-2px); }
.tq-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.tq-footer-col ul { list-style: none; padding: 0; margin: 0; }
.tq-footer-col ul li { margin-bottom: 10px; }
.tq-footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
}
.tq-footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.tq-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.tq-footer-contact-item .icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.tq-footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.tq-footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.tq-footer-bottom-links { display: flex; gap: 24px; }
.tq-footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); }
.tq-footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.tq-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tq-problem-list { list-style: none; padding: 0; margin: 0; }
.tq-problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.tq-problem-list li:last-child { border-bottom: none; }
.tq-problem-icon {
  width: 40px; height: 40px;
  background: rgba(231,76,60,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.tq-solution-highlight {
  background: linear-gradient(135deg, #0D1B2E 0%, #0D2B52 40%, #0A1F3D 70%, #0D1B2E 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
/* Dot particles */
.tq-solution-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  animation: particleDrift 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
/* Floating orb top-right */
.tq-solution-highlight::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(0,174,239,0.08) 50%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb1 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
/* Extra orb bottom-left */
.tq-solution-highlight .sol-orb {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(39,174,96,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb2 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
/* Keep content above animations */
.tq-solution-highlight > * { position: relative; z-index: 1; }
.tq-solution-highlight h3 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.tq-solution-highlight p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 24px; }
.tq-solution-points { list-style: none; padding: 0; margin: 0; }
.tq-solution-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.tq-solution-points li:last-child { border-bottom: none; }
.tq-solution-points li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
/* White text when used on dark backgrounds */
.tq-solution-highlight .tq-solution-points li,
.tq-solution-points.tq-on-dark li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}

/* ============================================================
   FEATURE DETAIL PAGE
   ============================================================ */
.tq-feature-hero-icon {
  font-size: 72px;
  display: block;
  margin-bottom: 20px;
}
.tq-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tq-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.tq-feature-item:hover { box-shadow: var(--shadow-md); border-color: rgba(0,174,239,0.2); }
.tq-feature-item-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.tq-feature-item-body h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.tq-feature-item-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ============================================================
   ANIMATED TAGS / CHIPS
   ============================================================ */
.tq-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tq-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text);
  background: #fff;
}
.tq-chip-accent { background: rgba(0,174,239,0.08); border-color: rgba(0,174,239,0.3); color: var(--accent); }
.tq-chip-primary { background: rgba(26,60,110,0.06); border-color: rgba(26,60,110,0.2); color: var(--primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tq-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tq-feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tq-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tq-stats-row { grid-template-columns: repeat(2, 1fr); }
  .tq-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .tq-hero-title { font-size: 46px; }
}
@media (max-width: 768px) {
  .tq-container, .tq-container-sm { padding: 0 24px; }
  .tq-section { padding: 72px 0; }
  .tq-section-sm { padding: 52px 0; }
  .tq-hero { padding: 90px 0 80px; }
  .tq-hero-title { font-size: 36px; letter-spacing: -0.5px; }
  .tq-hero-subtitle { font-size: 16px; }
  .tq-page-hero-title { font-size: 34px; }
  .tq-feature-grid { grid-template-columns: 1fr; }
  .tq-feature-grid-4 { grid-template-columns: 1fr; }
  .tq-two-col { grid-template-columns: 1fr; gap: 40px; }
  .tq-pricing-grid { grid-template-columns: 1fr; }
  .tq-pricing-card.featured { transform: none; }
  .tq-testimonial-grid { grid-template-columns: 1fr; }
  .tq-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tq-stats-row { grid-template-columns: repeat(2, 1fr); }
  .tq-section-title { font-size: 30px; }
  .tq-cta-title { font-size: 30px; }
  .tq-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .tq-steps { grid-template-columns: 1fr; }
  .tq-step:not(:last-child)::after { display: none; }
  .tq-problem-grid { grid-template-columns: 1fr; }
  .tq-feature-list { grid-template-columns: 1fr; }
  .tq-form-row { grid-template-columns: 1fr; }
  .tq-values-grid { grid-template-columns: 1fr; }
  .tq-footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ADDITIONS: Logo, Hero, Buttons, Stats — live site updates
   ============================================================ */

/* Mustard CTA button — override OceanWP inline styles */
.tq-btn-mustard { background: var(--mustard) !important; color: #fff !important; box-shadow: 0 4px 16px rgba(232,160,0,0.35); }
.tq-btn-mustard:hover { background: #CC8C00 !important; color: #fff !important; transform: translateY(-2px); }

/* Stat numbers 3 & 4 white (home page dark stat bar) */
.tq-stat:nth-child(3) .tq-stat-num,
.tq-stat:nth-child(4) .tq-stat-num { color: #fff; }

/* PAGE HERO — SPLIT LAYOUT (full-bleed right image, left radius only) */
.tq-page-hero { padding: 90px 0 0; overflow: hidden; }
.tq-page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; align-items: stretch; min-height: 540px; }
.tq-page-hero-img-wrap { position: relative !important; overflow: hidden; border-radius: 16px 0 0 16px !important; margin-right: min(0px, calc(550px - 50vw)) !important; min-height: 440px; }
.tq-page-hero-img-wrap img { position: absolute !important; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100% !important; object-fit: cover; display: block; border-radius: 0; }
@media (max-width: 900px) {
  .tq-page-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .tq-page-hero-img-wrap { margin-right: 0 !important; margin-top: 32px; min-height: 260px; border-radius: 16px !important; }
}

/* Chip on dark hero — solid white with navy text */
.tq-chip.tq-badge-white { background: #ffffff; color: #1a3c6e; border-color: transparent; }

/* Mustard CSS variable (if not already set) */
:root { --mustard: #E8A000; }
