body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: transparent;
}

.bg-blur {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: url('openart-kitchen-bg.jpg') center center / cover no-repeat;
  filter: blur(16px) brightness(0.7);
  z-index: 1;
  pointer-events: none;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(12, 24, 36, 0.55);
  z-index: 2;
  pointer-events: none;
}

.container, .services-container {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 52px auto;
  padding: 0 24px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 98%;
  margin: 0 auto 28px auto;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-width: 110px;
  margin-right: 1rem;
  height: auto;
}

.logo span {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

nav {
  display: flex;
  gap: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
}

nav a:hover {
  color: #F2635F;
}

.page-content, .gallery-content {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 120px auto 0 auto;
}

.page-content h1, .gallery-content h1, .services-title {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
}

.page-content p, .gallery-content p, .services-intro {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 auto;
  max-width: 900px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}

footer {
  text-align: center;
  color: #fff;
  padding: 2rem;
  font-size: 1rem;
  background: rgba(12, 24, 36, 0.55);
  margin-top: 2rem;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
  z-index: 3;
  position: relative;
}

.contact-info {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}
.contact-info a {
  color: #F2635F;
  text-decoration: underline;
}

.services-title {
  font-size: 2.8em;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: left;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.services-intro {
  font-size: 1.2em;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.service-item {
  background: rgba(25,25,25,0.83);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s;
}

.service-item:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.33);
}

.service-image {
  width: 100%;
  height: 210px;
  background: #555 url('https://via.placeholder.com/400x210?text=Service+Image') center center / cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.service-text {
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
  padding: 24px 10px 32px 10px;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 1px 5px rgba(0,0,0,0.21);
}
.service-item:nth-child(1) .service-image {
  background: #555 url('kitchen.jpg') center center / cover no-repeat;
}
.service-item:nth-child(2) .service-image {
  background: #555 url('bathroom.jpg') center center / cover no-repeat;
}
.service-item:nth-child(3) .service-image {
  background: #555 url('flooring.jpg') center center / cover no-repeat;
}
.service-item:nth-child(4) .service-image {
  background: #555 url('handyman.jpg') center center / cover no-repeat;
}
.service-item:nth-child(5) .service-image {
  background: #555 url('paint.jpg') center center / cover no-repeat;
}
.service-item:nth-child(6) .service-image {
  background: #555 url('rental.jpg') center center / cover no-repeat;
}
