/* ============================================================
   Qentrixa — Main Stylesheet
   qx-style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@400;500;600;700;800&display=swap');

/* ---- CSS Variables ---------------------------------------- */
:root {
  --qx-navy:       #0d1b2a;
  --qx-navy-mid:   #152540;
  --qx-slate:      #2c3e55;
  --qx-slate-light:#3d5166;
  --qx-teal:       #1e9e8a;
  --qx-teal-light: #2bbfa8;
  --qx-teal-pale:  #d4f5f0;
  --qx-white:      #ffffff;
  --qx-off-white:  #f7f9fc;
  --qx-grey-light: #edf0f5;
  --qx-grey-mid:   #8f9cac;
  --qx-text-dark:  #1a2535;
  --qx-text-body:  #3f4e5c;
  --qx-accent-warm:#e8a44a;
  --qx-shadow-sm:  0 2px 12px rgba(13,27,42,0.08);
  --qx-shadow-md:  0 6px 28px rgba(13,27,42,0.12);
  --qx-shadow-lg:  0 16px 48px rgba(13,27,42,0.16);
  --qx-radius-sm:  6px;
  --qx-radius-md:  12px;
  --qx-radius-lg:  20px;
  --qx-font-heading: 'Syne', sans-serif;
  --qx-font-body:    'DM Sans', sans-serif;
  --qx-transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--qx-font-body);
  color: var(--qx-text-body);
  background: var(--qx-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--qx-teal); text-decoration: none; transition: var(--qx-transition); }
a:hover { color: var(--qx-teal-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--qx-font-heading);
  color: var(--qx-text-dark);
  line-height: 1.2;
  font-weight: 700;
}

p { margin-bottom: 1rem; }

/* ---- Typography Scale ------------------------------------- */
.qx-display-xl { font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
.qx-display-lg { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
.qx-display-md { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.015em; }
.qx-display-sm { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; }
.qx-body-lg    { font-size: 1.125rem; line-height: 1.75; }
.qx-body-sm    { font-size: 0.9rem; line-height: 1.6; }
.qx-label      { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--qx-teal); }

/* ---- Layout Utilities ------------------------------------- */
.qx-section-pad        { padding: 100px 0; }
.qx-section-pad-sm     { padding: 60px 0; }
.qx-section-pad-lg     { padding: 140px 0; }
.qx-bg-navy            { background: var(--qx-navy); color: var(--qx-white); }
.qx-bg-navy-mid        { background: var(--qx-navy-mid); color: var(--qx-white); }
.qx-bg-off-white       { background: var(--qx-off-white); }
.qx-bg-teal-pale       { background: var(--qx-teal-pale); }
.qx-text-white         { color: var(--qx-white) !important; }
.qx-text-teal          { color: var(--qx-teal) !important; }
.qx-text-muted-light   { color: rgba(255,255,255,0.65); }
.qx-max-measure        { max-width: 680px; }
.qx-max-measure-sm     { max-width: 520px; }

/* ---- Section Dividers ------------------------------------- */
.qx-wave-divider {
  position: relative;
  overflow: hidden;
}
.qx-wave-divider::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--qx-off-white);
  clip-path: polygon(0 60%, 15% 40%, 30% 65%, 50% 30%, 70% 60%, 85% 35%, 100% 55%, 100% 100%, 0 100%);
}
.qx-diagonal-divider {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding-bottom: 120px !important;
}
.qx-slant-top {
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  padding-top: 120px !important;
}

/* ---- Navigation ------------------------------------------- */
.qx-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--qx-transition);
}
.qx-nav-wrapper.qx-nav-scrolled {
  background: rgba(13, 27, 42, 0.99);
  box-shadow: var(--qx-shadow-md);
}
.qx-navbar {
  padding: 16px 0;
}
.qx-brand-logo {
  font-family: var(--qx-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--qx-white) !important;
  letter-spacing: -0.03em;
}
.qx-brand-logo span {
  color: var(--qx-teal);
}
.qx-nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 14px !important;
  border-radius: var(--qx-radius-sm);
  transition: var(--qx-transition);
}
.qx-nav-link:hover, .qx-nav-link.active {
  color: var(--qx-white) !important;
  background: rgba(30,158,138,0.15);
}
.qx-nav-cta {
  background: var(--qx-teal);
  color: var(--qx-white) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600;
}
.qx-nav-cta:hover {
  background: var(--qx-teal-light) !important;
  color: var(--qx-white) !important;
  transform: translateY(-1px);
}
.qx-hamburger { 
  background: none; 
  border: none; 
  color: white; 
  font-size: 1.4rem; 
  cursor: pointer; 
}

/* ---- Buttons --------------------------------------------- */
.qx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--qx-teal);
  color: var(--qx-white);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--qx-transition);
  text-decoration: none;
}
.qx-btn-primary:hover {
  background: var(--qx-teal-light);
  color: var(--qx-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,158,138,0.35);
}
.qx-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--qx-white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--qx-transition);
  text-decoration: none;
}
.qx-btn-outline:hover {
  border-color: var(--qx-white);
  background: rgba(255,255,255,0.08);
  color: var(--qx-white);
}
.qx-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--qx-navy);
  color: var(--qx-white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--qx-transition);
  text-decoration: none;
}
.qx-btn-dark:hover {
  background: var(--qx-slate);
  color: var(--qx-white);
  transform: translateY(-2px);
}

/* ---- Hero Section ----------------------------------------- */
#qx-hero-home {
  min-height: 100vh;
  background: var(--qx-navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#qx-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.qx-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.qx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,158,138,0.15);
  border: 1px solid rgba(30,158,138,0.35);
  color: var(--qx-teal-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.qx-hero-headline {
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  font-weight: 800;
  color: var(--qx-white);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.qx-hero-headline .qx-hl-teal { color: var(--qx-teal-light); }
.qx-hero-subtext {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.qx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.qx-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.qx-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
}
.qx-trust-item i { color: var(--qx-teal-light); font-size: 1rem; }
.qx-hero-image-panel {
  position: relative;
  padding: 40px 0;
}
.qx-hero-img-main {
  border-radius: var(--qx-radius-lg);
  box-shadow: var(--qx-shadow-lg);
  width: 100%;
  object-fit: cover;
  height: 480px;
}
.qx-hero-img-badge {
  position: absolute;
  bottom: 60px;
  left: -20px;
  background: var(--qx-white);
  border-radius: var(--qx-radius-md);
  padding: 16px 20px;
  box-shadow: var(--qx-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  min-width: 200px;
}
.qx-hero-img-badge .qx-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--qx-teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qx-teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.qx-hero-img-badge .qx-badge-text strong {
  display: block;
  color: var(--qx-text-dark);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--qx-font-heading);
}
.qx-hero-img-badge .qx-badge-text span {
  font-size: 0.78rem;
  color: var(--qx-grey-mid);
}
.qx-hero-dot-grid {
  position: absolute;
  top: 10px;
  right: -30px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, rgba(30,158,138,0.3) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: 1;
}

/* ---- Diagnostic Tool ------------------------------------- */
#qx-diagnostic-tool {
  background: var(--qx-off-white);
  padding: 100px 0;
}
.qx-tool-wrapper {
  background: var(--qx-white);
  border-radius: var(--qx-radius-lg);
  box-shadow: var(--qx-shadow-md);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.qx-tool-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--qx-teal), var(--qx-teal-light), var(--qx-accent-warm));
}
.qx-tool-step { display: none; }
.qx-tool-step.qx-tool-active { display: block; }
.qx-device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.qx-device-option {
  border: 2px solid var(--qx-grey-light);
  border-radius: var(--qx-radius-md);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--qx-transition);
  background: var(--qx-white);
}
.qx-device-option:hover,
.qx-device-option.qx-selected {
  border-color: var(--qx-teal);
  background: var(--qx-teal-pale);
  transform: translateY(-2px);
  box-shadow: var(--qx-shadow-sm);
}
.qx-device-option i {
  font-size: 2rem;
  color: var(--qx-slate);
  margin-bottom: 10px;
  transition: var(--qx-transition);
}
.qx-device-option:hover i,
.qx-device-option.qx-selected i { color: var(--qx-teal); }
.qx-device-option span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--qx-text-dark);
  display: block;
}
.qx-symptom-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.qx-symptom-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid var(--qx-grey-light);
  border-radius: var(--qx-radius-sm);
  cursor: pointer;
  transition: var(--qx-transition);
  background: var(--qx-white);
}
.qx-symptom-item:hover { border-color: var(--qx-teal); background: var(--qx-teal-pale); }
.qx-symptom-item.qx-selected { border-color: var(--qx-teal); background: var(--qx-teal-pale); }
.qx-symptom-item i { color: var(--qx-teal); width: 20px; text-align: center; }
.qx-result-card {
  background: var(--qx-navy);
  border-radius: var(--qx-radius-md);
  padding: 32px;
  color: var(--qx-white);
  margin-top: 20px;
}
.qx-disclaimer-note {
  background: var(--qx-grey-light);
  border-left: 3px solid var(--qx-accent-warm);
  padding: 14px 18px;
  border-radius: 0 var(--qx-radius-sm) var(--qx-radius-sm) 0;
  font-size: 0.85rem;
  color: var(--qx-text-body);
  margin-top: 20px;
}

/* ---- Service Grid ----------------------------------------- */
#qx-services-grid {
  padding: 100px 0;
}
.qx-service-card {
  background: var(--qx-white);
  border-radius: var(--qx-radius-md);
  padding: 36px;
  box-shadow: var(--qx-shadow-sm);
  border: 1px solid var(--qx-grey-light);
  transition: var(--qx-transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.qx-service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--qx-teal);
  transform: scaleX(0);
  transition: var(--qx-transition);
}
.qx-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--qx-shadow-md);
  border-color: transparent;
}
.qx-service-card:hover::before { transform: scaleX(1); }
.qx-service-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--qx-teal-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--qx-transition);
}
.qx-service-card:hover .qx-service-icon-wrap {
  background: var(--qx-teal);
}
.qx-service-icon-wrap i {
  font-size: 1.5rem;
  color: var(--qx-teal);
  transition: var(--qx-transition);
}
.qx-service-card:hover .qx-service-icon-wrap i { color: var(--qx-white); }
.qx-service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--qx-text-dark);
}
.qx-service-card p {
  font-size: 0.92rem;
  color: var(--qx-text-body);
  margin-bottom: 0;
}

/* ---- Before/After Slider ---------------------------------- */
#qx-before-after {
  padding: 100px 0;
  background: var(--qx-navy-mid);
}
.qx-ba-slider-wrap {
  position: relative;
  border-radius: var(--qx-radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--qx-shadow-lg);
}
.qx-ba-before, .qx-ba-after {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.qx-ba-after-wrap {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  overflow: hidden;
  width: 50%;
  transition: width 0.05s;
}
.qx-ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.qx-ba-handle-pill {
  width: 48px;
  height: 48px;
  background: var(--qx-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--qx-shadow-md);
  gap: 4px;
}
.qx-ba-handle-pill i { font-size: 0.8rem; color: var(--qx-navy); }
.qx-ba-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--qx-white);
  z-index: 4;
}
.qx-ba-label {
  position: absolute;
  top: 16px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.qx-ba-label-before {
  right: 16px;
  background: rgba(0,0,0,0.5);
  color: var(--qx-white);
}
.qx-ba-label-after {
  left: 16px;
  background: var(--qx-teal);
  color: var(--qx-white);
}

/* ---- Reviews Section -------------------------------------- */
#qx-reviews {
  padding: 100px 0;
  background: var(--qx-off-white);
}
.qx-review-card {
  background: var(--qx-white);
  border-radius: var(--qx-radius-md);
  padding: 32px;
  box-shadow: var(--qx-shadow-sm);
  border: 1px solid var(--qx-grey-light);
  height: 100%;
  transition: var(--qx-transition);
}
.qx-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--qx-shadow-md);
}
.qx-review-stars { color: var(--qx-accent-warm); font-size: 0.9rem; margin-bottom: 14px; }
.qx-review-text {
  font-size: 0.95rem;
  color: var(--qx-text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.qx-reviewer-info { display: flex; align-items: center; gap: 12px; }
.qx-reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--qx-grey-light);
}
.qx-reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--qx-text-dark);
  font-family: var(--qx-font-heading);
}
.qx-reviewer-location {
  font-size: 0.78rem;
  color: var(--qx-grey-mid);
}

/* ---- Team Section ----------------------------------------- */
#qx-team {
  padding: 100px 0;
}
.qx-team-card {
  background: var(--qx-white);
  border-radius: var(--qx-radius-lg);
  overflow: hidden;
  box-shadow: var(--qx-shadow-sm);
  border: 1px solid var(--qx-grey-light);
  transition: var(--qx-transition);
}
.qx-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--qx-shadow-md);
}
.qx-team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.qx-team-body { padding: 28px; }
.qx-team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--qx-text-dark);
}
.qx-team-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--qx-teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.qx-team-bio {
  font-size: 0.9rem;
  color: var(--qx-text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- Accordion -------------------------------------------- */
#qx-maintenance-tips { padding: 100px 0; background: var(--qx-off-white); }
.qx-accordion-item {
  background: var(--qx-white);
  border-radius: var(--qx-radius-md);
  margin-bottom: 10px;
  border: 1px solid var(--qx-grey-light);
  overflow: hidden;
  transition: var(--qx-transition);
}
.qx-accordion-item.qx-acc-open {
  box-shadow: var(--qx-shadow-sm);
  border-color: var(--qx-teal);
}
.qx-accordion-header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.qx-accordion-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--qx-text-dark);
  display: flex;
  align-items: center;
  gap: 14px;
}
.qx-accordion-title i {
  color: var(--qx-teal);
  font-size: 1rem;
  width: 22px;
  text-align: center;
}
.qx-accordion-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--qx-grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qx-slate);
  font-size: 0.75rem;
  transition: var(--qx-transition);
  flex-shrink: 0;
}
.qx-accordion-item.qx-acc-open .qx-accordion-toggle {
  background: var(--qx-teal);
  color: var(--qx-white);
  transform: rotate(180deg);
}
.qx-accordion-body {
  display: none;
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--qx-text-body);
  line-height: 1.75;
}
.qx-accordion-item.qx-acc-open .qx-accordion-body { display: block; }

/* ---- Process Timeline -------------------------------------- */
#qx-process {
  padding: 100px 0;
  background: var(--qx-navy);
  position: relative;
  overflow: hidden;
}
#qx-process::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,158,138,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.qx-process-timeline {
  position: relative;
  padding: 20px 0;
}
.qx-process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(30,158,138,0.4), transparent);
  transform: translateX(-50%);
}
.qx-process-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 56px;
  position: relative;
}
.qx-process-step:nth-child(even) {
  flex-direction: row-reverse;
}
.qx-process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--qx-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--qx-font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--qx-white);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(30,158,138,0.2);
}
.qx-process-step-content {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--qx-radius-md);
  padding: 28px 32px;
  max-width: 440px;
}
.qx-process-step:nth-child(even) .qx-process-step-content {
  text-align: right;
}
.qx-process-step-content h4 {
  color: var(--qx-white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.qx-process-step-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- CTA Section ----------------------------------------- */
#qx-cta-booking {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--qx-teal) 0%, #0d8a78 50%, var(--qx-navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
#qx-cta-booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

/* ---- Page Hero (inner pages) ------------------------------ */
.qx-page-hero {
  background: var(--qx-navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.qx-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--qx-navy) 60%, var(--qx-navy-mid) 100%);
}
.qx-page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30,158,138,0.12) 0%, transparent 65%);
}
.qx-page-hero-content { position: relative; z-index: 2; }
.qx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.qx-breadcrumb a { color: rgba(255,255,255,0.55); }
.qx-breadcrumb a:hover { color: var(--qx-teal-light); }
.qx-breadcrumb span { color: rgba(255,255,255,0.35); }
.qx-breadcrumb .qx-bc-current { color: rgba(255,255,255,0.85); }
.qx-page-hero h1 { color: var(--qx-white); margin-bottom: 16px; }
.qx-page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin-bottom: 0; }

/* ---- Services Detail Page --------------------------------- */
.qx-service-detail-card {
  background: var(--qx-white);
  border-radius: var(--qx-radius-lg);
  border: 1px solid var(--qx-grey-light);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--qx-shadow-sm);
  transition: var(--qx-transition);
}
.qx-service-detail-card:hover { box-shadow: var(--qx-shadow-md); }
.qx-service-detail-header {
  background: var(--qx-navy);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.qx-svc-icon-lg {
  width: 72px;
  height: 72px;
  background: rgba(30,158,138,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qx-svc-icon-lg i { font-size: 2rem; color: var(--qx-teal-light); }
.qx-service-detail-header h2 { color: var(--qx-white); margin-bottom: 6px; font-size: 1.6rem; }
.qx-service-detail-header p { color: rgba(255,255,255,0.65); margin-bottom: 0; font-size: 0.95rem; }
.qx-service-detail-body { padding: 40px 48px; }
.qx-service-detail-body h4 {
  font-size: 1.05rem;
  color: var(--qx-text-dark);
  margin-bottom: 12px;
  margin-top: 28px;
}
.qx-service-detail-body h4:first-child { margin-top: 0; }
.qx-limitation-box {
  background: #fff8ed;
  border: 1px solid #f5d9a0;
  border-radius: var(--qx-radius-sm);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: #5c4a1e;
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.qx-limitation-box i { color: var(--qx-accent-warm); margin-top: 2px; flex-shrink: 0; }

/* ---- Articles -------------------------------------------- */
.qx-article-card {
  background: var(--qx-white);
  border-radius: var(--qx-radius-md);
  overflow: hidden;
  box-shadow: var(--qx-shadow-sm);
  border: 1px solid var(--qx-grey-light);
  transition: var(--qx-transition);
  height: 100%;
}
.qx-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--qx-shadow-md);
}
.qx-article-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.qx-article-body { padding: 28px; }
.qx-article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.qx-article-tag {
  background: var(--qx-teal-pale);
  color: var(--qx-teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.qx-article-date { font-size: 0.8rem; color: var(--qx-grey-mid); }
.qx-article-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--qx-text-dark);
  line-height: 1.35;
}
.qx-article-body p {
  font-size: 0.9rem;
  color: var(--qx-text-body);
  margin-bottom: 20px;
}
.qx-article-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--qx-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.qx-article-link:hover { gap: 10px; }

/* ---- Article Content (long-form) ------------------------- */
.qx-article-content-wrap { max-width: 780px; margin: 0 auto; }
.qx-article-content h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--qx-text-dark);
}
.qx-article-content h3 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--qx-text-dark);
}
.qx-article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--qx-text-body);
  margin-bottom: 1.2rem;
}
.qx-article-content ul, .qx-article-content ol {
  margin: 0 0 1.2rem 1.5rem;
}
.qx-article-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--qx-text-body);
  margin-bottom: 6px;
}
.qx-article-content blockquote {
  border-left: 4px solid var(--qx-teal);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--qx-teal-pale);
  border-radius: 0 var(--qx-radius-sm) var(--qx-radius-sm) 0;
}
.qx-article-content blockquote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--qx-text-dark);
  margin-bottom: 0;
}
.qx-article-img-full {
  width: 100%;
  border-radius: var(--qx-radius-md);
  margin: 32px 0;
  box-shadow: var(--qx-shadow-sm);
}
.qx-article-callout {
  background: var(--qx-navy);
  color: var(--qx-white);
  border-radius: var(--qx-radius-md);
  padding: 28px 32px;
  margin: 32px 0;
}
.qx-article-callout p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.qx-article-callout strong { color: var(--qx-teal-light); }

/* ---- About Page ------------------------------------------ */
.qx-about-timeline {
  position: relative;
  padding-left: 32px;
}
.qx-about-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--qx-grey-light);
}
.qx-timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.qx-timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--qx-teal);
  border: 3px solid var(--qx-white);
  box-shadow: 0 0 0 3px var(--qx-teal-pale);
}
.qx-timeline-year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--qx-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.qx-timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--qx-text-dark);
  font-family: var(--qx-font-heading);
  margin-bottom: 8px;
}
.qx-timeline-desc {
  font-size: 0.92rem;
  color: var(--qx-text-body);
  line-height: 1.7;
}
.qx-value-card {
  padding: 32px;
  background: var(--qx-white);
  border-radius: var(--qx-radius-md);
  border: 1px solid var(--qx-grey-light);
  height: 100%;
  transition: var(--qx-transition);
}
.qx-value-card:hover { box-shadow: var(--qx-shadow-md); transform: translateY(-4px); border-color: var(--qx-teal-pale); }
.qx-value-icon {
  width: 52px;
  height: 52px;
  background: var(--qx-teal-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.qx-value-icon i { font-size: 1.3rem; color: var(--qx-teal); }
.qx-value-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.qx-value-card p { font-size: 0.92rem; margin-bottom: 0; color: var(--qx-text-body); }

/* ---- Contact Page ----------------------------------------- */
#qx-contact-section { padding: 100px 0; }
.qx-contact-form-wrap {
  background: var(--qx-white);
  border-radius: var(--qx-radius-lg);
  padding: 48px;
  box-shadow: var(--qx-shadow-md);
}
.qx-form-group { margin-bottom: 24px; }
.qx-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--qx-text-dark);
  margin-bottom: 8px;
}
.qx-form-label span.qx-required { color: var(--qx-teal); margin-left: 2px; }
.qx-form-input, .qx-form-select, .qx-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--qx-grey-light);
  border-radius: var(--qx-radius-sm);
  font-size: 0.95rem;
  font-family: var(--qx-font-body);
  color: var(--qx-text-dark);
  background: var(--qx-white);
  transition: var(--qx-transition);
  outline: none;
}
.qx-form-input:focus, .qx-form-select:focus, .qx-form-textarea:focus {
  border-color: var(--qx-teal);
  box-shadow: 0 0 0 4px rgba(30,158,138,0.1);
}
.qx-form-input.qx-input-error, .qx-form-textarea.qx-input-error {
  border-color: #e53e3e;
}
.qx-form-error-msg {
  display: none;
  font-size: 0.8rem;
  color: #e53e3e;
  margin-top: 6px;
}
.qx-form-textarea { resize: vertical; min-height: 140px; }
.qx-captcha-box {
  background: var(--qx-off-white);
  border: 2px solid var(--qx-grey-light);
  border-radius: var(--qx-radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.qx-captcha-question {
  font-weight: 700;
  font-family: var(--qx-font-heading);
  font-size: 1.2rem;
  color: var(--qx-navy);
}
.qx-captcha-input {
  width: 80px;
  padding: 10px 14px;
  border: 2px solid var(--qx-grey-light);
  border-radius: var(--qx-radius-sm);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--qx-navy);
}
.qx-captcha-input:focus {
  border-color: var(--qx-teal);
  outline: none;
}
.qx-info-block {
  background: var(--qx-white);
  border-radius: var(--qx-radius-md);
  padding: 28px;
  box-shadow: var(--qx-shadow-sm);
  border: 1px solid var(--qx-grey-light);
  margin-bottom: 20px;
}
.qx-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.qx-info-row:last-child { margin-bottom: 0; }
.qx-info-row-icon {
  width: 38px;
  height: 38px;
  background: var(--qx-teal-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qx-info-row-icon i { font-size: 0.95rem; color: var(--qx-teal); }
.qx-info-row-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--qx-grey-mid);
  margin-bottom: 3px;
}
.qx-info-row-text span {
  font-size: 0.95rem;
  color: var(--qx-text-dark);
}
.qx-map-frame {
  border-radius: var(--qx-radius-md);
  overflow: hidden;
  box-shadow: var(--qx-shadow-sm);
}

/* ---- Thank You Page -------------------------------------- */
.qx-thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.qx-thankyou-box {
  text-align: center;
  max-width: 560px;
  padding: 60px;
  background: var(--qx-white);
  border-radius: var(--qx-radius-lg);
  box-shadow: var(--qx-shadow-lg);
}
.qx-thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--qx-teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.qx-thankyou-icon i { font-size: 2rem; color: var(--qx-teal); }

/* ---- Legal Pages ----------------------------------------- */
.qx-legal-content { max-width: 820px; margin: 0 auto; padding: 80px 0; }
.qx-legal-content h2 { font-size: 1.5rem; margin-top: 48px; margin-bottom: 14px; }
.qx-legal-content h3 { font-size: 1.2rem; margin-top: 32px; margin-bottom: 10px; }
.qx-legal-content p { font-size: 0.97rem; line-height: 1.8; margin-bottom: 1rem; }
.qx-legal-content ul { margin: 0 0 1rem 1.5rem; }
.qx-legal-content li { font-size: 0.97rem; line-height: 1.8; margin-bottom: 4px; }
.qx-legal-date {
  font-size: 0.85rem;
  color: var(--qx-grey-mid);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--qx-grey-light);
}
.qx-legal-toc {
  background: var(--qx-off-white);
  border-radius: var(--qx-radius-md);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.qx-legal-toc h4 { margin-bottom: 14px; font-size: 1rem; }
.qx-legal-toc ol { margin: 0 0 0 1.2rem; }
.qx-legal-toc li { font-size: 0.9rem; margin-bottom: 4px; }
.qx-legal-toc a { color: var(--qx-teal); }

/* ---- Footer ---------------------------------------------- */
#qx-footer {
  background: var(--qx-navy);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}
.qx-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.qx-footer-heading {
  font-family: var(--qx-font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--qx-white);
  margin-bottom: 20px;
}
.qx-footer-links { list-style: none; padding: 0; }
.qx-footer-links li { margin-bottom: 10px; }
.qx-footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--qx-transition);
}
.qx-footer-links a:hover { color: var(--qx-teal-light); padding-left: 4px; }
.qx-footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.qx-footer-contact-row i { color: var(--qx-teal); width: 16px; }
.qx-footer-contact-row a { color: rgba(255,255,255,0.65); }
.qx-footer-contact-row a:hover { color: var(--qx-teal-light); }
.qx-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 60px 0 0;
}
.qx-footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.qx-footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.qx-footer-bottom-links a { color: rgba(255,255,255,0.4); }
.qx-footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ---- Cookie Banner --------------------------------------- */
#qx-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--qx-navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: none;
}
.qx-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.qx-cookie-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  flex: 1;
  min-width: 260px;
}
.qx-cookie-text a { color: var(--qx-teal-light); }
.qx-cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.qx-cookie-accept {
  background: var(--qx-teal);
  color: var(--qx-white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--qx-transition);
}
.qx-cookie-accept:hover { background: var(--qx-teal-light); }
.qx-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--qx-transition);
}
.qx-cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--qx-white); }

/* ---- Stats Bar ------------------------------------------- */
.qx-stats-bar {
  background: var(--qx-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--qx-grey-light);
}
.qx-stat-item { text-align: center; }
.qx-stat-number {
  font-family: var(--qx-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--qx-teal);
  line-height: 1;
  margin-bottom: 6px;
}
.qx-stat-label {
  font-size: 0.85rem;
  color: var(--qx-text-body);
  font-weight: 500;
}

/* ---- Scroll Reveal ---------------------------------------- */
.qx-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.qx-reveal.qx-visible {
  opacity: 1;
  transform: translateY(0);
}
.qx-reveal-delay-1 { transition-delay: 0.1s; }
.qx-reveal-delay-2 { transition-delay: 0.2s; }
.qx-reveal-delay-3 { transition-delay: 0.3s; }
.qx-reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 991.98px) {
  .qx-section-pad { padding: 70px 0; }
  .qx-process-timeline::before { display: none; }
  .qx-process-step { flex-direction: column !important; align-items: flex-start; }
  .qx-process-step-content { max-width: 100%; }
  .qx-process-step:nth-child(even) .qx-process-step-content { text-align: left; }
  .qx-service-detail-header { flex-direction: column; padding: 32px; }
  .qx-service-detail-body { padding: 32px; }
}

@media (max-width: 767.98px) {
  .qx-hero-img-badge { display: none; }
  .qx-contact-form-wrap { padding: 32px 24px; }
  .qx-tool-wrapper { padding: 28px 24px; }
  .qx-thankyou-box { padding: 40px 24px; }
  .qx-footer-bottom { flex-direction: column; text-align: center; }
  .qx-ba-before, .qx-ba-after { height: 240px; }
}


.logo{
  max-width: 150px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}