/* ============================================================
   McClean Elite Servicing — Premium Laundry Website CSS
   Theme: White + Navy/Deep Blue Accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #1a2e4a;
  --blue:        #1e4080;
  --blue-mid:    #2557a7;
  --blue-light:  #3a7bd5;
  --accent:      #4e9af1;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --gray-50:     #f3f6fb;
  --gray-100:    #e8edf5;
  --gray-200:    #d0d9e8;
  --gray-400:    #8fa3be;
  --gray-600:    #4a5568;
  --gray-800:    #1f2937;
  --black:       #0d1117;
  --shadow-sm:   0 2px 8px rgba(30,64,128,0.08);
  --shadow-md:   0 8px 32px rgba(30,64,128,0.12);
  --shadow-lg:   0 20px 60px rgba(30,64,128,0.16);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container   { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,87,167,0.08); color: var(--blue-mid);
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 50px; border: 1px solid rgba(37,87,167,0.15);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--navy); line-height: 1.2;
  margin-bottom: 14px;
}

.section-subhead {
  font-size: 1.05rem; color: var(--gray-600);
  max-width: 560px; margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-body); font-size: .92rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 20px rgba(30,64,128,0.3);
}
.btn-primary:hover {
  background: var(--navy); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,64,128,0.4);
}

.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue); color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--off-white); transform: translateY(-2px);
}

/* ── Navigation ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-mark {
  width: 38px; height: 38px;
  background: var(--navy); border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--white); letter-spacing: -.03em;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  line-height: 1.1;
}
.nav-logo .logo-text span { display: block; font-size: .68rem; font-weight: 400; color: var(--gray-400); letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-body); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--gray-600);
  position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

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

/* ── Mobile Nav ── */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  padding: 20px 24px; box-shadow: var(--shadow-md);
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-weight: 500; color: var(--gray-800);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--gray-50); color: var(--blue); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Hero Section ── */
#hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
  position: relative;
}

.hero-bg-decor {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-100) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 80px 0; position: relative; z-index: 1;
}

.hero-content { animation: fadeUp .8s ease both; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--navy); line-height: 1.12;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--blue-mid); }

.hero-subtitle {
  font-size: 1.07rem; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 36px; max-width: 460px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.hero-stat .num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy);
}
.hero-stat .label { font-size: .8rem; color: var(--gray-400); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--gray-200); }

/* Hero visual */
.hero-visual { position: relative; animation: fadeUp .9s .15s ease both; }

.hero-card-main {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  position: relative;
}

.hero-card-main img {
  width: 100%; height: 380px; object-fit: cover;
}

.hero-card-main .overlay-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.overlay-badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulse-green 1.5s infinite;
}
.overlay-badge .ob-text { font-size: .85rem; font-weight: 600; color: var(--navy); }
.overlay-badge .ob-sub  { font-size: .72rem; color: var(--gray-400); }

.hero-float-card {
  position: absolute; top: -20px; right: -20px;
  background: var(--blue); color: var(--white);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow-lg); min-width: 160px;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card .fc-label { font-size: .72rem; font-weight: 500; opacity: .75; letter-spacing: .06em; text-transform: uppercase; }
.hero-float-card .fc-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }

/* ── Marquee Strip ── */
.marquee-strip {
  background: var(--navy); color: var(--white);
  padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px; font-size: .85rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; opacity: .9;
}
.marquee-item span { color: var(--accent); font-size: 1rem; }

/* ── Services Section ── */
#services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 52px;
}

.service-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(37,87,167,0.08), rgba(78,154,241,0.06));
  border: 1px solid rgba(37,87,167,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.service-icon svg {
  width: 32px; height: 32px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; }

.service-features { display: flex; flex-direction: column; gap: 7px; }
.service-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--gray-600);
}
.service-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}

/* ── Pricing Section Improvements ── */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.pricing-tab {
  padding: 12px 24px;
  border-radius: 50px;
  background: var(--off-white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--gray-100);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-tab:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  background: rgba(37, 87, 167, 0.05);
}

.pricing-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(26, 46, 74, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.price-card {
  padding: 30px 24px; border: 2px solid var(--gray-100);
  text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative;
}
.price-card.featured {
  border-color: var(--blue); background: var(--blue);
  color: var(--white); transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card:not(.featured):hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue-light), var(--accent));
  color: var(--white); font-size: .7rem; font-weight: 700;
  padding: 4px 16px; border-radius: 50px; letter-spacing: .06em; text-transform: uppercase;
}

.price-label {
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px;
}
.price-card.featured .price-label { color: rgba(255,255,255,0.7); }

.price-amount {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.price-card.featured .price-amount { color: var(--white); }

.price-unit { font-size: .8rem; color: var(--gray-400); margin-bottom: 14px; }
.price-card.featured .price-unit { color: rgba(255,255,255,0.65); }

.price-desc { font-size: .88rem; color: var(--gray-600); margin-bottom: 22px; line-height: 1.55; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.8); }

.btn-book {
  width: 100%; padding: 12px 20px; border-radius: 50px;
  background: var(--gray-100); color: var(--navy);
  font-weight: 600; font-size: .88rem; border: none; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
}
.btn-book:hover { background: var(--blue); color: var(--white); }
.price-card.featured .btn-book {
  background: var(--white); color: var(--blue);
}
.price-card.featured .btn-book:hover { background: var(--off-white); }

.pricing-note {
  text-align: center; margin-top: 32px;
  padding: 20px 28px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--gray-100);
  max-width: 640px; margin-left: auto; margin-right: auto;
  display: flex; align-items: center; gap: 14px; justify-content: center;
}
.pricing-note .icon { font-size: 1.4rem; }
.pricing-note p { font-size: .88rem; color: var(--gray-600); }
.pricing-note strong { color: var(--navy); }

/* ── About Section ── */
#about { background: var(--white); }

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }

.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--blue); color: var(--white);
  padding: 24px 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent .acc-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.about-img-accent .acc-label { font-size: .78rem; opacity: .8; margin-top: 4px; }

.about-content {}

.about-content .section-heading { margin-bottom: 10px; text-align: left; }
.about-content .section-subhead  { max-width: 100%; text-align: left; margin: 0 0 28px; }

.about-body {
  font-size: .95rem; color: var(--gray-600); line-height: 1.8;
  margin-bottom: 28px;
}

.about-pillars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }

.pillar {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; background: var(--off-white);
  border-radius: var(--radius); border-left: 3px solid var(--blue);
}
.pillar .p-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.pillar h4 { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: .95rem; }
.pillar p  { font-size: .85rem; color: var(--gray-600); }

.hours-box {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.hours-box .h-icon { font-size: 1.6rem; }
.hours-box h4 { font-weight: 700; margin-bottom: 4px; }
.hours-box p  { font-size: .85rem; opacity: .75; }

/* ── Testimonials ── */
#testimonials { background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px; margin-top: 52px;
}

.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100); transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars span { color: #f59e0b; font-size: 1rem; }

.testi-text {
  font-size: .9rem; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: grid; place-items: center; font-weight: 700;
  color: var(--white); font-size: .9rem; flex-shrink: 0;
}
.testi-name   { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testi-service { font-size: .78rem; color: var(--gray-400); }

/* ── FAQ ── */
#faq { background: var(--white); }

.faq-grid {
  max-width: 780px; margin: 52px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}

.faq-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.faq-item.open { border-color: var(--blue-mid); box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-body); gap: 16px;
}
.faq-question span:first-child { font-size: .97rem; font-weight: 600; color: var(--navy); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); display: grid; place-items: center;
  flex-shrink: 0; font-size: .9rem; color: var(--blue);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: var(--white); }

.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
  padding: 0 24px;
}
.faq-answer p {
  font-size: .9rem; color: var(--gray-600); line-height: 1.75;
  padding-bottom: 20px;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ── Contact Section ── */
#contact { background: var(--off-white); }

.contact-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 48px; margin-top: 52px; align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.contact-info > p { font-size: .9rem; color: var(--gray-600); margin-bottom: 28px; line-height: 1.65; }

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.contact-item .ci-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: grid; place-items: center; font-size: 1rem;
  color: var(--white); flex-shrink: 0;
}
.contact-item .ci-label { font-size: .75rem; font-weight: 600; color: var(--gray-400); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 3px; }
.contact-item .ci-value { font-size: .9rem; font-weight: 600; color: var(--navy); }
.contact-item .ci-value a { color: var(--navy); transition: color var(--transition); }
.contact-item .ci-value a:hover { color: var(--blue); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--gray-200);
  display: grid; place-items: center; font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-2px); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.contact-form-wrap h3 {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--navy);
  margin-bottom: 24px; font-weight: 700;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray-600); letter-spacing: .04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: .9rem; color: var(--gray-800); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,87,167,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; }

.form-message {
  margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 500; display: none;
}
.form-message.success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; display: block; }
.form-message.error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; display: block; }

/* ── Booking Modal ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px); z-index: 2000;
  display: none; place-items: center; padding: 24px;
}
.modal-overlay.open { display: grid; }

.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 580px; max-height: 90vh;
  overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: slideUp .35s ease;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 0; border-bottom: 1px solid var(--gray-100); padding-bottom: 18px;
}
.modal-header h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); }
.modal-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  font-size: 1.1rem; display: grid; place-items: center; transition: var(--transition);
}
.modal-close:hover { background: var(--gray-200); }
.modal-body { padding: 24px 28px 28px; }

/* ── Footer ── */
footer {
  background: var(--off-white); color: var(--navy);
  padding: 64px 0 0;
  border-top: 1px solid var(--gray-100);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}

.footer-brand .logo-text {
  font-family: var(--font-body);
  font-size: 1.1rem; font-weight: 800;
  color: var(--navy); letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; margin-top: 15px; max-width: 300px; }

.footer-col h4 {
  font-size: .9rem; font-weight: 700;
  color: var(--navy); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: .88rem; color: var(--gray-600); transition: color var(--transition); }
.footer-col a:hover { color: var(--blue-mid); }

.footer-contact-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--gray-600);
}
.footer-icon { font-size: 1.1rem; }

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 30px 0; text-align: center;
  font-size: .8rem; color: var(--gray-400);
}


/* ── Signature Services (new layout) ── */
.sig-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: #2557a7;
  border: 1.5px solid rgba(37,87,167,0.25);
  padding: 6px 16px; border-radius: 50px;
  background: rgba(37,87,167,0.06); margin-bottom: 18px;
}
.sig-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--navy); line-height: 1.2;
  margin-bottom: 16px;
}
.sig-sub {
  font-size: .97rem; color: var(--gray-600);
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}

.sig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sig-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 22px 26px;
  box-shadow: 0 2px 12px rgba(30,64,128,0.055);
  transition: var(--transition);
  cursor: default;
}
.sig-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(30,64,128,0.12);
  border-color: rgba(37,87,167,0.2);
}

.sig-icon-wrap {
  width: 48px; height: 48px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background var(--transition);
}
.sig-icon-wrap svg { width: 26px; height: 26px; display: block; }
.sig-card:hover .sig-icon-wrap { background: rgba(37,87,167,0.07); }

.sig-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--blue); margin-bottom: 10px; line-height: 1.25;
}
.sig-desc {
  font-size: .86rem; color: var(--gray-600); line-height: 1.7;
}

/* ── Services CTA Banner ── */
.svc-cta-banner {
  position: relative; overflow: hidden;
  background: var(--navy);
  padding: 72px 0;
}
.svc-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(26,46,74,0.98) 45%, rgba(37,87,167,0.85) 100%);
  z-index: 1;
}
.svc-cta-wash-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.svc-cta-content { max-width: 520px; }
.svc-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 14px;
}
.svc-cta-sub {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  line-height: 1.7; margin-bottom: 32px;
}
.svc-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.svc-cta-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: .92rem;
  transition: var(--transition);
  display: inline-flex; align-items: center;
}
.svc-cta-outline:hover {
  border-color: white; background: rgba(255,255,255,0.1);
}

@media (max-width: 960px) {
  .sig-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sig-grid { grid-template-columns: 1fr; }
}
#scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: var(--white); border: none;
  cursor: pointer; font-size: 1.1rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none;
  transition: var(--transition); z-index: 999;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 84px; right: 28px;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner    { gap: 40px; }
  .about-inner   { gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr; text-align: center;
    gap: 48px; padding: 60px 0 48px;
  }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-bg-decor { display: none; }
  .hero-float-card { display: none; }

  .about-inner { grid-template-columns: 1fr; }
  .about-img-accent { right: 0; }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-pad { padding: 60px 0; }
  .hero-title   { font-size: 2.2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* ============================================================
   NEW REDESIGN STYLES — Hero / Why / Top Services
   ============================================================ */

/* ── Updated Nav Logo ── */
.nav-logo .logo-text {
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 800;
  color: var(--navy); letter-spacing: .06em;
  text-transform: uppercase; line-height: 1;
}
.nav-book-btn {
  padding: 10px 22px !important;
  font-size: .85rem !important;
  border-radius: 8px !important;
}

/* ── Hero (Split Layout) ── */
#hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex; align-items: stretch;
  position: relative; overflow: hidden;
  background: var(--white);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%; min-height: calc(100vh - 72px);
}
.hero-content {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  animation: fadeUp .8s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-mid);
  border: 1.5px solid rgba(37,87,167,.25);
  padding: 6px 16px; border-radius: 50px;
  background: rgba(37,87,167,.06);
  margin-bottom: 24px; width: fit-content;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.15; margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1rem; color: var(--gray-600);
  line-height: 1.75; margin-bottom: 36px;
  max-width: 420px;
}
.hero-actions {
  display: flex; gap: 12px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.hero-cta {
  border-radius: 8px !important;
  padding: 13px 26px !important;
  font-size: .92rem !important;
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px;
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-body); font-size: .92rem;
  font-weight: 600; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-outline-dark:hover {
  border-color: var(--blue); color: var(--blue);
  background: rgba(37,87,167,.04);
}
.hero-trust {
  display: flex; align-items: center; gap: 14px;
}
.trust-avatars {
  display: flex; align-items: center;
}
.trust-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--white);
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 700; color: var(--white);
  margin-left: -10px; flex-shrink: 0;
}
.trust-avatars .trust-avatar:first-child { margin-left: 0; }
.trust-text {
  font-size: .82rem; color: var(--gray-600);
}
.trust-text strong { color: var(--navy); }
.hero-photo {
  position: relative; overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── Why McClean Elite ── */
.why-section {
  background: var(--white);
  padding: 80px 0;
}
.why-header {
  text-align: center; margin-bottom: 52px;
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 12px;
}
.why-underline {
  width: 48px; height: 3px;
  background: var(--blue-mid);
  border-radius: 2px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card--featured {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
}
.why-card--navy {
  background: var(--navy);
  border-color: var(--navy);
}
.why-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon-wrap svg { width: 22px; height: 22px; }
.why-icon--plain {
  background: rgba(37,87,167,.08);
}
.why-icon--navy {
  background: rgba(255,255,255,.15);
}
.why-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.why-card-title--dark { color: var(--navy); }
.why-card-title--white { color: var(--white); }
.why-card-desc {
  font-size: .88rem; color: rgba(255,255,255,.85);
  line-height: 1.7;
}
.why-card-desc--dark { color: var(--gray-600); }
.why-card-desc--white { color: rgba(255,255,255,.8); }
.why-learn-link {
  display: inline-block; margin-top: 18px;
  font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.why-learn-link:hover { color: var(--white); }
.why-details-btn {
  margin-top: 20px;
  padding: 10px 24px; border-radius: 6px;
  background: var(--white); color: var(--navy);
  font-family: var(--font-body); font-size: .85rem;
  font-weight: 700; border: none; cursor: pointer;
  transition: var(--transition);
}
.why-details-btn:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

/* ── Our Top Services ── */
.top-services-section {
  background: var(--off-white);
  padding: 80px 0;
}
.top-services-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.top-services-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 6px;
}
.top-services-sub {
  font-size: .9rem; color: var(--gray-600);
}
.top-services-all {
  font-size: .88rem; font-weight: 600;
  color: var(--blue-mid); white-space: nowrap;
  transition: color var(--transition);
  padding-bottom: 2px;
}
.top-services-all:hover { color: var(--navy); }
.top-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.svc-photo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.svc-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.svc-photo-wrap {
  height: 160px; overflow: hidden;
  background: var(--gray-100);
}
.svc-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.svc-photo-card:hover .svc-photo-wrap img {
  transform: scale(1.05);
}
.svc-photo-body {
  padding: 18px 16px;
}
.svc-photo-body h3 {
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.svc-photo-body p {
  font-size: .82rem; color: var(--gray-600);
  line-height: 1.55; margin-bottom: 12px;
}
.svc-photo-price {
  font-size: .82rem; color: var(--gray-600);
}
.svc-photo-price span {
  font-weight: 700; color: var(--blue-mid);
  font-size: .9rem;
}
.svc-photo-price--quote {
  font-weight: 700; color: var(--blue-mid);
  font-size: .88rem;
}

/* ── Responsive overrides for new sections ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .top-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content {
    padding: 60px 28px 48px;
    text-align: center;
    align-items: center;
  }
  .hero-subtitle { max-width: 100%; }
  .hero-photo { height: 280px; }
  .top-services-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .top-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .top-services-grid { grid-template-columns: 1fr; }
}

/* ── Pricing Section Improvements ── */
#pricing { background: var(--off-white); }

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px auto;
  max-width: 600px;
}

.pricing-tab {
  padding: 12px 24px;
  border-radius: 50px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--gray-100);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-tab:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  background: rgba(37, 87, 167, 0.05);
}

.pricing-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(26, 46, 74, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 35px 30px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 87, 167, 0.2);
}

.price-card.featured {
  border: 2px solid var(--blue-mid);
  background: linear-gradient(to bottom, #ffffff, #f7f9fc);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-mid);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 8px rgba(37, 87, 167, 0.3);
}

.price-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}

.price-amount span {
  font-size: 1.8rem;
  margin-right: 2px;
  vertical-align: middle;
}

.price-unit {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 25px;
}

.price-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-card.featured .price-label,
.price-card.featured .price-amount,
.price-card.featured .price-unit,
.price-card.featured .price-desc {
  color: var(--navy) !important;
}

/* Naira Symbol Styling for all sections */
.price-amount span,
.svc-photo-price span {
  font-size: 0.6em;
  margin-right: 2px;
  vertical-align: middle;
  font-weight: 700;
}


.btn-book {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-whatsapp:hover {
  background: #128C7E !important;
  border-color: #128C7E !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.price-card.featured .btn-book {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}

.price-card.featured .btn-book:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.pricing-note {
  margin-top: 50px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.pricing-note .icon {
  font-size: 1.8rem;
}

.pricing-note p {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .pricing-note {
    flex-direction: column;
    text-align: center;
  }
  .pricing-tabs {
    flex-wrap: wrap;
  }
}


