:root {
  --navy: #0d5790;
  --deep-blue: #1366a6;
  --sky-blue: #0f97cd;
  --action-orange: #eb721c;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scrollbar-gutter: stable;
}

body {
  background: #f6f7fb;
  color: #223047;
  width: 100%;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.main-nav {
  background: var(--white);
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  width: auto;
  height: 62px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.bar {
  width: 24px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--action-orange);
  transition: all 0.3s ease;
}

.desktop-menu {
  display: flex;
  gap: 2rem;
}

.desktop-menu a {
  color: var(--navy);
  font-weight: 300;
  transition: color 0.3s ease;
}

.desktop-menu a:hover {
  color: var(--action-orange);
}

.btn-primary {
  background: var(--sky-blue);
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--deep-blue);
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  border: 2px solid rgba(13, 87, 144, 0.15);
  color: var(--navy);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(15, 151, 205, 0.1);
}

.services-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(13, 87, 144, 0.92), rgba(19, 102, 166, 0.9)), url('Assets/Get3.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 87, 144, 0.35);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  color: #a5d4ff;
  margin-bottom: 1rem;
}

.services-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.75rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.image-stack {
  position: relative;
  height: 400px;
}

.cleaner-img {
  position: absolute;
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.img-1 {
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-5deg);
}

.img-2 {
  top: 30px;
  left: 60px;
  z-index: 2;
  transform: rotate(3deg);
}

.img-3 {
  top: 60px;
  left: 120px;
  z-index: 1;
  transform: rotate(-2deg);
}

.section-padding {
  padding: 5rem 5%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.9rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header p {
  color: #5b687f;
  font-size: 1rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 18px 40px rgba(15, 78, 140, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(15, 78, 140, 0.12);
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sky-blue), var(--deep-blue));
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-card p {
  color: #5b687f;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.service-card li {
  color: #4f586d;
  padding-left: 1.2rem;
  position: relative;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--action-orange);
}

.featured-advantages {
  background: linear-gradient(180deg, #f9fbff 0%, #edf2f9 100%);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.advantage-copy h2,
.process-header h2 {
  color: var(--navy);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.advantage-copy p,
.process-header p,
.testimonial-wrap p {
  color: #5b687f;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.advantage-copy ul {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.advantage-copy li {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #45536d;
  font-weight: 600;
}

.advantage-copy li span {
  color: var(--action-orange);
}

.advantage-preview {
  display: grid;
  gap: 1.2rem;
}

.preview-card {
  background: white;
  padding: 1.8rem;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 78, 140, 0.08);
  transition: transform 0.3s ease;
}

.preview-card:hover {
  transform: translateY(-5px);
}

.preview-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(15, 151, 205, 0.12);
  color: var(--deep-blue);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.preview-card h3 {
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.process-section {
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-step {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.4s ease;
}

.process-step:hover {
  transform: translateY(-8px);
}

.process-step span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sky-blue);
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.process-step p {
  color: #5b687f;
  line-height: 1.75;
}

.testimonial-strip {
  padding: 4rem 5%;
  background: linear-gradient(135deg, rgba(14, 61, 120, 0.95), rgba(19, 102, 166, 0.95));
  color: white;
}

.testimonial-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.testimonial-strip h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.testimonial-strip p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  font-size: small;
  max-width: 700px;
  margin-bottom: 40px;
  margin: 0 auto;
}

.main-footer {
  background: var(--navy);
  color: white;
  padding: 4rem 5% 2rem;
  margin-top: 0;
}

[class*="elfsight-app"] {
  position: fixed !important;
  left: auto !important;
  right: 16px !important;
  bottom: 16px !important;
  max-width: calc(100vw - 32px) !important;
  z-index: 999 !important;
  width: auto !important;
  margin: 0 !important;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--sky-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.footer-logo span {
  color: var(--action-orange);
}

.footer-slogan {
  color: var(--action-orange);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.socials {
  display: flex;
  gap: 1rem;
  margin-left: 6rem;
}

.social-link {
  color: white;
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.social-link:hover {
  background: var(--sky-blue);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #d7e4ff;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.newsletter p {
  color: #cfd9f2;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1rem;
}

.btn-newsletter {
  background: var(--action-orange);
  color: white;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
}

.btn-newsletter:hover {
  background: var(--deep-blue);
}

.copyright {
  color: #c0cbdf;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  font-size: 0.95rem;
}

.fade-up,
.fade-right,
.fade-left {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right {
  transform: translateX(-40px);
}

.fade-left {
  transform: translateX(40px);
}

.fade-in {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

@media (max-width: 1024px) {
  .main-nav {
    padding: 0.9rem 3%;
  }

  .hamburger {
    display: inline-flex;
  }

  .desktop-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .desktop-menu a {
    width: 100%;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(13, 87, 144, 0.08);
  }

  .desktop-menu a:last-child {
    border-bottom: none;
  }

  .desktop-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-actions {
    display: none;
  }

  .hero-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    display: flex;
    justify-content: center;
  }

  .image-stack {
    width: min(100%, 360px);
    height: 320px;
  }

  .cleaner-img {
    width: 220px;
    height: 280px;
  }

  .img-2 {
    left: 40px;
  }

  .img-3 {
    left: 80px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .main-nav {
    padding: 1rem 3%;
  }

  .logo-img {
    height: 52px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-media {
    display: none;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .services-hero h1 {
    font-size: 2.8rem;
  }

  .section-padding {
    padding: 3rem 3%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .main-footer {
    padding-bottom: 1.5rem;
  }

  [class*="elfsight-app"] {
    right: 12px !important;
    bottom: 12px !important;
    max-width: calc(100vw - 24px) !important;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 48px;
  }

  .services-hero h1 {
    font-size: 2.4rem;
  }

  .eyebrow {
    font-size: 0.8rem;
  }

  .section-header h2,
  .advantage-copy h2,
  .process-header h2 {
    font-size: 2.2rem;
  }

  .preview-card,
  .service-card,
  .process-step {
    padding: 1.5rem;
  }
}
