/* ==========================================================================
   Luxors Cleaning, custom stylesheet
   Mobile-first, built up to larger breakpoints.
   ========================================================================== */

:root{
  --dark: #0f2b29;
  --dark-soft: #17403c;
  --teal: #17a68f;
  --teal-dark: #0d8577;
  --teal-light: #e7f6f3;
  --bg: #fbfdfc;
  --gray: #5c6b6a;
  --gray-light: #8a9998;
  --white: #ffffff;
  --border: #e3ece9;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(15,43,41,0.10);
  --shadow-sm: 0 4px 14px rgba(15,43,41,0.07);
  --shadow-teal: 0 12px 26px rgba(23,166,143,0.32);
  --container: 1180px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(.22,.9,.32,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family: var(--font-head); color: var(--dark); margin:0 0 .5em; line-height:1.2; }
p{ margin:0 0 1em; color: var(--gray); }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 26px;
}

.eyebrow{
  display:inline-block;
  font-family: var(--font-head);
  font-weight:600;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

/* ----- Scroll reveal ----- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ----- Buttons ----- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55em;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight:600;
  font-size: .9rem;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: translateY(0) scale(.97); }
.btn-primary{ background: var(--teal); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--teal-dark); transform: translateY(-3px); box-shadow: var(--shadow-teal); }
.btn-glow{ animation: pulseGlow 2.6s ease-in-out infinite; }
@keyframes pulseGlow{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(23,166,143,.45); }
  50%{ box-shadow: 0 0 0 10px rgba(23,166,143,0); }
}
.btn-ghost{ background: transparent; color: var(--dark); border-color: var(--border); }
.btn-ghost:hover{ border-color: var(--teal); color: var(--teal-dark); transform: translateY(-3px); background: var(--teal-light); }
.btn-call{ background: var(--teal-light); color: var(--teal-dark); font-size: .86rem; padding: 10px 16px; }
.btn-call:hover{ background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-light{ background: var(--white); color: var(--teal-dark); }
.btn-light:hover{ background: var(--dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.25); }
.btn-outline-light{ border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline-light:hover{ background: rgba(255,255,255,.15); transform: translateY(-3px); }
.btn-sm{ padding: 10px 18px; font-size: .84rem; }
.btn-full{ width:100%; }

/* ----- Logo ----- */
.logo{ display:flex; align-items:center; }
.logo-img{
  height: 58px;
  width: auto;
  display:block;
  transition: transform .3s var(--ease);
}
.logo:hover .logo-img{ transform: scale(1.04); }

/* ----- Header ----- */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(251,253,252,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled{
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 12px;
}
.main-nav{ display:none; }
.main-nav.open{
  display:flex;
  flex-direction:column;
  position:absolute;
  top:100%; left:0; right:0;
  background: var(--white);
  padding: 8px 20px 18px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 99;
}
.main-nav.open a{
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-weight:500;
  font-size: .95rem;
  color: var(--dark-soft);
}
.main-nav.open a:last-child{ border-bottom:none; }
.header-actions{ display:flex; align-items:center; gap:12px; }

.nav-toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px; height:38px;
  border-radius:8px;
  border:1px solid var(--border);
  background: var(--white);
  cursor:pointer;
  flex-shrink:0;
}
.nav-toggle span{
  display:block; height:2px; width:18px; margin:0 auto;
  background: var(--dark); border-radius:2px;
  transition: transform .25s var(--ease), opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ----- Hero ----- */
.hero{
  position:relative;
  padding: 44px 0 0;
  overflow:hidden;
}
.hero-inner{
  display:flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 44px;
  position: relative;
  z-index: 2;
}
.hero-copy h1{
  font-size: clamp(2rem, 8vw, 3.2rem);
  letter-spacing: -0.01em;
}
.hero-copy p{ max-width: 480px; font-size: 1rem; }
.hero-actions{ display:flex; flex-direction: column; gap:12px; margin-top: 6px; }
.hero-actions .btn{ width: 100%; }

.hero-art{ position:relative; height: 300px; }
.hero-panel{
  position:absolute; inset: 6%;
  background: linear-gradient(155deg, var(--teal-light) 0%, #ffffff 65%);
  border-radius: 28px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-swoosh{
  position:absolute;
  width: 160%; height:160%;
  left:-38%; top:-42%;
  border-radius:50%;
  border: 12px solid var(--teal);
  border-color: var(--teal) transparent transparent var(--teal);
  opacity:.2;
  transform: rotate(-38deg);
}
.hero-tile{
  position:absolute;
  display:flex; align-items:center; justify-content:center;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  color: var(--teal-dark);
  font-size: 1.4rem;
}
.tile-1{
  width: 92px; height:92px; top: 30%; left: 9%;
  font-size: 2rem;
  background: linear-gradient(155deg,#ffffff, var(--teal-light));
  animation: bobbing 5s ease-in-out infinite;
}
.tile-2{ width: 62px; height:62px; top: 10%; right: 12%; animation: bobbingRot8 4.4s ease-in-out infinite .3s; }
.tile-3{ width: 58px; height:58px; bottom: 12%; right: 24%; animation: bobbingRotNeg8 4.8s ease-in-out infinite .6s; }

@keyframes bobbing{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
@keyframes bobbingRot8{
  0%, 100%{ transform: translateY(0) rotate(8deg); }
  50%{ transform: translateY(-10px) rotate(8deg); }
}
@keyframes bobbingRotNeg8{
  0%, 100%{ transform: translateY(0) rotate(-8deg); }
  50%{ transform: translateY(-10px) rotate(-8deg); }
}

.hero-card{
  position:absolute;
  display:flex; align-items:center; gap:10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  font-family: var(--font-head);
  font-weight:600;
  font-size: .78rem;
  color: var(--dark-soft);
  animation: bobbing 5.4s ease-in-out infinite;
}
.hero-card i{ color: var(--teal); font-size: 1.2rem; }
.hero-card-1{ top: 4%; left: 0%; }
.hero-card-2{ bottom: 2%; right: 0%; animation-delay: .5s; }

/* ----- Rising bubbles (decorative background animation) ----- */
.bubbles-rise{
  position:absolute; inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index: 1;
}
.bubble{
  position:absolute;
  bottom: -60px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 28%, rgba(255,255,255,.95), rgba(23,166,143,.35) 55%, rgba(23,166,143,.05) 100%);
  border: 1px solid rgba(255,255,255,.55);
  animation: floatBubble linear infinite;
  opacity: 0;
}
.bubbles-invert .bubble{
  background: radial-gradient(circle at 30% 28%, rgba(255,255,255,.95), rgba(255,255,255,.28) 55%, rgba(255,255,255,.04) 100%);
  border-color: rgba(255,255,255,.4);
}
@keyframes floatBubble{
  0%{ transform: translate(0,0) scale(.8); opacity:0; }
  8%{ opacity:.85; }
  50%{ transform: translate(14px,-220px) scale(1.05); }
  92%{ opacity:.4; }
  100%{ transform: translate(-16px,-420px) scale(.9); opacity:0; }
}
.b1{ left:6%;  width:22px; height:22px; animation-duration: 9s;  animation-delay: 0s; }
.b2{ left:18%; width:14px; height:14px; animation-duration: 7s;  animation-delay: 1.2s; }
.b3{ left:32%; width:30px; height:30px; animation-duration: 11s; animation-delay: 2.4s; }
.b4{ left:46%; width:18px; height:18px; animation-duration: 8s;  animation-delay: .6s; }
.b5{ left:60%; width:26px; height:26px; animation-duration: 10s; animation-delay: 3s; }
.b6{ left:72%; width:12px; height:12px; animation-duration: 6.5s; animation-delay: 1.8s; }
.b7{ left:84%; width:20px; height:20px; animation-duration: 9.5s; animation-delay: 2.8s; }
.b8{ left:93%; width:16px; height:16px; animation-duration: 7.5s; animation-delay: .2s; }

.trust-strip{
  position: relative;
  z-index: 2;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 16px 22px;
  background: var(--dark);
  padding: 20px 20px;
}
.trust-strip li{
  display:flex; align-items:center; gap:8px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-weight:500;
  font-size: .78rem;
  letter-spacing:.01em;
}
.trust-strip i{ color: var(--teal); }

/* ----- About ----- */
.about{ padding: 64px 0; }
.about-inner{
  display:flex;
  flex-direction: column;
  gap: 36px;
}
.about-art{ display:none; }
.about-panel{
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 34px 22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-panel i{
  background: var(--white);
  color: var(--teal-dark);
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), color .3s ease;
}
.about-panel i:hover{ transform: translateY(-6px) rotate(-4deg); color: var(--teal); }
.about-copy h2{ font-size: clamp(1.5rem, 5vw, 2.1rem); }
.about-copy p{ max-width: 520px; }
.text-link{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-head); font-weight:600;
  color: var(--teal-dark);
}
.text-link i{ font-size:.85em; transition: transform .2s ease; }
.text-link:hover i{ transform: translateX(5px); }

/* ----- Section head ----- */
.section-head{ max-width: 620px; margin: 0 0 36px; }
.section-head h2{ font-size: clamp(1.55rem, 5vw, 2.2rem); }
.section-head-light .eyebrow{ color: var(--teal); }
.section-head-light h2, .section-head-light p{ color: var(--white); }

/* ----- Process ----- */
.process{ padding: 64px 0; background: var(--teal-light); }
.process-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.process-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
  overflow:hidden;
}
.process-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.process-number{
  font-family: var(--font-head);
  font-weight:700;
  font-size: 2rem;
  color: var(--teal);
  opacity:.5;
  display:block;
  margin-bottom: 6px;
}
.process-card h3{ font-size: 1.05rem; }
.process-card p{ margin-bottom:0; font-size: .92rem; }

/* ----- Services ----- */
.services{ padding: 64px 0; }
.services-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.service-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-teal); border-color: transparent; }
.service-card:hover .service-icon{ transform: scale(1.12) rotate(-6deg); background: var(--teal); color: var(--white); }
.service-card h3{ font-size: 1.02rem; }
.service-card p{ font-size: .9rem; margin-bottom:0; }
.service-icon{
  width: 48px; height:48px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-dark);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}
.service-card-cta{
  background: var(--dark);
  color: var(--white);
  display:flex; flex-direction:column; justify-content:center;
}
.service-card-cta h3{ color: var(--white); }
.service-card-cta p{ color: rgba(255,255,255,.7); }

/* ----- Why Us ----- */
.why-us{ background: var(--dark); padding: 64px 0; position: relative; overflow:hidden; }
.why-grid{
  position: relative; z-index: 2;
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.why-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .28s var(--ease), border-color .28s ease, background .28s ease;
}
.why-card:hover{ transform: translateY(-6px); border-color: var(--teal); background: rgba(255,255,255,.07); }
.why-card i{ color: var(--teal); font-size: 1.5rem; margin-bottom: 14px; display:block; transition: transform .3s var(--ease); }
.why-card:hover i{ transform: scale(1.15); }
.why-card h3{ color: var(--white); font-size: 1.02rem; }
.why-card p{ color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom:0; }

/* ----- CTA banner ----- */
.cta-banner{ background: var(--teal); padding: 48px 0; position: relative; overflow:hidden; }
.cta-inner{
  position: relative; z-index: 2;
  display:flex; flex-direction: column; align-items:flex-start; gap: 20px;
}
.cta-inner h2{ color: var(--white); font-size: clamp(1.35rem, 5vw, 1.9rem); margin-bottom:.25em; }
.cta-inner p{ color: rgba(255,255,255,.9); margin:0; }
.cta-actions{ display:flex; flex-direction: column; gap:12px; width: 100%; }

/* ----- FAQ ----- */
.faq{ padding: 64px 0; }
.faq-list{ display:flex; flex-direction:column; gap: 12px; }
.faq-item{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open]{ border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-item summary{
  cursor:pointer;
  font-family: var(--font-head);
  font-weight:600;
  font-size: .96rem;
  list-style:none;
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content: '\002B';
  font-size: 1.3rem;
  color: var(--teal-dark);
  transition: transform .25s ease;
  flex-shrink:0;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ margin: 12px 0 0; font-size: .92rem; }

/* ----- Contact ----- */
.contact{ padding: 64px 0; }
.contact-inner{
  display:flex;
  flex-direction: column;
  gap: 40px;
}
.contact-info h2{ font-size: clamp(1.5rem, 5vw, 2.1rem); max-width: 420px; }
.contact-list{ margin-top: 22px; display:flex; flex-direction:column; gap:14px; }
.contact-list li{ display:flex; align-items:center; gap:12px; font-weight:500; font-size:.94rem; }
.contact-list i{
  width: 36px; height:36px;
  border-radius: 10px;
  background: var(--teal-light);
  color: var(--teal-dark);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.contact-list a:hover{ color: var(--teal-dark); }

.contact-form{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.form-row{ margin-bottom: 16px; }
.form-row label{
  display:block;
  font-family: var(--font-head);
  font-weight:600;
  font-size: .8rem;
  margin-bottom: 6px;
  color: var(--dark-soft);
}
.form-row input, .form-row textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--bg);
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus, .form-row textarea:focus{
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(23,166,143,.15);
}
.form-note{ margin: 12px 0 0; font-size: .85rem; }

/* ----- Footer ----- */
.site-footer{ background: var(--dark); padding-top: 44px; }
.footer-inner{
  display:flex; flex-wrap:wrap; align-items:flex-start; justify-content:space-between; gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-tagline{ color: rgba(255,255,255,.6); margin:0; flex-basis: 100%; }
.footer-brand strong{ color: var(--white); font-family: var(--font-head); font-weight:600; }
.footer-links{ display:flex; flex-wrap:wrap; gap: 18px; }
.footer-links a{ color: rgba(255,255,255,.75); font-size:.88rem; transition: color .2s ease; }
.footer-links a:hover{ color: var(--teal); }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:36px; height:36px;
  border-radius:50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover{ background: var(--teal); transform: translateY(-3px); }
.footer-bottom{ padding: 18px 0; }
.footer-bottom p{ color: rgba(255,255,255,.45); font-size: .8rem; margin:0; text-align:center; }
.footer-credit{ margin-top: 4px !important; }
.footer-credit a{ color: rgba(255,255,255,.65); text-decoration: underline; text-underline-offset: 2px; transition: color .2s ease; }
.footer-credit a:hover{ color: var(--teal); }

/* ----- Mobile call FAB ----- */
.mobile-call-fab{
  display:flex;
  position: fixed;
  bottom: 18px; right: 18px;
  width: 54px; height:54px;
  border-radius:50%;
  background: var(--teal);
  color: var(--white);
  align-items:center; justify-content:center;
  font-size: 1.25rem;
  box-shadow: var(--shadow);
  z-index: 90;
  animation: pulseGlow 2.6s ease-in-out infinite;
}

/* ==========================================================================
   Responsive, scale up from mobile to tablet/desktop
   ========================================================================== */
@media (min-width: 640px){
  .hero-actions{ flex-direction: row; }
  .hero-actions .btn{ width: auto; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-grid{ grid-template-columns: repeat(2, 1fr); }
  .cta-inner{ flex-direction: row; align-items:center; justify-content:space-between; }
  .cta-actions{ flex-direction: row; width:auto; }
}

@media (min-width: 860px){
  .container{ padding: 0 32px; }
  .main-nav{
    display:flex; gap: 30px;
  }
  .main-nav a{
    font-family: var(--font-head);
    font-weight:500;
    font-size: .9rem;
    color: var(--dark-soft);
    position: relative;
    padding: 4px 0;
  }
  .main-nav a::after{
    content:'';
    position:absolute; left:0; bottom:-2px;
    width:0; height:2px;
    background: var(--teal);
    transition: width .25s var(--ease);
  }
  .main-nav a:hover{ color: var(--teal-dark); }
  .main-nav a:hover::after{ width:100%; }
  .main-nav.open{
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    border-bottom: none;
    box-shadow: none;
  }
  .main-nav.open a{ padding: 4px 0; border-bottom: none; font-size: .9rem; font-weight:500; }
  .nav-toggle{ display:none; }

  .header-inner{ padding-top: 16px; padding-bottom: 16px; }
  .logo-img{ height: 68px; }

  .hero{ padding: 72px 0 0; }
  .hero-inner{ flex-direction: row; align-items:center; padding-bottom: 60px; }
  .hero-copy{ flex: 1.05; }
  .hero-art{ flex: .95; height: 380px; }
  .tile-1{ width: 118px; height:118px; font-size: 2.4rem; }
  .tile-2{ width: 78px; height:78px; }
  .tile-3{ width: 72px; height:72px; }
  .hero-card{ font-size: .82rem; padding: 14px 16px; }
  .hero-card i{ font-size: 1.3rem; }

  .about-inner{ flex-direction: row; align-items:center; gap: 56px; }
  .about-art{ display:block; flex: .85; }
  .about-copy{ flex: 1.15; }

  .services-grid{ grid-template-columns: repeat(4, 1fr); }
  .why-grid{ grid-template-columns: repeat(4, 1fr); }
  .process-grid{ grid-template-columns: repeat(4, 1fr); }

  .contact-inner{ flex-direction: row; gap: 56px; }
  .contact-info{ flex: .9; }
  .contact-form{ flex: 1.1; padding: 32px; }

  .footer-tagline{ flex-basis: auto; }
}

@media (min-width: 1080px){
  .about{ padding: 100px 0; }
  .process{ padding: 100px 0; }
  .services{ padding: 100px 0; }
  .why-us{ padding: 100px 0; }
  .faq{ padding: 100px 0; }
  .contact{ padding: 100px 0; }
  .cta-banner{ padding: 56px 0; }
}
