/* =============================================
   Brampton Cleaning Services — Main Stylesheet
   ce-style.css
   ============================================= */

:root {
  --ce-primary: #1a3a5c;
  --ce-primary-light: #2a5298;
  --ce-secondary: #4a9eca;
  --ce-accent: #f0a500;
  --ce-accent-light: #ffc942;
  --ce-white: #ffffff;
  --ce-off-white: #f8f9fc;
  --ce-light-grey: #eef1f7;
  --ce-mid-grey: #c2cde0;
  --ce-dark-grey: #6b7a99;
  --ce-text-dark: #1c2b45;
  --ce-text-body: #3d4f6e;
  --ce-text-light: #7a8caa;
  --ce-success: #2a9d6e;
  --ce-border: #dde3ef;
  --ce-shadow-sm: 0 2px 8px rgba(26,58,92,0.08);
  --ce-shadow-md: 0 6px 24px rgba(26,58,92,0.12);
  --ce-shadow-lg: 0 16px 48px rgba(26,58,92,0.16);
  --ce-radius-sm: 6px;
  --ce-radius-md: 12px;
  --ce-radius-lg: 20px;
  --ce-radius-xl: 32px;
  --ce-font-display: 'Playfair Display', Georgia, serif;
  --ce-font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --ce-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ce-gradient-primary: linear-gradient(135deg, #1a3a5c 0%, #2a5298 50%, #4a9eca 100%);
  --ce-gradient-warm: linear-gradient(135deg, #f0a500 0%, #ffc942 100%);
  --ce-gradient-light: linear-gradient(160deg, #f8f9fc 0%, #eef1f7 100%);
}

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

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

body {
  font-family: var(--ce-font-body);
  color: var(--ce-text-body);
  background: var(--ce-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--ce-primary-light); text-decoration: none; transition: color var(--ce-transition); }
a:hover { color: var(--ce-secondary); }

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

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* ---- Utility Classes ---- */
.ce-text-center { text-align: center; }
.ce-text-left { text-align: left; }
.ce-text-right { text-align: right; }
.ce-mt-1 { margin-top: 0.5rem; }
.ce-mt-2 { margin-top: 1rem; }
.ce-mt-3 { margin-top: 1.5rem; }
.ce-mt-4 { margin-top: 2rem; }
.ce-mb-1 { margin-bottom: 0.5rem; }
.ce-mb-2 { margin-bottom: 1rem; }
.ce-mb-3 { margin-bottom: 1.5rem; }
.ce-mb-4 { margin-bottom: 2rem; }
.ce-pt-section { padding-top: 5rem; }
.ce-pb-section { padding-bottom: 5rem; }
.ce-py-section { padding-top: 5rem; padding-bottom: 5rem; }
.ce-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---- Layout Container ---- */
.ce-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ce-container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.ce-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--ce-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ce-transition);
  text-decoration: none;
  line-height: 1.3;
}

.ce-btn-primary {
  background: var(--ce-gradient-primary);
  color: var(--ce-white);
  box-shadow: 0 4px 16px rgba(26,58,92,0.25);
}
.ce-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,58,92,0.35);
  color: var(--ce-white);
}

.ce-btn-secondary {
  background: transparent;
  color: var(--ce-primary);
  border-color: var(--ce-primary);
}
.ce-btn-secondary:hover {
  background: var(--ce-primary);
  color: var(--ce-white);
  transform: translateY(-2px);
}

.ce-btn-accent {
  background: var(--ce-gradient-warm);
  color: var(--ce-text-dark);
  box-shadow: 0 4px 16px rgba(240,165,0,0.3);
}
.ce-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,165,0,0.4);
  color: var(--ce-text-dark);
}

.ce-btn-white {
  background: var(--ce-white);
  color: var(--ce-primary);
  box-shadow: var(--ce-shadow-md);
}
.ce-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--ce-shadow-lg);
  color: var(--ce-primary);
}

.ce-btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.875rem;
}
.ce-btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ---- Section Titles ---- */
.ce-section-label {
  display: inline-block;
  font-family: var(--ce-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ce-secondary);
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  background: rgba(74,158,202,0.1);
  border-radius: 50px;
  border: 1px solid rgba(74,158,202,0.2);
}

.ce-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ce-text-dark);
  margin-bottom: 1rem;
}

.ce-section-subtitle {
  font-size: 1.05rem;
  color: var(--ce-text-light);
  max-width: 600px;
  line-height: 1.75;
}

.ce-section-header {
  margin-bottom: 3rem;
}

.ce-section-header.ce-text-center .ce-section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Navbar ---- */
.ce-navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--ce-transition);
}

.ce-navbar-wrapper.ce-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(26,58,92,0.1);
}

.ce-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.ce-navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.ce-navbar-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--ce-gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ce-navbar-logo-text {
  display: flex;
  flex-direction: column;
}

.ce-navbar-brand-name {
  font-family: var(--ce-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ce-primary);
  line-height: 1.1;
}

.ce-navbar-brand-tag {
  font-size: 0.72rem;
  color: var(--ce-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.ce-navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.ce-navbar-nav-item { position: relative; }

.ce-navbar-nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ce-text-dark);
  border-radius: var(--ce-radius-sm);
  transition: all var(--ce-transition);
}

.ce-navbar-nav-link:hover,
.ce-navbar-nav-link.ce-active {
  color: var(--ce-secondary);
  background: rgba(74,158,202,0.08);
}

.ce-navbar-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--ce-white);
  border-radius: var(--ce-radius-md);
  box-shadow: var(--ce-shadow-lg);
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ce-transition);
  border: 1px solid var(--ce-border);
  list-style: none;
}

.ce-navbar-nav-item:hover .ce-navbar-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ce-navbar-dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--ce-text-body);
  border-radius: var(--ce-radius-sm);
  transition: all var(--ce-transition);
}

.ce-navbar-dropdown-link:hover {
  background: var(--ce-light-grey);
  color: var(--ce-primary);
}

.ce-navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ce-navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ce-primary);
}

.ce-navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ce-primary);
  font-size: 1.4rem;
}

/* Mobile Nav */
.ce-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ce-white);
  z-index: 999;
  overflow-y: auto;
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--ce-transition);
}

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

.ce-mobile-nav-list { list-style: none; padding: 0; }
.ce-mobile-nav-item { border-bottom: 1px solid var(--ce-border); }
.ce-mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ce-text-dark);
}
.ce-mobile-nav-sub { list-style: none; padding: 0 0 0.5rem 1rem; }
.ce-mobile-nav-sub-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--ce-text-body);
}

/* ---- Hero Sections ---- */
.ce-page-hero-section {
  padding: 8rem 0 4rem;
  background: var(--ce-gradient-primary);
  position: relative;
  overflow: hidden;
  color: var(--ce-white);
}

.ce-page-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ce-page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ce-white);
  margin-bottom: 1rem;
}

.ce-page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.75;
}

.ce-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.ce-breadcrumb-item { color: rgba(255,255,255,0.7); }
.ce-breadcrumb-item a { color: rgba(255,255,255,0.85); }
.ce-breadcrumb-item a:hover { color: var(--ce-white); }
.ce-breadcrumb-separator { color: rgba(255,255,255,0.4); }

/* ---- Cards ---- */
.ce-card {
  background: var(--ce-white);
  border-radius: var(--ce-radius-lg);
  box-shadow: var(--ce-shadow-sm);
  border: 1px solid var(--ce-border);
  overflow: hidden;
  transition: all var(--ce-transition);
}

.ce-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ce-shadow-lg);
  border-color: var(--ce-mid-grey);
}

.ce-card-body { padding: 1.75rem; }

.ce-service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ce-service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--ce-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.ce-service-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.ce-service-card-desc {
  font-size: 0.9rem;
  color: var(--ce-text-light);
  margin-bottom: 1.25rem;
}

/* ---- Feature Lists ---- */
.ce-feature-list {
  list-style: none;
  padding: 0;
}

.ce-feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--ce-text-body);
}

.ce-feature-list-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(42,157,110,0.15);
  color: var(--ce-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

/* ---- Process Steps ---- */
.ce-process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--ce-radius-lg);
  background: var(--ce-white);
  border: 1px solid var(--ce-border);
  transition: all var(--ce-transition);
}

.ce-process-step:hover {
  border-color: var(--ce-secondary);
  box-shadow: var(--ce-shadow-md);
}

.ce-process-step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--ce-gradient-primary);
  color: var(--ce-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ce-font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.ce-process-step-content h4 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.ce-process-step-content p {
  font-size: 0.875rem;
  color: var(--ce-text-light);
  margin: 0;
}

/* ---- FAQ Accordion ---- */
.ce-faq-item {
  border: 1px solid var(--ce-border);
  border-radius: var(--ce-radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--ce-transition);
}

.ce-faq-item.ce-faq-open {
  border-color: var(--ce-secondary);
  box-shadow: 0 0 0 3px rgba(74,158,202,0.08);
}

.ce-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--ce-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ce-text-dark);
  text-align: left;
  transition: background var(--ce-transition);
}

.ce-faq-question:hover { background: var(--ce-light-grey); }

.ce-faq-question.ce-faq-open {
  color: var(--ce-primary);
  background: rgba(74,158,202,0.06);
}

.ce-faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--ce-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--ce-transition);
  color: var(--ce-dark-grey);
}

.ce-faq-question.ce-faq-open .ce-faq-icon {
  background: var(--ce-secondary);
  color: var(--ce-white);
  transform: rotate(180deg);
}

.ce-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.ce-faq-answer.ce-faq-open {
  max-height: 600px;
}

.ce-faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ce-text-body);
  line-height: 1.75;
}

/* ---- Testimonials ---- */
.ce-testimonial-card {
  background: var(--ce-white);
  border-radius: var(--ce-radius-lg);
  padding: 2rem;
  box-shadow: var(--ce-shadow-md);
  border: 1px solid var(--ce-border);
  position: relative;
}

.ce-testimonial-quote-icon {
  font-size: 3rem;
  color: var(--ce-secondary);
  opacity: 0.25;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.ce-testimonial-stars {
  color: var(--ce-accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.ce-testimonial-text {
  font-size: 0.95rem;
  color: var(--ce-text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.ce-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ce-testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ce-border);
}

.ce-testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ce-text-dark);
}

.ce-testimonial-location {
  font-size: 0.8rem;
  color: var(--ce-text-light);
}

/* ---- Stat Counters ---- */
.ce-stat-block {
  text-align: center;
  padding: 2rem 1.5rem;
}

.ce-stat-number {
  font-family: var(--ce-font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ce-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.ce-stat-label {
  font-size: 0.875rem;
  color: var(--ce-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ---- Trust Badges ---- */
.ce-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--ce-white);
  border-radius: var(--ce-radius-md);
  border: 1px solid var(--ce-border);
  box-shadow: var(--ce-shadow-sm);
}

.ce-trust-badge-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--ce-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.ce-trust-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ce-text-dark);
}

.ce-trust-badge-text span {
  font-size: 0.78rem;
  color: var(--ce-text-light);
}

/* ---- Team Cards ---- */
.ce-team-card {
  background: var(--ce-white);
  border-radius: var(--ce-radius-lg);
  overflow: hidden;
  box-shadow: var(--ce-shadow-sm);
  border: 1px solid var(--ce-border);
  transition: all var(--ce-transition);
  text-align: center;
}

.ce-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ce-shadow-lg);
}

.ce-team-card-image-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.ce-team-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ce-team-card:hover .ce-team-card-image {
  transform: scale(1.05);
}

.ce-team-card-body { padding: 1.5rem; }

.ce-team-card-name {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.ce-team-card-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ce-secondary);
  font-weight: 600;
}

.ce-team-card-bio {
  font-size: 0.875rem;
  color: var(--ce-text-light);
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* ---- Form Styles ---- */
.ce-form-group { margin-bottom: 1.25rem; }

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

.ce-form-label .ce-required {
  color: #e05252;
  margin-left: 0.25rem;
}

.ce-form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  font-family: var(--ce-font-body);
  font-size: 0.925rem;
  color: var(--ce-text-dark);
  background: var(--ce-white);
  border: 1.5px solid var(--ce-border);
  border-radius: var(--ce-radius-md);
  transition: all var(--ce-transition);
  outline: none;
  line-height: 1.5;
}

.ce-form-control:focus {
  border-color: var(--ce-secondary);
  box-shadow: 0 0 0 3px rgba(74,158,202,0.15);
}

.ce-form-control.ce-invalid {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,0.1);
}

.ce-form-control.ce-valid {
  border-color: var(--ce-success);
}

textarea.ce-form-control { resize: vertical; min-height: 120px; }

.ce-form-error {
  font-size: 0.8rem;
  color: #e05252;
  margin-top: 0.3rem;
  display: none;
}

.ce-form-error.ce-visible { display: block; }

.ce-form-hint {
  font-size: 0.8rem;
  color: var(--ce-text-light);
  margin-top: 0.3rem;
}

select.ce-form-control {
  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 fill='%236b7a99' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.ce-captcha-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--ce-off-white);
  border: 1.5px solid var(--ce-border);
  border-radius: var(--ce-radius-md);
  margin-bottom: 1.25rem;
}

.ce-captcha-question {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ce-text-dark);
  flex: 1;
}

.ce-captcha-input {
  width: 80px;
  padding: 0.5rem 0.75rem;
  font-family: var(--ce-font-body);
  font-size: 0.9rem;
  border: 1.5px solid var(--ce-border);
  border-radius: var(--ce-radius-sm);
  outline: none;
  text-align: center;
}

.ce-captcha-input:focus {
  border-color: var(--ce-secondary);
}

/* ---- Article Styles ---- */
.ce-article-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ce-text-body);
}

.ce-article-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--ce-text-dark);
}

.ce-article-content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--ce-text-dark);
}

.ce-article-content ul,
.ce-article-content ol {
  margin-bottom: 1.25rem;
}

.ce-article-content li {
  margin-bottom: 0.5rem;
}

.ce-article-content img {
  border-radius: var(--ce-radius-md);
  margin: 1.5rem 0;
  width: 100%;
}

.ce-article-content blockquote {
  border-left: 4px solid var(--ce-secondary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(74,158,202,0.06);
  border-radius: 0 var(--ce-radius-md) var(--ce-radius-md) 0;
  font-style: italic;
  color: var(--ce-text-dark);
}

.ce-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ce-border);
  font-size: 0.875rem;
  color: var(--ce-text-light);
}

.ce-article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ce-article-card {
  background: var(--ce-white);
  border-radius: var(--ce-radius-lg);
  overflow: hidden;
  box-shadow: var(--ce-shadow-sm);
  border: 1px solid var(--ce-border);
  transition: all var(--ce-transition);
}

.ce-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ce-shadow-lg);
}

.ce-article-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ce-article-card-body { padding: 1.5rem; }

.ce-article-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ce-secondary);
  margin-bottom: 0.6rem;
}

.ce-article-card-title {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.ce-article-card-title a { color: var(--ce-text-dark); }
.ce-article-card-title a:hover { color: var(--ce-primary-light); }

.ce-article-card-excerpt {
  font-size: 0.875rem;
  color: var(--ce-text-light);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.ce-article-card-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ce-secondary);
}
.ce-article-card-read-more:hover { color: var(--ce-primary); }

/* ---- Sidebar ---- */
.ce-sidebar-widget {
  background: var(--ce-white);
  border-radius: var(--ce-radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--ce-border);
  margin-bottom: 1.5rem;
}

.ce-sidebar-widget-title {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ce-light-grey);
}

/* ---- Footer ---- */
.ce-footer-section {
  background: var(--ce-text-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.ce-footer-logo-wrap { margin-bottom: 1.5rem; }

.ce-footer-brand-name {
  font-family: var(--ce-font-display);
  font-size: 1.3rem;
  color: var(--ce-white);
}

.ce-footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
}

.ce-footer-heading {
  font-family: var(--ce-font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--ce-white);
  margin-bottom: 1.25rem;
}

.ce-footer-nav { list-style: none; padding: 0; }
.ce-footer-nav li { margin-bottom: 0.6rem; }
.ce-footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--ce-transition);
}
.ce-footer-nav a:hover { color: var(--ce-secondary); }

.ce-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
}

.ce-footer-contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: var(--ce-radius-sm);
  background: rgba(74,158,202,0.15);
  color: var(--ce-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.ce-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ce-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.ce-footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.ce-footer-legal-links a:hover { color: var(--ce-white); }

.ce-footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Dividers ---- */
.ce-wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.ce-wave-divider svg {
  display: block;
  width: 100%;
}

/* ---- Scroll Progress ---- */
.ce-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--ce-gradient-warm);
  z-index: 9999;
  transition: width 0.1s linear;
  width: 0%;
}

/* ---- Cookie Banner ---- */
.ce-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ce-text-dark);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 1.5rem;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--ce-secondary);
}

.ce-cookie-banner.ce-visible {
  transform: translateY(0);
}

.ce-cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ce-cookie-banner-text {
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
}

.ce-cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ---- Quiz ---- */
.ce-quiz-wrapper {
  background: var(--ce-white);
  border-radius: var(--ce-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--ce-shadow-lg);
  border: 1px solid var(--ce-border);
}

.ce-quiz-header { margin-bottom: 2rem; text-align: center; }
.ce-quiz-title { font-size: 1.4rem; margin-bottom: 0.5rem; }
.ce-quiz-subtitle { font-size: 0.9rem; color: var(--ce-text-light); }

.ce-quiz-progress-bar-wrap {
  height: 6px;
  background: var(--ce-light-grey);
  border-radius: 50px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.ce-quiz-progress-fill {
  height: 100%;
  background: var(--ce-gradient-primary);
  border-radius: 50px;
  transition: width 0.4s ease;
}

.ce-quiz-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ce-text-dark);
  margin-bottom: 1.25rem;
}

.ce-quiz-options { list-style: none; padding: 0; display: grid; gap: 0.75rem; }

.ce-quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid var(--ce-border);
  border-radius: var(--ce-radius-md);
  cursor: pointer;
  transition: all var(--ce-transition);
  font-size: 0.9rem;
  color: var(--ce-text-body);
}

.ce-quiz-option:hover {
  border-color: var(--ce-secondary);
  background: rgba(74,158,202,0.06);
}

.ce-quiz-option.ce-selected {
  border-color: var(--ce-primary);
  background: rgba(26,58,92,0.05);
  color: var(--ce-primary);
  font-weight: 600;
}

.ce-quiz-option-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--ce-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ce-quiz-result {
  text-align: center;
  padding: 1rem 0;
}

.ce-quiz-result-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.ce-quiz-result-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.ce-quiz-result-desc {
  font-size: 0.9rem;
  color: var(--ce-text-light);
  margin-bottom: 1.5rem;
}

/* ---- Pricing Estimator ---- */
.ce-estimator-wrap {
  background: var(--ce-gradient-light);
  border-radius: var(--ce-radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--ce-border);
}

.ce-estimator-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ce-estimator-field { flex: 1; min-width: 200px; }

.ce-estimator-result {
  background: var(--ce-gradient-primary);
  border-radius: var(--ce-radius-lg);
  padding: 1.5rem;
  color: var(--ce-white);
  text-align: center;
}

.ce-estimator-price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.ce-estimator-price {
  font-family: var(--ce-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.ce-estimator-price-note {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.4rem;
}

/* ---- Before/After Slider ---- */
.ce-before-after-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--ce-radius-xl);
  box-shadow: var(--ce-shadow-lg);
  cursor: ew-resize;
  user-select: none;
  max-width: 700px;
  margin: 0 auto;
}

.ce-before-after-images {
  position: relative;
  width: 100%;
  height: 380px;
}

.ce-ba-img-before,
.ce-ba-img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ce-ba-img-before { z-index: 1; clip-path: inset(0 50% 0 0); }

.ce-ba-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--ce-white);
  z-index: 3;
  transform: translateX(-50%);
}

.ce-ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--ce-white);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ce-primary);
  font-size: 1rem;
  z-index: 4;
}

.ce-ba-label {
  position: absolute;
  bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  z-index: 5;
}

.ce-ba-label-before {
  left: 1rem;
  background: rgba(26,58,92,0.85);
  color: var(--ce-white);
}

.ce-ba-label-after {
  right: 1rem;
  background: rgba(42,157,110,0.85);
  color: var(--ce-white);
}

/* ---- Alert / Notice ---- */
.ce-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--ce-radius-md);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ce-alert-info {
  background: rgba(74,158,202,0.1);
  border: 1px solid rgba(74,158,202,0.25);
  color: var(--ce-primary);
}

.ce-alert-success {
  background: rgba(42,157,110,0.1);
  border: 1px solid rgba(42,157,110,0.25);
  color: #1a7d55;
}

/* ---- Back to Top ---- */
.ce-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ce-gradient-primary);
  color: var(--ce-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--ce-shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--ce-transition);
  z-index: 900;
}

.ce-back-to-top.ce-visible {
  opacity: 1;
  transform: translateY(0);
}

.ce-back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--ce-shadow-lg);
}

/* ---- Legal Pages ---- */
.ce-legal-content {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ce-text-body);
}

.ce-legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ce-light-grey);
}

.ce-legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.ce-legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.875rem;
}

.ce-legal-content th,
.ce-legal-content td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--ce-border);
  text-align: left;
}

.ce-legal-content th {
  background: var(--ce-light-grey);
  font-weight: 600;
  color: var(--ce-text-dark);
}

/* ---- Responsive Helpers ---- */
.ce-d-none { display: none !important; }
.ce-d-block { display: block !important; }
.ce-d-flex { display: flex !important; }

@media (max-width: 991.98px) {
  .ce-navbar-nav,
  .ce-navbar-cta { display: none; }
  .ce-navbar-toggle { display: flex; align-items: center; justify-content: center; }
  .ce-mobile-nav { display: block; }
  .ce-py-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}

@media (max-width: 767.98px) {
  .ce-estimator-field { min-width: 100%; }
  .ce-before-after-images { height: 240px; }
  .ce-quiz-wrapper { padding: 1.5rem; }
  .ce-footer-bottom { flex-direction: column; text-align: center; }
  .ce-footer-legal-links { justify-content: center; }
}



    /* ---- Homepage-specific styles ---- */
    .ce-home-hero-editorial {
      min-height: 100vh;
      background: linear-gradient(145deg, #0f2440 0%, #1a3a5c 40%, #2a5298 75%, #4a9eca 100%);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 7rem 0 5rem;
    }

    .ce-home-hero-editorial::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("../images/banner.webp");
      background-size: cover;
      background-repeat: no-repeat;
      opacity: 0.1;
    }

    .ce-hero-content-wrapper {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .ce-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px;
      padding: 0.4rem 1rem 0.4rem 0.4rem;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 1.5rem;
      backdrop-filter: blur(4px);
    }

    .ce-hero-badge-dot {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--ce-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }

    .ce-hero-heading {
      font-family: var(--ce-font-display);
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 800;
      color: var(--ce-white);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }

    .ce-hero-heading span {
      color: var(--ce-accent-light);
    }

    .ce-hero-trust-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 2rem;
    }

    .ce-hero-trust-pill {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.8);
      padding: 0.35rem 0.85rem;
      background: rgba(255,255,255,0.1);
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.15);
    }

    .ce-hero-image-collage {
      position: relative;
    }

    .ce-hero-img-main {
      width: 100%;
      height: 460px;
      object-fit: cover;
      border-radius: 24px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    }

    .ce-hero-img-float {
      position: absolute;
      border-radius: 16px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.3);
      border: 3px solid white;
      overflow: hidden;
    }

    .ce-hero-img-float-1 {
      width: 160px;
      height: 120px;
      bottom: -1.5rem;
      left: -1.5rem;
    }

    .ce-hero-img-float-1 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ce-hero-review-float {
      position: absolute;
      top: -1rem;
      right: -1rem;
      background: var(--ce-white);
      border-radius: 14px;
      padding: 0.9rem 1.2rem;
      box-shadow: 0 12px 32px rgba(0,0,0,0.2);
      width: 200px;
    }

    .ce-hero-review-stars { color: var(--ce-accent); font-size: 0.85rem; margin-bottom: 0.3rem; }
    .ce-hero-review-text { font-size: 0.78rem; color: var(--ce-text-body); line-height: 1.5; }
    .ce-hero-review-author { font-size: 0.72rem; color: var(--ce-text-light); margin-top: 0.4rem; font-weight: 600; }

    .ce-home-stats-strip {
      background: var(--ce-white);
      padding: 2rem 0;
      border-bottom: 1px solid var(--ce-border);
    }

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

    .ce-stat-divider {
      border-right: 1px solid var(--ce-border);
    }

    .ce-stat-divider:last-child { border-right: none; }

    .ce-home-services-section { background: var(--ce-off-white); }

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

    .ce-service-home-card {
      background: var(--ce-white);
      border-radius: var(--ce-radius-xl);
      overflow: hidden;
      box-shadow: var(--ce-shadow-sm);
      border: 1px solid var(--ce-border);
      transition: all var(--ce-transition);
    }

    .ce-service-home-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--ce-shadow-lg);
    }

    .ce-service-home-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .ce-service-home-card-body { padding: 1.75rem; }

    .ce-service-home-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .ce-how-it-works-section { background: var(--ce-white); }

    .ce-hiw-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      position: relative;
    }

    .ce-hiw-step {
      text-align: center;
      padding: 2rem 1rem;
    }

    .ce-hiw-icon-wrap {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin: 0 auto 1.25rem;
      position: relative;
    }

    .ce-hiw-number {
      position: absolute;
      top: -4px;
      right: -4px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--ce-primary);
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ce-hiw-title { font-size: 1rem; margin-bottom: 0.5rem; }
    .ce-hiw-desc { font-size: 0.875rem; color: var(--ce-text-light); line-height: 1.65; }

    .ce-trust-section { background: var(--ce-gradient-light); }

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

    .ce-testimonials-section { background: var(--ce-off-white); }

    .ce-testimonials-slider-wrap {
      position: relative;
      overflow: hidden;
    }

    .ce-testimonials-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ce-testimonial-slide-item {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0 0.5rem;
    }

    .ce-testimonials-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .ce-testimonials-prev,
    .ce-testimonials-next {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--ce-white);
      border: 1.5px solid var(--ce-border);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--ce-primary);
      transition: all var(--ce-transition);
    }

    .ce-testimonials-prev:hover,
    .ce-testimonials-next:hover {
      background: var(--ce-primary);
      border-color: var(--ce-primary);
      color: white;
    }

    .ce-testimonials-dots {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .ce-testimonial-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--ce-mid-grey);
      border: none;
      cursor: pointer;
      transition: all var(--ce-transition);
      padding: 0;
    }

    .ce-testimonial-dot.ce-active {
      width: 24px;
      border-radius: 4px;
      background: var(--ce-primary);
    }

    .ce-team-section { background: var(--ce-white); }

    .ce-team-slider-wrapper {
      position: relative;
      overflow: hidden;
    }

    .ce-team-slider-track {
      display: flex;
      gap: 1.5rem;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ce-team-slider-track .ce-team-card {
      flex: 0 0 calc(33.333% - 1rem);
    }

    .ce-team-slider-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .ce-team-slider-prev,
    .ce-team-slider-next {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--ce-white);
      border: 1.5px solid var(--ce-border);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--ce-primary);
      transition: all var(--ce-transition);
      box-shadow: var(--ce-shadow-sm);
    }

    .ce-team-slider-prev:hover,
    .ce-team-slider-next:hover {
      background: var(--ce-primary);
      border-color: var(--ce-primary);
      color: white;
    }

    .ce-quiz-section { background: var(--ce-off-white); }

    .ce-quiz-tabs {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .ce-quiz-tab-btn {
      padding: 0.55rem 1.25rem;
      border-radius: 50px;
      border: 1.5px solid var(--ce-border);
      background: var(--ce-white);
      font-family: var(--ce-font-body);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--ce-text-body);
      cursor: pointer;
      transition: all var(--ce-transition);
    }

    .ce-quiz-tab-btn.ce-active,
    .ce-quiz-tab-btn:hover {
      background: var(--ce-primary);
      border-color: var(--ce-primary);
      color: white;
    }

    .ce-quiz-panel { display: none; }
    .ce-quiz-panel.ce-active { display: block; }

    .ce-cta-home-section {
      background: var(--ce-gradient-primary);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .ce-cta-home-section::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      top: -200px;
      right: -100px;
    }

    .ce-selector-option {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.6rem;
      padding: 1.5rem 1rem;
      border: 2px solid var(--ce-border);
      border-radius: var(--ce-radius-lg);
      cursor: pointer;
      text-align: center;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--ce-text-body);
      background: var(--ce-white);
      transition: all var(--ce-transition);
    }

    .ce-selector-option:hover {
      border-color: var(--ce-secondary);
      transform: translateY(-3px);
      box-shadow: var(--ce-shadow-md);
    }

    .ce-selector-option.ce-selected {
      border-color: var(--ce-primary);
      background: rgba(26,58,92,0.04);
      color: var(--ce-primary);
    }

    .ce-selector-option-icon { font-size: 2rem; }

    .ce-selector-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    @media (max-width: 991px) {
      .ce-hero-content-wrapper { grid-template-columns: 1fr; }
      .ce-hero-image-collage { display: none; }
      .ce-stats-grid { grid-template-columns: repeat(2, 1fr); }
      .ce-services-grid-home { grid-template-columns: repeat(2, 1fr); }
      .ce-hiw-grid { grid-template-columns: repeat(2, 1fr); }
      .ce-trust-grid { grid-template-columns: repeat(2, 1fr); }
      .ce-selector-grid { grid-template-columns: repeat(2, 1fr); }
      .ce-team-slider-track .ce-team-card { flex: 0 0 calc(50% - 0.75rem); }
    }

    @media (max-width: 575px) {
      .ce-stats-grid { grid-template-columns: repeat(2, 1fr); }
      .ce-services-grid-home { grid-template-columns: 1fr; }
      .ce-hiw-grid { grid-template-columns: 1fr; }
      .ce-trust-grid { grid-template-columns: 1fr; }
      .ce-selector-grid { grid-template-columns: repeat(2, 1fr); }
      .ce-team-slider-track .ce-team-card { flex: 0 0 100%; }
    }
  

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

html{
  overflow-x: hidden;
}

.ce-svc-detail-grid{
  padding: 60px 0;
}



.ce-contact-form-wrapper {
  background: var(--ce-card-bg);
  border: 1px solid var(--ce-card-border);
  border-radius: var(--ce-radius);
  padding: 3rem;
}

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

.ce-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ce-text-muted);
  margin-bottom: 0.5rem;
}

.ce-form-input, .ce-form-select, .ce-form-textarea {
  width: 100%;
  padding: 13px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--ce-text);
  font-size: 0.95rem;
  font-family: 'Rajdhani', sans-serif;
  transition: var(--ce-transition);
  outline: none;
}

.ce-form-input:focus, .ce-form-select:focus, .ce-form-textarea:focus {
  border-color: var(--ce-accent2);
  background: rgba(0,212,255,0.03);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.ce-form-input.ce-error, .ce-form-textarea.ce-error {
  border-color: var(--ce-accent);
}

.ce-form-select {
  appearance: none;
  cursor: pointer;
}

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

.ce-form-error-msg {
  color: var(--ce-accent);
  font-size: 0.78rem;
  margin-top: 5px;
  display: none;
}

.ce-form-error-msg.ce-show {
  display: block;
}

.ce-captcha-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}

.ce-captcha-check {
  width: 22px;
  height: 22px;
  accent-color: var(--ce-accent);
  cursor: pointer;
}

.ce-captcha-label {
  font-size: 0.9rem;
  color: var(--ce-text-muted);
  user-select: none;
  cursor: pointer;
}


.ce-legal-layout{
  padding-top: 60px;
  padding-bottom: 60px;
}