:root {
  --spc-blue: #A7D8F5;
  --spc-blue-dark: #6FBFEA;
  --spc-blue-soft: #EAF6FD;

  --spc-green: #7FB77E;
  --spc-green-dark: #5C9D5B;
  --spc-green-soft: #EDF6ED;

  --spc-text: #2F3A40;
  --spc-muted: #6C7A80;
  --spc-white: #ffffff;
}

body {
  color: var(--spc-text);
  background-color: var(--spc-cream);
}
body {
  font-family: 'Chewy', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.6;
  }

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Buttons */
.spc-btn-primary {
  background-color: var(--spc-blue-dark);
  border-color: var(--spc-blue-dark);
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
}

.spc-btn-primary:hover {
  background-color: var(--spc-blue-dark);
  border-color: var(--spc-blue-dark);
}

.spc-btn-outline {
  border: 1px solid var(--spc-green);
  color: var(--spc-green);
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  background: transparent;
}

.spc-btn-outline:hover {
  background-color: var(--spc-green);
  color: #fff;
}

/* Hero */
.spc-hero {
  background: linear-gradient(135deg, var(--spc-blue-soft) 0%, #ffffff 100%);
  padding: 3rem 0 2.5rem;
}

.spc-badge {
  display: inline-block;
  background: rgba(167, 216, 245, 0.3);
  color: var(--spc-blue-dark);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.spc-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 1rem;
}

.spc-hero p {
  font-size: 1.1rem;
  color: var(--spc-muted);
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.spc-hero-card {
  background: var(--spc-white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(47, 53, 47, 0.08);
}

.spc-hero-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 1.25rem;
}

/* Sections */
.spc-section {
  padding: 3rem 0;
}

.spc-section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.spc-section-subtitle {
  color: var(--spc-muted);
  max-width: 40rem;
  margin: 0 auto 3rem;
}

/* Cards */
.spc-service-card,
.spc-review-card,
.spc-contact-card {
  background: var(--spc-white);
  border: 1px solid rgba(84, 115, 92, 0.1);
  border-radius: 1.25rem;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(47, 53, 47, 0.04);
}

.spc-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(127, 183, 126, 0.2);
  color: var(--spc-green-dark);
  margin-bottom: 1rem;
}

.spc-service-card h3,
.spc-review-card h3,
.spc-contact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.spc-service-card p,
.spc-review-card p,
.spc-contact-card p,
.spc-contact-card a {
  color: var(--spc-muted);
  margin-bottom: 0;
  text-decoration: none;
}

/* Trust list */
.spc-trust-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.spc-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.spc-trust-list i {
  color: var(--spc-green-dark);
  margin-top: 0.15rem;
}

/* CTA */
.spc-cta {
  background: var(--spc-green-dark);
  color: #fff;
  color: #fff;
  border-radius: 1.75rem;
  padding: 3rem;
}

.spc-cta p {
  color: rgba(255,255,255,0.8);
}

/* Footer */
.spc-footer {
  background: #1f2821;
  color: rgba(255,255,255,0.8);
}

.spc-footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

/* Mobile tweaks */
@media (max-width: 991.98px) {
  .spc-hero {
    text-align: center;
  }

  .spc-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .spc-hero-actions {
    justify-content: center;
  }
}

.navbar {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.navbar-brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--spc-text) !important;
}

.nav-link {
  color: var(--spc-text) !important;
  font-weight: 500;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.nav-link:hover {
  color: var(--spc-blue-dark) !important;
}

.navbar {
  background-color: var(--spc-blue) !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-toggler {
  border-radius: 0.75rem;
  padding: 0.5rem 0.7rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.spc-footer {
  background: #2f3a40;
  color: rgba(255, 255, 255, 0.88);
}

.spc-footer h4,
.spc-footer h5 {
  color: #fff;
  font-weight: 700;
}

.spc-footer p,
.spc-footer li,
.spc-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.spc-footer a:hover {
  color: var(--spc-blue);
}

.spc-footer ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.spc-footer h4 {
  font-size: 1.4rem;
}

.spc-footer h5 {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.spc-footer p,
.spc-footer li {
  font-size: 0.95rem;
}

.navbar-brand {
  color: var(--spc-text) !important;
}

.nav-link {
  color: var(--spc-text) !important;
}

.nav-link:hover {
  color: var(--spc-blue-dark) !important;
}

.navbar {
  backdrop-filter: blur(6px);
}

.navbar {
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.spc-inner-hero {
  padding: 3.5rem 0 3rem;
}

.spc-feature-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
  color: var(--spc-muted);
}

.spc-feature-list li {
  margin-bottom: 0.55rem;
}

.spc-service-note {
  color: var(--spc-text);
  font-weight: 500;
}

.spc-service-detail-card {
  background: var(--spc-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(47, 53, 47, 0.04);
}

.spc-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.spc-detail-row:last-child {
  border-bottom: none;
}

.spc-detail-row strong {
  color: var(--spc-text);
}

.spc-detail-row span {
  color: var(--spc-muted);
  text-align: right;
}

.spc-price-line {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--spc-blue-dark);
  margin-bottom: 0.75rem;
}

@media (max-width: 767.98px) {
  .spc-detail-row {
    flex-direction: column;
  }

  .spc-detail-row span {
    text-align: left;
  }
}

.spc-gallery-card {
  background: var(--spc-white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(47, 53, 47, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spc-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(47, 53, 47, 0.1);
}

.spc-gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.spc-gallery-caption {
  padding: 1rem 1.1rem;
  color: var(--spc-text);
  font-weight: 500;
  font-size: 0.97rem;
}

@media (max-width: 767.98px) {
  .spc-gallery-img {
    height: 240px;
  }
}

.spc-about-image-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(47, 53, 47, 0.08);
}

.spc-about-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.spc-about-text {
  color: var(--spc-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.spc-about-quote-card {
  background: var(--spc-blue-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(47, 53, 47, 0.04);
}

.spc-about-quote-card h3 {
  font-weight: 700;
}

.spc-about-quote-card p {
  color: var(--spc-text);
  line-height: 1.8;
}

@media (max-width: 767.98px) {
  .spc-about-img {
    min-height: 300px;
  }
}

.spc-contact-form-card {
  background: var(--spc-white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.form-control {
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.spc-contact-form-card {
  background: var(--spc-white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
}

.spc-bio-card {
  background: var(--spc-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(47, 53, 47, 0.04);
}

.spc-bio-image-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(47, 53, 47, 0.08);
}

.spc-bio-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* Mobile optimization for bio image */
@media (max-width: 767.98px) {

  .spc-bio-image-wrap {
    margin-bottom: 1.5rem;
  }
  .spc-bio-img {
    min-height: 220px;      /* shorter on mobile */
    max-height: 260px;      /* prevents huge images */
    object-fit: cover;      /* keeps it nicely cropped */
    border-radius: 1rem;
  }
}

.spc-booking-card {
  background: var(--spc-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(47, 53, 47, 0.04);
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .spc-booking-card {
    padding: 0.5rem;
  }
}

.spc-booking-option {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--spc-white);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(47, 53, 47, 0.04);
  transition: all 0.2s ease;
  cursor: pointer;
}

.spc-booking-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(47, 53, 47, 0.08);
}

.spc-booking-option.active {
  border-color: var(--spc-blue-dark);
  background: var(--spc-blue-soft);
}

.spc-booking-selected-label {
  font-size: 0.9rem;
  color: var(--spc-muted);
}

