/* ============================================================
   Mackies Cleaning Services — style.css
   ============================================================ */

:root {
  --navy:        #1D1B8E;
  --blue:        #2E6EF7;
  --blue-mid:    #2752D8;
  --gradient:    linear-gradient(135deg, #1D1B8E 0%, #2E6EF7 100%);
  --white:       #FFFFFF;
  --off-white:   #F4F6FF;
  --light:       #EEF2FF;
  --border:      #DDE2F0;
  --text:        #0F172A;
  --text-muted:  #5A6A8A;
  --success:     #10B981;
  --shadow-sm:   0 1px 3px rgba(29,27,142,0.08);
  --shadow-md:   0 4px 16px rgba(29,27,142,0.12);
  --shadow-lg:   0 12px 40px rgba(29,27,142,0.16);
  --radius:      12px;
  --radius-lg:   20px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:  0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
abbr { text-decoration: none; }

/* ---- Layout ---- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }

/* ---- Typography ---- */
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
p { color: var(--text-muted); line-height: 1.75; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 24px; border-radius: 8px; font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition); white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn-large { padding: 16px 32px; font-size: 1.05rem; border-radius: 10px; }
.btn-primary { background: var(--gradient); color: var(--white); box-shadow: 0 4px 14px rgba(46,110,247,0.35); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(46,110,247,0.45); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-outline-dark { border-color: var(--border); color: var(--navy); background: var(--white); }
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost { color: var(--blue); font-weight: 600; padding: 8px 0; }
.btn-ghost:hover { color: var(--navy); text-decoration: underline; }

/* ---- Section header ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { margin: 12px 0 16px; }
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light p { opacity: 0.85; }
.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); background: var(--light);
  padding: 4px 12px; border-radius: 100px;
}
.section-header.light .section-label { background: rgba(255,255,255,0.15); color: white; }

/* ================================================================
   SQUEEGEE OVERLAY
   ================================================================ */
#squeegee-overlay {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: all;
}
#squeegee-hint {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
  z-index: 9100;
}
#squeegee-hint .hint-inner {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white; padding: 12px 20px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: hint-pulse 2s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

/* Custom squeegee cursor element */
.squeegee-cursor-el {
  position: fixed; pointer-events: none; z-index: 9200;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5));
  display: none;
}

/* ================================================================
   SUMMER BANNER
   ================================================================ */
#summer-banner {
  background: var(--gradient); color: white;
  padding: 10px 16px; position: relative; z-index: 200;
}
.banner-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; padding-right: 40px;
}
.banner-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.2); padding: 3px 8px; border-radius: 4px;
  white-space: nowrap;
}
#summer-banner p { color: white; font-size: 0.9rem; margin: 0; }
#summer-banner p strong { color: white; }
.banner-cta {
  font-size: 0.9rem; font-weight: 700; color: white;
  text-decoration: underline; white-space: nowrap;
}
.banner-cta:hover { opacity: 0.85; }
.banner-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: white; font-size: 1.4rem; line-height: 1; opacity: 0.8; padding: 4px;
}
.banner-close:hover { opacity: 1; }

/* ================================================================
   HEADER
   ================================================================ */

/* Top contact bar */
.header-topbar {
  background: #0D0B5A;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 24px;
}
.topbar-contact {
  display: flex; align-items: center; gap: 20px;
}
.topbar-contact a {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 500;
  transition: color var(--transition);
}
.topbar-contact a:hover { color: white; }
.topbar-contact svg { opacity: 0.6; flex-shrink: 0; }
.topbar-areas {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  font-weight: 500; letter-spacing: 0.04em; white-space: nowrap;
}

/* Main header */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(13,11,90,0.4);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: 0 4px 32px rgba(13,11,90,0.55); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 56px; width: 56px; object-fit: cover; object-position: 50% 30%; border-radius: 6px; }

.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8);
  padding: 7px 14px; border-radius: 6px; transition: all var(--transition);
}
.nav-list a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: white !important; color: var(--navy) !important;
  border-radius: 8px !important; font-weight: 700 !important;
  padding: 10px 20px !important; margin-left: 8px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--off-white) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25) !important;
}

/* Mobile menu */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all var(--transition); }
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none; background: #0D0B5A; border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px 28px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
  display: block; padding: 12px 0; font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:hover { color: white; }
.mobile-contact a { color: #60A5FA; font-weight: 700; border-bottom: none; padding-top: 16px; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D0B5A 0%, #1D1B8E 40%, #2E6EF7 100%);
  opacity: 0.97;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 70% 50%, rgba(46,110,247,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(29,27,142,0.4) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 1; padding: 80px 24px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero h1 { color: white; margin-bottom: 24px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #60A5FA, #A5B4FC); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 560px; margin-bottom: 40px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust span { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 32px 0; }
.trust-grid { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 12px 32px; }
.trust-number { font-size: 1.8rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; }
.trust-areas { font-size: 1rem; letter-spacing: 0.05em; }
.trust-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.trust-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ================================================================
   SERVICES
   ================================================================ */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Slideshow */
.service-slideshow { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--light); }
.slides { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; }
.slide.active { opacity: 1; }

.photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--light) 0%, #DDE6FF 100%);
  display: flex; align-items: center; justify-content: center;
}
.photo-placeholder.about-photo { border-radius: var(--radius-lg); aspect-ratio: 4/3; }
.placeholder-inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--blue); opacity: 0.5;
}
.placeholder-inner span { font-size: 0.8rem; font-weight: 500; }

.slide-controls {
  position: absolute; bottom: 12px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.slide-prev, .slide-next {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(4px);
  font-size: 1.3rem; line-height: 1; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all var(--transition);
}
.slide-prev:hover, .slide-next:hover { background: white; box-shadow: 0 3px 10px rgba(0,0,0,0.2); }
.slide-dots { display: flex; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5); transition: background var(--transition); }
.dot.active { background: white; }

/* Service body */
.service-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.service-body h3 { color: var(--navy); }
.service-body p { font-size: 0.95rem; }
.service-features { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.service-features li { font-size: 0.88rem; color: var(--text-muted); padding-left: 18px; position: relative; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.service-body .btn-ghost { margin-top: auto; align-self: flex-start; }

/* ================================================================
   ABOUT
   ================================================================ */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content .section-label { margin-bottom: 16px; display: block; }
.about-content h2 { margin-bottom: 20px; color: var(--navy); }
.about-lead { font-size: 1.05rem; margin-bottom: 36px; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gradient); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.about-feature strong { display: block; color: var(--text); margin-bottom: 2px; }
.about-feature p { font-size: 0.9rem; margin: 0; }
.about-visual { display: flex; align-items: center; justify-content: center; }
.about-photo { width: 100%; max-width: 480px; min-height: 360px; }

/* ================================================================
   AREAS
   ================================================================ */
.areas { background: var(--off-white); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 32px; }
.area-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--blue);
}
.area-card h3 { color: var(--navy); margin-bottom: 14px; font-size: 1.05rem; }
.area-card li { font-size: 0.88rem; color: var(--text-muted); padding: 4px 0; border-bottom: 1px solid var(--border); }
.area-card li:last-child { border-bottom: none; }
.areas-note { text-align: center; font-size: 0.9rem; }
.areas-note a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* ================================================================
   BOOKING FORM
   ================================================================ */
.book-section { background: var(--navy); }
.book-section .section-header.light .section-label { background: rgba(255,255,255,0.15); color: white; }
.booking-wrap {
  max-width: 820px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
#booking-form { padding: 48px; }

/* Progress */
.form-progress { margin-bottom: 40px; }
.progress-steps-row { display: flex; align-items: center; justify-content: center; }
.progress-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; background: none; border: none; font-family: inherit;
  opacity: 0.45; transition: opacity var(--transition);
}
.progress-step.active, .progress-step.done { opacity: 1; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--text-muted);
  transition: all var(--transition);
}
.progress-step.active .step-num { border-color: var(--blue); background: var(--blue); color: white; }
.progress-step.done .step-num { border-color: var(--blue); background: var(--light); color: var(--blue); }
.step-name { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.progress-step.active .step-name { color: var(--navy); }
.progress-connector { flex: 1; height: 2px; background: var(--border); margin: 0 16px; margin-bottom: 22px; max-width: 80px; transition: background var(--transition); }
.progress-connector.done { background: var(--blue); }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }
.step-title { color: var(--navy); margin-bottom: 28px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.label-hint { font-weight: 400; color: var(--text-muted); }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.95rem; font-family: inherit; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,110,247,0.12); }
.form-group input.error { border-color: #EF4444; }
.field-error { font-size: 0.8rem; color: #EF4444; min-height: 18px; }

/* Sector cards */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 8px; }
.sector-card { cursor: pointer; }
.sector-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.sector-inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 10px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  text-align: center; cursor: pointer; transition: all var(--transition);
}
.sector-inner svg { color: var(--text-muted); transition: color var(--transition); }
.sector-card input:checked + .sector-inner {
  border-color: var(--blue); background: var(--light); color: var(--navy);
  box-shadow: 0 0 0 2px rgba(46,110,247,0.2);
}
.sector-card input:checked + .sector-inner svg { color: var(--blue); }
.sector-card:hover .sector-inner { border-color: var(--blue); color: var(--navy); }

/* Check cards */
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.check-card { cursor: pointer; }
.check-card input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.check-inner {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.84rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.check-inner::before {
  content: ''; flex-shrink: 0; width: 16px; height: 16px;
  border: 1.5px solid var(--border); border-radius: 4px;
  transition: all var(--transition);
}
.check-card input:checked + .check-inner {
  border-color: var(--blue); background: var(--light); color: var(--navy);
}
.check-card input:checked + .check-inner::before {
  background: var(--blue); border-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.check-card:hover .check-inner { border-color: var(--blue); color: var(--navy); }

.form-actions { display: flex; justify-content: flex-end; margin-top: 32px; }
.form-actions.split { justify-content: space-between; }

/* Step 3 final */
.book-final { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 0 8px; gap: 20px; }
.book-check { margin-bottom: 8px; }
.book-final h3 { font-size: 1.6rem; color: var(--navy); }
.book-final > p { max-width: 480px; }
.book-summary {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 24px; width: 100%; max-width: 480px;
  text-align: left; font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.8;
}
.book-or { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 4px; }
.book-or span { font-size: 0.85rem; color: var(--text-muted); }
.book-phone { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.book-email { font-size: 0.9rem; color: var(--blue); text-decoration: underline; }
.book-phone:hover, .book-email:hover { color: var(--blue); }

/* ================================================================
   CADI PARTNER
   ================================================================ */
.cadi-partner { background: var(--off-white); border-top: 1px solid var(--border); padding: 64px 0; }
.cadi-eyebrow { text-align: center; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
.cadi-inner { max-width: 860px; }
.cadi-content { display: flex; gap: 60px; align-items: center; background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.cadi-heading { font-size: 1.8rem; color: var(--navy); margin-bottom: 16px; }
.cadi-heading a { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cadi-text p { margin-bottom: 24px; }
.cadi-badge {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--gradient); box-shadow: 0 8px 32px rgba(46,110,247,0.3);
}
.cadi-badge a { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; }
.cadi-badge > a > span { font-size: 0.7rem; color: rgba(255,255,255,0.8); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.cadi-wm { font-family: Inter, sans-serif; font-weight: 600; font-size: 44px; letter-spacing: -0.05em; line-height: 1; display: flex; align-items: baseline; filter: drop-shadow(0 0 10px rgba(79,120,255,0.5)); }
.cadi-wm-C { color: rgba(196,211,255,0.6); }
.cadi-wm-a { background: linear-gradient(170deg,#fff 0%,#a8c4ff 40%,#4f78ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cadi-wm-d { background: linear-gradient(170deg,#fff 10%,#6090ff 55%,#2e55f0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cadi-wm-i { color: rgba(255,255,255,0.28); position: relative; }
.cadi-wm-dot { position: absolute; left: 50%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle,#fff 0%,#a8c4ff 35%,#4f78ff 65%,transparent 85%); width: 7px; height: 7px; top: 0.08em; box-shadow: 0 0 8px 2px rgba(168,196,255,0.8), 0 0 20px 5px rgba(79,120,255,0.5); animation: cadi-dot-pulse 3.5s ease-in-out infinite; }
@keyframes cadi-dot-pulse { 0%,100% { box-shadow: 0 0 8px 2px rgba(168,196,255,0.8), 0 0 20px 5px rgba(79,120,255,0.5); transform: translateX(-50%) scale(1); } 50% { box-shadow: 0 0 14px 4px rgba(168,196,255,1), 0 0 32px 10px rgba(79,120,255,0.7); transform: translateX(-50%) scale(1.25); } }

/* ================================================================
   RESOURCES
   ================================================================ */
.resources { background: var(--white); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.resource-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.resource-icon { font-size: 2rem; margin-bottom: 16px; }
.resource-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1rem; }
.resource-card p { font-size: 0.88rem; }
.coming-soon-badge {
  display: inline-block; margin-top: 16px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); background: var(--off-white); padding: 4px 10px; border-radius: 4px;
}

/* ================================================================
   FOOTER
   ================================================================ */
#site-footer { background: var(--navy); color: white; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { opacity: 0.95; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-links { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }
.footer-contact-links a:hover { color: white; }
.footer-col h4 { color: rgba(255,255,255,0.45); margin-bottom: 16px; font-size: 0.72rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-powered a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer-powered a:hover { color: white; }

/* ================================================================
   WIDGET NUDGE
   ================================================================ */
#widget-nudge {
  position: fixed; bottom: 88px; right: 12px; z-index: 8999;
  background: white; border-radius: 12px; padding: 12px 16px 12px 14px;
  box-shadow: 0 8px 32px rgba(29,27,142,0.22), 0 2px 8px rgba(0,0,0,0.1);
  border: 1.5px solid var(--border);
  max-width: 170px; text-align: left;
  animation: nudge-in 0.4s cubic-bezier(0.34,1.56,0.64,1) both, nudge-pulse 3s ease-in-out 1.5s infinite;
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#widget-nudge.hidden { opacity: 0; transform: scale(0.85); pointer-events: none; }
.nudge-text { font-size: 0.85rem; color: var(--text); line-height: 1.4; margin: 0; }
.nudge-text strong { color: var(--navy); }
.nudge-arrow {
  position: absolute; bottom: -8px; right: 22px;
  width: 16px; height: 8px; overflow: hidden;
}
.nudge-arrow::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: white; border-right: 1.5px solid var(--border); border-bottom: 1.5px solid var(--border);
}
.nudge-close {
  position: absolute; top: 5px; right: 7px;
  font-size: 1rem; color: var(--text-muted); line-height: 1;
  padding: 2px 4px; border-radius: 4px;
  transition: color var(--transition);
}
.nudge-close:hover { color: var(--text); }

@keyframes nudge-in {
  from { opacity: 0; transform: scale(0.7) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes nudge-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(29,27,142,0.22), 0 2px 8px rgba(0,0,0,0.1); }
  50%       { box-shadow: 0 8px 32px rgba(46,110,247,0.35), 0 2px 12px rgba(46,110,247,0.2); }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].in-view { opacity: 1; transform: none; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { gap: 48px; }
  .sector-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .header-topbar { display: none; }
  .section-pad { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .mobile-menu-btn { display: flex; }
  #booking-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .cadi-content { flex-direction: column; text-align: center; padding: 36px 28px; }
  .cadi-badge { width: 100px; height: 100px; }
  .cadi-logo-mark { font-size: 1.5rem; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .trust-grid { gap: 0; flex-wrap: wrap; }
  .trust-item { padding: 12px 20px; }
  .trust-divider { display: none; }
  .hero { min-height: 70vh; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr; }
  .progress-connector { max-width: 40px; margin: 0 8px; margin-bottom: 22px; }
  .step-name { font-size: 0.7rem; }
}
