/* === Service Page Styles === */

/* Hero Section */
.service-hero {
  position: relative;
  height: 400px;
  background-image: url('https://images.squarespace-cdn.com/content/v1/6408827eb3d36b718ad40c38/4cb0132b-a942-499d-9958-81dd1b38c503/What%27s+included+in+a+watch+service.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.service-hero h1 {
  font-family: 'Kameron', serif;
  font-size: 48px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  margin-bottom: 10px;
}

.service-hero p {
  font-size: 20px;
  max-width: 600px;
  line-height: 1.6;
}

/* Service Grid Section */
.service-grid-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.service-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.service-intro h2 {
  font-family: 'Kameron', serif;
  font-size: 36px;
  margin-bottom: 15px;
  color: #333;
}

.service-intro p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-item-content {
  padding: 25px;
}

.service-item-content h3 {
  font-family: 'Kameron', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.service-item-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* Call to Action Section */
.service-cta {
  padding: 60px 20px;
  text-align: center;
  background-color: #222;
  color: #fff;
}

.service-cta h2 {
  font-family: 'Kameron', serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.service-cta p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px auto;
  color: #ccc;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  font-family: 'Kameron', serif;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #fff;
}

.cta-button:hover {
  background-color: transparent;
  color: #fff;
}


/* Responsive Adjustments */
@media (max-width: 767px) {
  .service-hero h1 {
    font-size: 36px;
  }
  .service-hero p {
    font-size: 18px;
  }
  .service-intro h2 {
    font-size: 30px;
  }
}