body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  margin: 0;
  background: #f9fafb;
  color: #1b1a1a;
}

.container_1 {
  margin: 0 auto;
  padding: 0 7vw;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9fafb;
  min-height: 70px;
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start; /* keep the logo aligned left */
    gap: 8px;
    width: 100%;
    margin-top: 25px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-end;  /* push links to the right */
  }
}


.nav-logo {
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

/* Hide nav-logo on mobile */
@media (max-width: 600px) {
  .nav-logo {
    display: none;
  }
}


.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  color: #484343;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s, border-bottom 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-link.active,
.nav-link:focus {
  font-weight: 600;
  border-bottom: 2px solid #1b1a1a;
}
.nav-link:hover {
  border-bottom: 2px solid #bbb;
}

.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 80px 0;
}
.main-heading {
  font-size: 5.3rem;
  font-weight: 700;
  margin: 50px 0 32px 0;
  letter-spacing: -3.5px;
  color: #1b1a1a;
  text-align: left;
}

/* === Services Heading on Mobile === */
@media (max-width: 600px) {
  .services-heading,
  .main-heading {
    font-size: 2rem;     /* match portfolio header size */
    margin: 20px 0 0px 0; /* same spacing as portfolio */

    letter-spacing: -0.6px;
  }
}






.services-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 0 60px 0;
}
.services-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 22px 0 30px 0;
  color: #393939;
  letter-spacing: -0.8px;
  text-align: left;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px 28px;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; gap: 18px 0; }
}
.service-card {
  background: #f9fafb;
  border: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  text-decoration: none;
  color: #181818;
  border-radius: 0;
  overflow: hidden;
  min-height: 440px;
  transition: border-color 0.17s, transform 0.13s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-3px) scale(1.002);
  z-index: 2;
}
.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  background: #ececec;
}
.service-card-body {
  flex: 1 1 0;
  padding: 24px 18px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card-body h3 {
  font-size: 1.25rem;
  margin: 0 0 10px 0;
  font-weight: 800;
}
.service-card-body ul {
  font-size: 1.03rem;
  color: #5b5954;
  margin: 0 0 12px 18px;
  padding: 0;
  line-height: 1.6;
  list-style: disc;
}
.service-card-body li { margin-bottom: 2px; }
.service-price {
  margin-top: auto;
  color: #5a5a5a;
  font-weight: 400;
  font-size: 1.09rem;
  letter-spacing: 0.02em;
}
.card-arrow {
  position: absolute;
  right: 22px;
  bottom: 24px;
  color: #b3a262;
  font-size: 1.33rem;
  transition: color 0.18s;
}
.service-card:hover .card-arrow { color: #181818; }

/* --- Footer (copy your theme) --- */
.footer {
  background: #232323;
  color: #fff;
  padding: 60px 0 60px 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}
.footer-grid {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-left { flex: 1 1 300px; }
.footer-logo { font-size: 2.2rem; font-weight: 700; margin-bottom: 36px; }
.footer-contact-block p { margin: 0 0 10px 0; font-size: 1.08rem; }
.footer-right {
  flex: 2 1 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}
.footer-socials {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-socials img { width: 36px; height: 36px; transition: opacity 0.2s; }
.footer-socials a:hover img { opacity: 0.7; }
.footer-links { display: flex; gap: 26px; margin-bottom: 10px; }
.footer-links a { color: #5a5555; text-decoration: none; font-size: 1rem; opacity: 0.8; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.footer-copy { font-size: 1rem; color: #5a5555; opacity: 0.8; text-align: right; }
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
    padding: 0 6vw;
  }
  .footer-right { align-items: flex-start; text-align: left; }
  .footer-copy { text-align: left; }
}


@media (max-width: 600px) {
  .services-section {
    padding-left: 5.5vw;   /* adjust as needed */
    padding-right: 5.5vw;  /* adjust as needed */
  }
}
