@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* =============================================
   NEWARK POWERWASHING — Elegant Theme
   Soft · Premium · Nurturing
   ============================================= */

:root {
  /* Colors */
  --primary: #00b4d8;       /* Bright Cyan Blue */
  --primary-light: #48cae4;
  --primary-dark: #0077b6;
  --secondary: #ffb703;     /* Warm vibrant yellow */
  --secondary-hover: #fb8500;
  
  --text-main: #1d3557;     /* Deep navy */
  --text-light: #457b9d;
  
  --bg-main: #ffffff;
  --bg-light: #f8f9fa;
  --bg-accent: #e0fbfc;
  
  /* Utilities */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(0, 119, 182, 0.1);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(29, 53, 87, 0.05);
  --shadow-md: 0 12px 32px rgba(29, 53, 87, 0.08);
}

/* =============================================
   RESET & BASE
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 1.05rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pad { padding: 100px 0; }
.pad-sm { padding: 60px 0; }
.pad-lg { padding: 140px 0; }

.text-center { text-align: center; }

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.section-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hl {
  color: var(--primary);
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 10px;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 119, 182, 0.4);
  color: white;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text-main);
  box-shadow: 0 10px 20px rgba(255, 183, 3, 0.3);
}
.btn-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(251, 133, 0, 0.4);
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-accent);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.tag.center { margin: 0 auto 24px; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}
/* When navbar is at top and over a dark image, logo text can be white */
.navbar:not(.scrolled) .nav-light .logo-text,
.navbar:not(.scrolled) .nav-light .nav-link {
  color: white;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  font-size: 1.05rem;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  position: absolute;
  left: 0;
  transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }

.navbar:not(.scrolled) .nav-light .hamburger span {
  background: white;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--bg-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(3.5rem, 6vw, 5rem);
  margin-bottom: 24px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   SERVICES (ELEGANT CARDS)
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

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

.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-icon-float {
  position: absolute;
  bottom: -24px;
  left: 32px;
  width: 64px;
  height: 64px;
  background: var(--bg-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  border: 4px solid var(--bg-main);
  z-index: 2;
}

.service-content {
  padding: 48px 32px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-content h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.service-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-link:hover {
  color: var(--primary-dark);
  gap: 12px;
}

/* =============================================
   ABOUT / SPLIT SECTIONS
   ============================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-img {
  position: relative;
}
.split-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split-img::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 60%; height: 60%;
  background: var(--bg-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split-text h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}
.split-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* =============================================
   BEFORE/AFTER SLIDER
   ============================================= */
.ba-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}
.ba-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.ba-after {
  z-index: 1;
}
.ba-before-wrap {
  position: absolute;
  top: 0; left: 0; height: 100%; width: 50%;
  overflow: hidden;
  z-index: 2;
}
.ba-before {
  width: 1000px; /* Should match container max-width or use JS to sync */
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.ba-slider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 4px;
  background: white;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  color: var(--primary);
  font-size: 1.2rem;
}

/* =============================================
   STATS
   ============================================= */
.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px;
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transform: translateY(-50px);
  position: relative;
  z-index: 10;
}
.stat-box {
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.stat-label {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1.1rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.test-card {
  background: var(--bg-main);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stars {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.test-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}
.test-author {
  font-weight: 700;
  color: var(--primary-dark);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--bg-accent);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  margin: 100px 0;
}
.cta-section h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text-main);
  color: white;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-logo img {
  height: 48px;
  border-radius: 8px;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.footer p {
  color: rgba(255,255,255,0.7);
}
.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: white;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul a {
  color: rgba(255,255,255,0.7);
}
.footer ul a:hover {
  color: var(--secondary);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* =============================================
   PAGE HEADERS (Internal pages)
   ============================================= */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-accent);
  text-align: center;
}
.page-header h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}
.page-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   SATISFACTION GUARANTEE
   ============================================= */
.guarantee-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #f0fffe 0%, #e8f8f7 50%, #fff9e8 100%);
  border-top: 1px solid rgba(0,168,150,0.1);
  border-bottom: 1px solid rgba(0,168,150,0.1);
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.guarantee-badge {
  display: flex;
  justify-content: center;
}
.guarantee-badge img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,168,150,0.25));
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.guarantee-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}
.guarantee-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}
.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.guarantee-list li {
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 500;
}
@media (max-width: 768px) {
  .guarantee-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .guarantee-badge img {
    width: 180px;
    height: 180px;
  }
  .guarantee-list {
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =============================================
   TRUST BADGES
   ============================================= */
.trust-badges {
  background: var(--bg-light);
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.badge-item {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.badge-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.badge-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 100px 5%;
  background: var(--bg-main);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}
.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 168, 150, 0.3);
}
.step-card h3 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.step-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  padding: 100px 5%;
  background: var(--bg-light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}
.review-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  color: #FACC15;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.review-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
}
.review-text::before {
  content: '\"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  top: -20px;
  left: -15px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-family: var(--font-heading);
}
.author-info h4 {
  font-size: 1.1rem;
  margin: 0 0 5px 0;
}
.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
  }
  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: var(--bg-main);
    flex-direction: column;
    justify-content: center;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition);
  }
  .nav-links.active { right: 0; }
  .nav-cta { display: none; }
  
  .hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 11px; background: var(--text-main); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 11px; background: var(--text-main); }
  
  .split-section { grid-template-columns: 1fr; }
  .stats-wrap {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  
  .ba-container { height: 300px; aspect-ratio: auto; }
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(29, 53, 87, 0.2);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-main);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--bg-accent);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Gallery Layout */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(29, 53, 87, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Pricing Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.price-card {
  background: var(--bg-main);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 20px 0;
}
.price-amount sup {
  font-size: 1.5rem;
  top: -1.5em;
}
