/* SV Ocean Services – Services Page (home theme) */
.page-services {
  --sv-gold: #c9a227;
  --sv-gold-dark: #b08d1f;
  --sv-black: #111111;
  --sv-text: #333333;
  --sv-muted: #6b6b6b;
  --sv-light: #f7f7f7;
  --sv-white: #ffffff;
  font-family: 'Poppins', sans-serif;
  color: var(--sv-text);
}

.page-services .header-v2-container,
.page-services .hp-container {
  max-width: 1240px;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.page-services .header--v2 .menu {
  display: flex;
}

/* Hero */
.sp-hero {
  position: relative;
  min-height: clamp(280px, 42vh, 420px);
  display: flex;
  align-items: center;
  background: url('../images/services/329389ff45cb3335c2ba145bdfc7f60200d1e1f1.jpg') center / cover no-repeat;
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 28, 0.72) 0%, rgba(10, 18, 28, 0.45) 55%, rgba(10, 18, 28, 0.25) 100%);
}

.sp-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.sp-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 500;
  color: var(--sv-white);
  text-transform: none;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
  line-height: 1.15;
}

.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
}

.sp-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sp-breadcrumb a:hover {
  color: var(--sv-gold);
}

.sp-breadcrumb span:last-child {
  color: var(--sv-white);
}

.sp-breadcrumb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--sv-gold) 50%, #2da397 50%);
  flex-shrink: 0;
}

/* Main section */
.sp-main {
  padding: 64px 0 80px;
  background: #f4f4f4;
}

.sp-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.sp-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--sv-black);
  margin-bottom: 14px;
}

.sp-head p {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

/* Service cards grid */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sp-card {
  background: var(--sv-white);
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.sp-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.08);
}

.sp-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #faf6eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sv-gold-dark);
  font-size: 20px;
  margin-bottom: 20px;
}

.sp-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #2b2b2b;
  margin-bottom: 12px;
  line-height: 1.35;
}

.sp-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .sp-grid {
    gap: 20px;
  }

  .sp-card {
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  .page-services .header-v2-container,
  .page-services .hp-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .sp-hero {
    min-height: 240px;
  }

  .sp-main {
    padding: 48px 0 64px;
  }

  .sp-head {
    margin-bottom: 32px;
  }

  .sp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
