/* ========================================
   Marine / Destinations / Advisory Pages
   Shared service page styles
   ======================================== */

/* === Service Cards === */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.75rem 1.5rem 2rem;
}

.service-card-body h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.service-card-body p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
}

@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

/* === Feature Image === */
.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-xl) auto var(--space-lg);
  max-width: 900px;
}

.feature-image img {
  width: 100%;
  height: auto;
}

/* === Trust Section === */
.trust-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 0;
}

.trust-section h2 {
  margin-bottom: var(--space-md);
}

.trust-section p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

/* === Service Page Intro === */
.service-intro {
  max-width: 900px;
}

.service-intro p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
}

.service-intro p + p {
  margin-top: var(--space-md);
}
