/* MB Cleaning Squad — ce-style.css */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:wght@700&display=swap');

:root {
  --ce-primary: #1a3a5c;
  --ce-primary-light: #2a5a8c;
  --ce-accent: #4db8b8;
  --ce-accent-dark: #2e9090;
  --ce-warm: #f5f0e8;
  --ce-warm-dark: #e8e0d0;
  --ce-white: #ffffff;
  --ce-text: #2c3e50;
  --ce-text-muted: #6c757d;
  --ce-text-light: #8e9bb0;
  --ce-border: #dce4f0;
  --ce-shadow: 0 4px 24px rgba(26,58,92,0.10);
  --ce-shadow-lg: 0 12px 48px rgba(26,58,92,0.15);
  --ce-radius: 12px;
  --ce-radius-lg: 20px;
  --ce-transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --ce-font-display: 'DM Serif Display', Georgia, serif;
  --ce-font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::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);
  background: var(--ce-white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--ce-font-display); line-height: 1.2; color: var(--ce-primary); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--ce-text); }
a { color: var(--ce-primary); text-decoration: none; transition: var(--ce-transition); }
a:hover { color: var(--ce-accent); }

/* ===== LAYOUT ===== */
.ce-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ce-section { padding: 80px 0; }
.ce-section-sm { padding: 48px 0; }
.ce-section-lg { padding: 110px 0; }

.ce-row { display: flex; flex-wrap: wrap; gap: 24px; }
.ce-col-6 { flex: 1 1 calc(50% - 12px); }
.ce-col-4 { flex: 1 1 calc(33.333% - 16px); }
.ce-col-3 { flex: 1 1 calc(25% - 18px); }

/* ===== BUTTONS ===== */
.ce-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-family: var(--ce-font-body);
  font-size: 0.95rem; font-weight: 500; cursor: pointer;
  border: 2px solid transparent; transition: var(--ce-transition);
  text-decoration: none; line-height: 1;
}
.ce-btn-primary {
  background: var(--ce-primary); color: var(--ce-white);
  border-color: var(--ce-primary);
}
.ce-btn-primary:hover {
  background: var(--ce-primary-light); border-color: var(--ce-primary-light);
  color: var(--ce-white); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,92,0.25);
}
.ce-btn-accent {
  background: var(--ce-accent); color: var(--ce-white);
  border-color: var(--ce-accent);
}
.ce-btn-accent:hover {
  background: var(--ce-accent-dark); border-color: var(--ce-accent-dark);
  color: var(--ce-white); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(77,184,184,0.35);
}
.ce-btn-outline {
  background: transparent; color: var(--ce-primary);
  border-color: var(--ce-primary);
}
.ce-btn-outline:hover {
  background: var(--ce-primary); color: var(--ce-white);
  transform: translateY(-2px);
}
.ce-btn-outline-white {
  background: transparent; color: var(--ce-white);
  border-color: rgba(255,255,255,0.6);
}
.ce-btn-outline-white:hover {
  background: var(--ce-white); color: var(--ce-primary);
  transform: translateY(-2px);
}
.ce-btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ===== HEADER / NAV ===== */
.ce-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ce-border);
  transition: var(--ce-transition);
}
.ce-header.ce-header-scrolled {
  box-shadow: 0 4px 24px rgba(26,58,92,0.12);
}
.ce-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px; max-width: 1200px; margin: 0 auto;
}
.ce-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ce-font-display); font-size: 1.4rem;
  color: var(--ce-primary); text-decoration: none;
}
.ce-logo-icon {
  width: 38px; height: 38px; background: var(--ce-accent);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
}
.ce-nav { display: flex; align-items: center; gap: 4px; }
.ce-nav-link {
  padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: var(--ce-text); transition: var(--ce-transition);
}
.ce-nav-link:hover, .ce-nav-link.active {
  background: var(--ce-warm); color: var(--ce-primary);
}
.ce-nav-cta {
  margin-left: 12px; padding: 10px 22px; background: var(--ce-primary);
  color: white; border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  transition: var(--ce-transition);
}
.ce-nav-cta:hover { background: var(--ce-accent); color: white; transform: translateY(-1px); }

.ce-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.ce-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--ce-primary);
  border-radius: 2px; transition: var(--ce-transition);
}

.ce-mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--ce-white); border-bottom: 1px solid var(--ce-border);
  padding: 16px 24px; z-index: 999;
  box-shadow: 0 12px 32px rgba(26,58,92,0.1);
}
.ce-mobile-menu.active { display: block; }
.ce-mobile-menu .ce-nav-link {
  display: block; padding: 12px 16px; border-radius: 8px; margin-bottom: 4px;
}

/* ===== HERO ===== */
.ce-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d2540 0%, #1a3a5c 45%, #1e4f7a 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: 72px;
}
.ce-hero-bg-shapes {
  position: absolute; inset: 0; pointer-events: none;
}
.ce-hero-shape-1 {
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(77,184,184,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.ce-hero-shape-2 {
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(77,184,184,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.ce-hero-shape-3 {
  position: absolute; top: 20%; right: 15%;
  width: 2px; height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(77,184,184,0.4), transparent);
}

.ce-hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.ce-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(77,184,184,0.15); border: 1px solid rgba(77,184,184,0.3);
  color: var(--ce-accent); padding: 6px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.ce-hero-title {
  font-family: var(--ce-font-display); font-size: clamp(2.4rem, 5vw, 4rem);
  color: white; line-height: 1.1; margin-bottom: 20px;
}
.ce-hero-title span { color: var(--ce-accent); display: block; }
.ce-hero-subtitle {
  color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 480px;
  margin-bottom: 36px; line-height: 1.7;
}
.ce-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.ce-hero-stats {
  display: flex; gap: 32px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.ce-hero-stat { text-align: center; }
.ce-hero-stat-num {
  font-family: var(--ce-font-display); font-size: 2rem;
  color: var(--ce-accent); display: block;
}
.ce-hero-stat-label { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

.ce-hero-image-block { position: relative; }
.ce-hero-img-main {
  width: 100%; border-radius: var(--ce-radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  object-fit: cover; height: 480px;
}
.ce-hero-img-float {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--ce-white); border-radius: var(--ce-radius);
  padding: 16px 20px; box-shadow: var(--ce-shadow-lg);
  display: flex; align-items: center; gap: 12px;
  max-width: 220px;
}
.ce-hero-float-icon {
  width: 44px; height: 44px; background: #e8f7f7;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--ce-accent); font-size: 1.2rem; flex-shrink: 0;
}
.ce-hero-float-text strong { display: block; font-size: 0.9rem; color: var(--ce-primary); }
.ce-hero-float-text span { font-size: 0.78rem; color: var(--ce-text-muted); }

/* ===== SECTION HEADERS ===== */
.ce-section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.ce-section-tag {
  display: inline-block; background: #e8f7f7; color: var(--ce-accent);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.ce-section-header h2 { margin-bottom: 16px; }
.ce-section-header p { color: var(--ce-text-muted); font-size: 1.05rem; }

.ce-section-header-left { text-align: left; max-width: 100%; margin-bottom: 40px; }
.ce-section-header-left h2 { margin-bottom: 12px; }
.ce-section-header-left p { color: var(--ce-text-muted); max-width: 560px; }

/* ===== SERVICE CARDS ===== */
.ce-services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.ce-service-card {
  background: var(--ce-white); border-radius: var(--ce-radius-lg);
  padding: 36px 28px; border: 1px solid var(--ce-border);
  transition: var(--ce-transition); position: relative; overflow: hidden;
}
.ce-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ce-accent), var(--ce-primary-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.ce-service-card:hover {
  border-color: var(--ce-accent); box-shadow: var(--ce-shadow-lg);
  transform: translateY(-6px);
}
.ce-service-card:hover::before { transform: scaleX(1); }
.ce-service-icon {
  width: 60px; height: 60px; background: #e8f7f7; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--ce-accent); margin-bottom: 20px;
  transition: var(--ce-transition);
}
.ce-service-card:hover .ce-service-icon { background: var(--ce-accent); color: white; }
.ce-service-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.ce-service-card p { color: var(--ce-text-muted); font-size: 0.92rem; margin-bottom: 20px; }
.ce-service-link {
  color: var(--ce-primary); font-size: 0.88rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.ce-service-link:hover { color: var(--ce-accent); gap: 10px; }

/* ===== PROCESS ===== */
.ce-process-steps { display: flex; flex-direction: column; gap: 0; }
.ce-process-step {
  display: flex; gap: 28px; padding: 32px 0;
  border-bottom: 1px solid var(--ce-border); align-items: flex-start;
}
.ce-process-step:last-child { border-bottom: none; }
.ce-step-num {
  font-family: var(--ce-font-display); font-size: 3.5rem; color: var(--ce-border);
  line-height: 1; min-width: 70px; transition: var(--ce-transition);
}
.ce-process-step:hover .ce-step-num { color: var(--ce-accent); }
.ce-step-content h4 { margin-bottom: 8px; }
.ce-step-content p { color: var(--ce-text-muted); margin: 0; font-size: 0.95rem; }

/* ===== TEAM ===== */
.ce-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.ce-team-card {
  background: var(--ce-white); border-radius: var(--ce-radius-lg);
  overflow: hidden; border: 1px solid var(--ce-border);
  transition: var(--ce-transition); text-align: center;
}
.ce-team-card:hover { box-shadow: var(--ce-shadow-lg); transform: translateY(-4px); }
.ce-team-img { width: 100%; height: 240px; object-fit: cover; object-position: top; }
.ce-team-info { padding: 20px; }
.ce-team-name { font-size: 1.1rem; margin-bottom: 4px; }
.ce-team-role { color: var(--ce-accent); font-size: 0.85rem; font-weight: 500; margin-bottom: 10px; }
.ce-team-bio { color: var(--ce-text-muted); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* ===== TESTIMONIALS ===== */
.ce-testimonials-wrapper { position: relative; overflow: hidden; }
.ce-testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.ce-testimonial-slide { flex: 0 0 100%; padding: 0 12px; }
.ce-testimonial-card {
  background: var(--ce-warm); border-radius: var(--ce-radius-lg);
  padding: 40px; max-width: 780px; margin: 0 auto;
  position: relative;
}
.ce-testimonial-quote {
  font-family: var(--ce-font-display); font-size: 4rem; color: var(--ce-accent);
  line-height: 0.5; margin-bottom: 16px; display: block;
}
.ce-testimonial-text {
  font-size: 1.05rem; color: var(--ce-text); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.ce-testimonial-author { display: flex; align-items: center; gap: 14px; }
.ce-testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--ce-accent);
}
.ce-testimonial-name { font-weight: 600; color: var(--ce-primary); font-size: 0.95rem; }
.ce-testimonial-location { color: var(--ce-text-muted); font-size: 0.82rem; }
.ce-testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-top: 2px; }

.ce-testimonials-controls {
  display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 32px;
}
.ce-testimonial-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--ce-border);
  background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--ce-primary); transition: var(--ce-transition);
}
.ce-testimonial-btn:hover { border-color: var(--ce-accent); color: var(--ce-accent); }
.ce-testimonial-dots { display: flex; gap: 8px; }
.ce-testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ce-border);
  cursor: pointer; transition: var(--ce-transition);
}
.ce-testimonial-dot.active { background: var(--ce-accent); width: 24px; border-radius: 4px; }

/* ===== FAQ ===== */
.ce-faq-list { max-width: 760px; margin: 0 auto; }
.ce-faq-item {
  border-bottom: 1px solid var(--ce-border); overflow: hidden;
}
.ce-faq-question {
  width: 100%; text-align: left; padding: 22px 0;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--ce-font-body); font-size: 1rem; font-weight: 500;
  color: var(--ce-primary); transition: var(--ce-transition);
}
.ce-faq-question:hover { color: var(--ce-accent); }
.ce-faq-icon {
  width: 28px; height: 28px; border: 2px solid var(--ce-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.75rem; transition: var(--ce-transition);
}
.ce-faq-item.open .ce-faq-icon {
  background: var(--ce-accent); border-color: var(--ce-accent); color: white;
  transform: rotate(45deg);
}
.ce-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.ce-faq-answer-inner { padding-bottom: 20px; color: var(--ce-text-muted); font-size: 0.95rem; line-height: 1.75; }

/* ===== COST ESTIMATOR ===== */
.ce-estimator {
  background: var(--ce-primary); border-radius: var(--ce-radius-lg);
  padding: 48px; color: white;
}
.ce-estimator h3 { color: white; margin-bottom: 8px; }
.ce-estimator-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.ce-estimator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.ce-estimator-field label {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7);
  margin-bottom: 8px; font-weight: 500;
}
.ce-estimator-field select, .ce-estimator-field input {
  width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
  color: white; font-family: var(--ce-font-body); font-size: 0.95rem;
  transition: var(--ce-transition);
  -webkit-appearance: none;
}
.ce-estimator-field select option { background: var(--ce-primary); }
.ce-estimator-field select:focus, .ce-estimator-field input:focus {
  outline: none; border-color: var(--ce-accent); background: rgba(255,255,255,0.15);
}
.ce-estimator-result {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 24px; text-align: center;
}
.ce-estimator-price {
  font-family: var(--ce-font-display); font-size: 3rem; color: var(--ce-accent);
  display: block; margin-bottom: 6px;
}
.ce-estimator-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ===== BEFORE/AFTER SLIDER ===== */
.ce-before-after { position: relative; border-radius: var(--ce-radius-lg); overflow: hidden; cursor: ew-resize; }
.ce-ba-before, .ce-ba-after { position: absolute; inset: 0; }
.ce-ba-before img, .ce-ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ce-ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0s; }
.ce-ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: white; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
}
.ce-ba-handle-btn {
  width: 44px; height: 44px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); color: var(--ce-primary);
  font-size: 1rem;
}
.ce-ba-label {
  position: absolute; bottom: 16px; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 12px;
  background: rgba(0,0,0,0.5); color: white; border-radius: 50px;
}
.ce-ba-label-before { left: 16px; }
.ce-ba-label-after { right: 16px; }

/* ===== QUIZ ===== */
.ce-quiz-container {
  background: var(--ce-warm); border-radius: var(--ce-radius-lg); padding: 40px;
  max-width: 600px; margin: 0 auto;
}
.ce-quiz-title { margin-bottom: 8px; font-size: 1.4rem; }
.ce-quiz-subtitle { color: var(--ce-text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.ce-quiz-progress { margin-bottom: 28px; }
.ce-quiz-progress-bar {
  height: 4px; background: var(--ce-border); border-radius: 2px; margin-bottom: 8px; overflow: hidden;
}
.ce-quiz-progress-fill {
  height: 100%; background: var(--ce-accent); border-radius: 2px; transition: width 0.3s ease;
}
.ce-quiz-progress-text { font-size: 0.8rem; color: var(--ce-text-muted); }
.ce-quiz-question { font-weight: 500; color: var(--ce-primary); margin-bottom: 20px; }
.ce-quiz-options { display: flex; flex-direction: column; gap: 12px; }
.ce-quiz-option {
  padding: 14px 18px; border: 2px solid var(--ce-border); border-radius: 10px;
  cursor: pointer; background: white; transition: var(--ce-transition);
  font-family: var(--ce-font-body); font-size: 0.95rem; text-align: left;
  color: var(--ce-text);
}
.ce-quiz-option:hover { border-color: var(--ce-accent); background: #f0fbfb; }
.ce-quiz-option.selected { border-color: var(--ce-accent); background: #e8f7f7; color: var(--ce-primary); }
.ce-quiz-nav { display: flex; gap: 12px; margin-top: 24px; }
.ce-quiz-result {
  text-align: center; padding: 20px 0;
}
.ce-quiz-result-icon { font-size: 3rem; margin-bottom: 16px; }
.ce-quiz-result h4 { margin-bottom: 12px; color: var(--ce-accent); }
.ce-quiz-result p { color: var(--ce-text-muted); font-size: 0.95rem; }

/* ===== CHECKLIST BUILDER ===== */
.ce-checklist-builder { background: var(--ce-white); border: 1px solid var(--ce-border); border-radius: var(--ce-radius-lg); overflow: hidden; }
.ce-checklist-header { background: var(--ce-primary); padding: 24px 28px; color: white; }
.ce-checklist-header h4 { color: white; margin-bottom: 4px; }
.ce-checklist-header p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.88rem; }
.ce-checklist-body { padding: 24px 28px; }
.ce-checklist-group { margin-bottom: 20px; }
.ce-checklist-group-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ce-text-muted); margin-bottom: 12px; font-weight: 600; }
.ce-checklist-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--ce-border); cursor: pointer;
}
.ce-checklist-item:last-child { border-bottom: none; }
.ce-checklist-label { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.ce-checklist-check {
  width: 20px; height: 20px; border: 2px solid var(--ce-border);
  border-radius: 5px; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; transition: var(--ce-transition); flex-shrink: 0;
}
.ce-checklist-item.checked .ce-checklist-check {
  background: var(--ce-accent); border-color: var(--ce-accent); color: white;
}
.ce-checklist-price { font-size: 0.82rem; color: var(--ce-text-muted); }
.ce-checklist-footer {
  background: var(--ce-warm); padding: 20px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.ce-checklist-total { font-weight: 600; color: var(--ce-primary); }
.ce-checklist-total span { font-family: var(--ce-font-display); font-size: 1.4rem; color: var(--ce-accent); }

/* ===== STATS / COUNTERS ===== */
.ce-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ce-stat-card {
  text-align: center; padding: 36px 20px;
  background: var(--ce-white); border-radius: var(--ce-radius-lg);
  border: 1px solid var(--ce-border);
}
.ce-stat-icon { font-size: 2rem; color: var(--ce-accent); margin-bottom: 12px; }
.ce-stat-num {
  font-family: var(--ce-font-display); font-size: 2.6rem;
  color: var(--ce-primary); display: block; line-height: 1;
}
.ce-stat-suffix { color: var(--ce-accent); }
.ce-stat-label { color: var(--ce-text-muted); font-size: 0.88rem; margin-top: 6px; }

/* ===== MAP / CONTACT ===== */
.ce-map-embed { border-radius: var(--ce-radius-lg); overflow: hidden; height: 380px; border: 1px solid var(--ce-border); }
.ce-map-embed iframe { width: 100%; height: 100%; border: none; }
.ce-contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin: 0; }
.ce-contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.ce-contact-info-icon {
  width: 44px; height: 44px; background: #e8f7f7; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--ce-accent);
  font-size: 1rem; flex-shrink: 0;
}
.ce-contact-info-text strong { display: block; font-size: 0.85rem; color: var(--ce-text-muted); margin-bottom: 2px; }
.ce-contact-info-text a, .ce-contact-info-text span { color: var(--ce-primary); font-weight: 500; }

/* ===== FORM ===== */
.ce-form { display: flex; flex-direction: column; gap: 18px; }
.ce-form-group { display: flex; flex-direction: column; gap: 6px; }
.ce-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ce-form-group label { font-size: 0.85rem; font-weight: 500; color: var(--ce-text); }
.ce-form-group input, .ce-form-group select, .ce-form-group textarea {
  padding: 13px 16px; border: 1px solid var(--ce-border); border-radius: 10px;
  font-family: var(--ce-font-body); font-size: 0.95rem; color: var(--ce-text);
  transition: var(--ce-transition); background: white;
}
.ce-form-group input:focus, .ce-form-group select:focus, .ce-form-group textarea:focus {
  outline: none; border-color: var(--ce-accent);
  box-shadow: 0 0 0 3px rgba(77,184,184,0.12);
}
.ce-form-group textarea { resize: vertical; min-height: 130px; }
.ce-form-error { font-size: 0.78rem; color: #e74c3c; display: none; }
.ce-form-group.error input, .ce-form-group.error select, .ce-form-group.error textarea {
  border-color: #e74c3c;
}
.ce-form-group.error .ce-form-error { display: block; }
.ce-captcha-box {
  background: var(--ce-warm); border-radius: 10px; padding: 16px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.ce-captcha-question { font-weight: 500; color: var(--ce-primary); font-size: 0.95rem; }
.ce-captcha-input {
  width: 80px; padding: 10px 14px; border: 1px solid var(--ce-border);
  border-radius: 8px; font-family: var(--ce-font-body); font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.ce-cta-section {
  background: linear-gradient(135deg, var(--ce-accent) 0%, var(--ce-primary-light) 100%);
  padding: 80px 0; text-align: center; color: white;
}
.ce-cta-section h2 { color: white; margin-bottom: 16px; }
.ce-cta-section p { color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 auto 36px; }

/* ===== TRUST BANNER ===== */
.ce-trust-bar {
  background: var(--ce-warm); padding: 28px 0; border-top: 1px solid var(--ce-warm-dark);
  border-bottom: 1px solid var(--ce-warm-dark);
}
.ce-trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.ce-trust-item { display: flex; align-items: center; gap: 10px; color: var(--ce-text-muted); font-size: 0.88rem; }
.ce-trust-item i { color: var(--ce-accent); font-size: 1rem; }

/* ===== FOOTER ===== */
.ce-footer { background: #0d2540; color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.ce-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.ce-footer-brand .ce-logo { color: white; margin-bottom: 16px; display: flex; }
.ce-footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.ce-footer-heading { color: white; font-family: var(--ce-font-body); font-weight: 600; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.ce-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ce-footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--ce-transition); }
.ce-footer-links a:hover { color: var(--ce-accent); padding-left: 4px; }
.ce-footer-bottom {
  margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 12px;
}
.ce-footer-bottom-links { display: flex; gap: 20px; }
.ce-footer-bottom-links a { color: rgba(255,255,255,0.5); }
.ce-footer-bottom-links a:hover { color: var(--ce-accent); }

/* ===== COOKIE BANNER ===== */
.ce-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: white; border-top: 1px solid var(--ce-border);
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
}
.ce-cookie-text { font-size: 0.88rem; color: var(--ce-text-muted); max-width: 680px; }
.ce-cookie-text a { color: var(--ce-primary); text-decoration: underline; }
.ce-cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.ce-cookie-accept {
  background: var(--ce-accent); color: white; border: none;
  padding: 10px 22px; border-radius: 50px; cursor: pointer;
  font-family: var(--ce-font-body); font-size: 0.88rem; font-weight: 500;
  transition: var(--ce-transition);
}
.ce-cookie-accept:hover { background: var(--ce-accent-dark); }
.ce-cookie-decline {
  background: transparent; color: var(--ce-text-muted); border: 1px solid var(--ce-border);
  padding: 10px 22px; border-radius: 50px; cursor: pointer;
  font-family: var(--ce-font-body); font-size: 0.88rem;
  transition: var(--ce-transition);
}
.ce-cookie-decline:hover { border-color: var(--ce-text-muted); }

/* ===== ARTICLE CARDS ===== */
.ce-article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.ce-article-card { border-radius: var(--ce-radius-lg); overflow: hidden; border: 1px solid var(--ce-border); transition: var(--ce-transition); background: white; }
.ce-article-card:hover { box-shadow: var(--ce-shadow-lg); transform: translateY(-4px); }
.ce-article-img { width: 100%; height: 200px; object-fit: cover; }
.ce-article-body { padding: 24px; }
.ce-article-tag { display: inline-block; background: #e8f7f7; color: var(--ce-accent); font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.ce-article-title { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; }
.ce-article-excerpt { color: var(--ce-text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 16px; }
.ce-article-meta { display: flex; align-items: center; justify-content: space-between; }
.ce-article-date { color: var(--ce-text-light); font-size: 0.78rem; }
.ce-article-readmore { font-size: 0.82rem; color: var(--ce-primary); font-weight: 500; }

/* ===== BREADCRUMB ===== */
.ce-breadcrumb { background: var(--ce-warm); padding: 14px 0; border-bottom: 1px solid var(--ce-warm-dark); }
.ce-breadcrumb-list { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 0.85rem; }
.ce-breadcrumb-list a { color: var(--ce-text-muted); }
.ce-breadcrumb-list li:last-child { color: var(--ce-primary); font-weight: 500; }
.ce-breadcrumb-list .separator { color: var(--ce-text-light); }

/* ===== PAGE HERO (inner pages) ===== */
.ce-page-hero {
  background: linear-gradient(135deg, var(--ce-primary) 0%, var(--ce-primary-light) 100%);
  padding: 80px 0 64px; margin-top: 72px; text-align: center; color: white;
}
.ce-page-hero h1 { color: white; margin-bottom: 14px; }
.ce-page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===== LEGAL PAGES ===== */
.ce-legal-content {
  max-width: 800px; margin: 0 auto; padding: 64px 24px;
}
.ce-legal-content h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 14px; }
.ce-legal-content h3 { font-size: 1.15rem; margin-top: 28px; margin-bottom: 10px; }
.ce-legal-content p, .ce-legal-content li { color: var(--ce-text-muted); line-height: 1.8; margin-bottom: 12px; }
.ce-legal-content ul { padding-left: 20px; }
.ce-legal-content li { margin-bottom: 6px; }
.ce-legal-last-updated { font-size: 0.82rem; color: var(--ce-text-light); margin-bottom: 40px; }

/* ===== ABOUT TIMELINE ===== */
.ce-timeline { position: relative; padding-left: 32px; }
.ce-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--ce-border); }
.ce-timeline-item { position: relative; padding: 0 0 36px 28px; }
.ce-timeline-item::before {
  content: ''; position: absolute; left: -6px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ce-accent); border: 3px solid white;
  box-shadow: 0 0 0 2px var(--ce-accent);
}
.ce-timeline-year { font-size: 0.82rem; color: var(--ce-accent); font-weight: 600; margin-bottom: 6px; }
.ce-timeline-event h5 { margin-bottom: 6px; }
.ce-timeline-event p { color: var(--ce-text-muted); font-size: 0.9rem; margin: 0; }

/* ===== SERVICES DETAIL ===== */
.ce-service-detail-card {
  background: white; border: 1px solid var(--ce-border); border-radius: var(--ce-radius-lg);
  overflow: hidden; margin-bottom: 32px;
}
.ce-service-detail-img { width: 100%; height: 300px; object-fit: cover; }
.ce-service-detail-body { padding: 36px; }
.ce-service-includes { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 20px 0; }
.ce-service-includes li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--ce-text-muted); }
.ce-service-includes li i { color: var(--ce-accent); }

/* ===== THANK YOU ===== */
.ce-thankyou-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; background: var(--ce-warm); }
.ce-thankyou-card { background: white; border-radius: var(--ce-radius-lg); padding: 64px 48px; max-width: 540px; box-shadow: var(--ce-shadow-lg); }
.ce-thankyou-icon { font-size: 4rem; color: var(--ce-accent); margin-bottom: 24px; }
.ce-thankyou-card h1 { font-size: 2rem; margin-bottom: 14px; }
.ce-thankyou-card p { color: var(--ce-text-muted); }

/* ===== UTILITY ===== */
.ce-text-center { text-align: center; }
.ce-text-muted { color: var(--ce-text-muted); }
.ce-bg-warm { background: var(--ce-warm); }
.ce-mt-8 { margin-top: 8px; }
.ce-mt-16 { margin-top: 16px; }
.ce-mt-24 { margin-top: 24px; }
.ce-mt-32 { margin-top: 32px; }
.ce-mt-48 { margin-top: 48px; }
.ce-mb-0 { margin-bottom: 0; }
.ce-divider { height: 1px; background: var(--ce-border); margin: 48px 0; }

/* ===== HIGHLIGHT BOX ===== */
.ce-highlight-box {
  background: linear-gradient(135deg, #e8f7f7, #f0f8ff);
  border-left: 4px solid var(--ce-accent); border-radius: 0 12px 12px 0;
  padding: 20px 24px;
}
.ce-highlight-box p { margin: 0; color: var(--ce-primary); font-size: 0.95rem; }

/* ===== ARTICLE CONTENT ===== */
.ce-article-content { max-width: 800px; margin: 0 auto; }
.ce-article-content h2 { font-size: 1.6rem; margin-top: 40px; margin-bottom: 16px; }
.ce-article-content h3 { font-size: 1.25rem; margin-top: 28px; margin-bottom: 12px; }
.ce-article-content p { margin-bottom: 1.2rem; color: var(--ce-text); line-height: 1.8; }
.ce-article-content ul { padding-left: 20px; margin-bottom: 1.2rem; }
.ce-article-content li { margin-bottom: 8px; line-height: 1.7; color: var(--ce-text); }
.ce-article-content img { width: 100%; border-radius: var(--ce-radius); margin: 28px 0; }
.ce-article-header { padding: 80px 0 48px; background: linear-gradient(135deg, var(--ce-primary), var(--ce-primary-light)); color: white; margin-top: 72px; }
.ce-article-header h1 { color: white; }
.ce-article-header .ce-article-meta { color: rgba(255,255,255,0.7); margin-top: 16px; font-size: 0.88rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .ce-hero-content { grid-template-columns: 1fr; }
  .ce-hero-image-block { display: none; }
  .ce-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ce-footer-grid { grid-template-columns: 1fr 1fr; }
  .ce-estimator-grid { grid-template-columns: 1fr; }
  .ce-service-includes { grid-template-columns: 1fr; }
  .ce-col-6 { flex: 1 1 100%; }
}
@media (max-width: 768px) {
  .ce-nav { display: none; }
  .ce-hamburger { display: flex; }
  .ce-hero-stats { gap: 20px; }
  .ce-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ce-footer-grid { grid-template-columns: 1fr; }
  .ce-form-row { grid-template-columns: 1fr; }
  .ce-trust-items { gap: 24px; }
  .ce-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ce-section { padding: 60px 0; }
  .ce-col-4 { flex: 1 1 100%; }
  .ce-col-3 { flex: 1 1 calc(50% - 12px); }
}
@media (max-width: 480px) {
  .ce-hero-actions { flex-direction: column; }
  .ce-stats-grid { grid-template-columns: 1fr 1fr; }
  .ce-team-grid { grid-template-columns: 1fr; }
  .ce-col-3 { flex: 1 1 100%; }
  .ce-checklist-builder { margin: 0 -24px; border-radius: 0; }
  .ce-cookie-banner { flex-direction: column; }
}

/* ===== LEGAL PAGES ===== */
.ce-legal-section { padding: 60px 0 80px; }
.ce-legal-body { max-width: 860px; margin: 0 auto; }
.ce-legal-intro { background: var(--ce-warm); border-radius: var(--ce-radius); padding: 28px 32px; margin-bottom: 40px; }
.ce-legal-intro p { margin: 0 0 12px; line-height: 1.8; }
.ce-legal-intro p:last-child { margin: 0; }
.ce-legal-block { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid #e8ecf0; }
.ce-legal-block:last-child { border-bottom: none; }
.ce-legal-block h2 { font-size: 1.4rem; color: var(--ce-primary); margin-bottom: 16px; }
.ce-legal-block h3 { font-size: 1.1rem; color: var(--ce-primary); margin: 20px 0 10px; }
.ce-legal-block p { line-height: 1.8; margin-bottom: 14px; color: var(--ce-text); }
.ce-legal-block ul { padding-left: 20px; margin-bottom: 14px; }
.ce-legal-block li { margin-bottom: 8px; line-height: 1.7; color: var(--ce-text); }
.ce-legal-block a { color: var(--ce-accent); }
.ce-legal-block a:hover { text-decoration: underline; }
.ce-legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 20px; font-size: 0.92rem; }
.ce-legal-table th { background: var(--ce-primary); color: white; padding: 10px 14px; text-align: left; }
.ce-legal-table td { padding: 10px 14px; border-bottom: 1px solid #e8ecf0; color: var(--ce-text); }
.ce-legal-table tr:nth-child(even) td { background: #f8fafc; }
.ce-legal-table code { background: #e8ecf0; padding: 2px 6px; border-radius: 4px; font-size: 0.85em; }

/* ===== ARTICLE LISTING PAGE ===== */
.ce-articles-listing { padding: 60px 0 80px; }
.ce-articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 40px; }
.ce-article-card { background: white; border-radius: var(--ce-radius); box-shadow: 0 4px 20px rgba(26,58,92,0.08); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ce-article-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,58,92,0.14); }
.ce-article-card-image-link { display: block; overflow: hidden; }
.ce-article-card-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ce-article-card:hover .ce-article-card-img { transform: scale(1.04); }
.ce-article-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.ce-article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.82rem; color: #888; }
.ce-article-tag { background: var(--ce-accent); color: white; padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.ce-article-card-body h2 { font-size: 1.2rem; margin: 0 0 12px; line-height: 1.4; }
.ce-article-card-body h2 a { color: var(--ce-primary); text-decoration: none; }
.ce-article-card-body h2 a:hover { color: var(--ce-accent); }
.ce-article-card-body p { flex: 1; color: var(--ce-text); line-height: 1.7; font-size: 0.95rem; margin-bottom: 20px; }
.ce-article-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--ce-accent); font-weight: 600; font-size: 0.9rem; text-decoration: none; margin-top: auto; }
.ce-article-read-more i { transition: transform 0.2s; }
.ce-article-read-more:hover i { transform: translateX(4px); }

/* ===== ARTICLE DETAIL PAGE ===== */
.ce-article-hero-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.75); flex-wrap: wrap; }
.ce-read-time { display: flex; align-items: center; gap: 5px; }
.ce-article-featured-image { padding: 0 0 0; background: white; }
.ce-article-featured-image img { width: 100%; height: 420px; object-fit: cover; border-radius: 0 0 var(--ce-radius) var(--ce-radius); display: block; }
.ce-article-body-section { padding: 60px 0 80px; background: #f8fafc; }
.ce-article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.ce-article-content { background: white; border-radius: var(--ce-radius); padding: 48px; box-shadow: 0 4px 20px rgba(26,58,92,0.06); }
.ce-article-lead { font-size: 1.12rem; color: var(--ce-primary); line-height: 1.8; font-weight: 400; margin-bottom: 28px; }
.ce-article-inline-img { width: 100%; border-radius: var(--ce-radius); margin: 32px 0; display: block; }
.ce-article-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 90px; }
.ce-sidebar-card { background: white; border-radius: var(--ce-radius); padding: 24px; box-shadow: 0 4px 20px rgba(26,58,92,0.06); }
.ce-sidebar-card h3 { font-size: 1rem; color: var(--ce-primary); margin-bottom: 14px; font-family: 'DM Serif Display', serif; }
.ce-toc { list-style: none; padding: 0; margin: 0; }
.ce-toc li { border-bottom: 1px solid #f0f2f5; }
.ce-toc li:last-child { border-bottom: none; }
.ce-toc a { display: block; padding: 8px 0; color: var(--ce-text); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.ce-toc a:hover { color: var(--ce-accent); }
.ce-sidebar-cta { background: linear-gradient(135deg, var(--ce-primary), var(--ce-primary-light)); color: white; }
.ce-sidebar-cta h3 { color: white; }
.ce-sidebar-cta p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 16px; }
.ce-sidebar-articles { list-style: none; padding: 0; margin: 0; }
.ce-sidebar-articles li { border-bottom: 1px solid #f0f2f5; }
.ce-sidebar-articles li:last-child { border-bottom: none; }
.ce-sidebar-articles a { display: block; padding: 9px 0; color: var(--ce-text); text-decoration: none; font-size: 0.88rem; }
.ce-sidebar-articles a:hover { color: var(--ce-accent); }

@media (max-width: 900px) {
  .ce-article-layout { grid-template-columns: 1fr; }
  .ce-article-sidebar { position: static; }
  .ce-articles-grid { grid-template-columns: 1fr; }
}


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

html{
  overflow-x: hidden;
}

.ce-article-featured-image{
  margin-top: 30px;
}

.ce-breadcrumb{
  display: none!important;
}