:root {
  --accent: #008000;
  --accent-dark: #006600;
  --accent-light: rgba(0,128,0,0.08);
}

.sh-banner { position: relative; overflow: hidden; background: linear-gradient(135deg, #F0FFF0 0%, #ffffff 50%, #F0FFF0 100%); padding: calc(var(--header-height) + 60px) 0 70px; }
.sh-banner::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5v50M5 30h50M12 12l36 36M48 12L12 48' fill='none' stroke='rgba(0,128,0,0.05)' stroke-width='1'/%3E%3C/svg%3E"); background-size: 80px 80px; }
.sh-banner h1 { font-size: 2.8rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.sh-banner h1 span { color: var(--accent); }
.sh-banner p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.sh-banner .breadcrumb a, .sh-banner .breadcrumb span { color: var(--gray-dark); }
.sh-banner .breadcrumb span { color: var(--accent); }

.sh-section-title h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; color: var(--white); }
.sh-section-title h2 span { color: var(--accent); }
.sh-section-title p { color: var(--gray); max-width: 550px; }
.sh-section-title .sh-bar { width: 50px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 14px; }

.sh-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sh-service-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; }
.sh-service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: #D32F2F; transform: scaleX(0); transition: var(--transition); }
.sh-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.sh-service-card:hover::after { transform: scaleX(1); }
.sh-service-card .sh-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--accent); margin-bottom: 16px; transition: var(--transition); }
.sh-service-card:hover .sh-icon { background: #D32F2F; color: #ffffff; }
.sh-service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.sh-service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

.sh-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sh-stat { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 22px 16px; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.sh-stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); }
.sh-stat .num { font-size: 1.8rem; font-weight: 900; color: var(--white); }
.sh-stat .num span { color: var(--accent); }
.sh-stat .label { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }

.sh-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sh-process-step { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.sh-process-step:hover { transform: translateY(-4px); border-color: #D32F2F; }
.sh-process-step .sh-step-icon { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.2rem; color: var(--accent); transition: var(--transition); }
.sh-process-step:hover .sh-step-icon { background: #D32F2F; color: #ffffff; }
.sh-process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.sh-process-step p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

.sh-tools { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sh-tools span { padding: 8px 20px; background: var(--darker); border: 1px solid var(--border-color); border-radius: 6px; font-size: 0.82rem; font-weight: 600; color: var(--gray); transition: var(--transition); }
.sh-tools span:hover { border-color: #D32F2F; color: #D32F2F; }

.sh-pricing-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.sh-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.sh-pricing-card.featured { border: 2px solid var(--accent); transform: scale(1.05); }
.sh-pricing-card.featured:hover { transform: scale(1.05) translateY(-6px); }
.sh-pricing-card .sh-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #ffffff; padding: 4px 18px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.sh-pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.sh-pricing-card .sh-price { font-size: 2.4rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.sh-pricing-card .sh-price span { font-size: 1rem; color: var(--gray); }
.sh-pricing-card .sh-duration { color: var(--gray); font-size: 0.82rem; margin-bottom: 20px; }
.sh-pricing-card ul { text-align: left; margin-bottom: 24px; }
.sh-pricing-card ul li { padding: 7px 0; display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--gray-light); }
.sh-pricing-card ul li i.fa-check { color: var(--green); }
.sh-pricing-card ul li i.fa-times { color: var(--gray-dark); }

.sh-gallery-wrapper { overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%); }
.sh-gallery-track { display: flex; gap: 20px; width: max-content; animation: shGalleryScroll 60s linear infinite; padding: 16px 0; }
.sh-gallery-wrapper:hover .sh-gallery-track { animation-play-state: paused; }
.sh-port-item { flex: 0 0 300px; position: relative; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border-color); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.sh-port-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.sh-port-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.sh-port-item:hover img { transform: scale(1.08); }
.sh-port-overlay { position: absolute; top: 0; left: 0; right: 0; height: 220px; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; opacity: 0; transition: opacity 0.4s ease; }
.sh-port-item:hover .sh-port-overlay { opacity: 1; }
.sh-port-overlay h4 { color: #ffffff; font-size: 0.95rem; font-weight: 700; }
.sh-port-overlay span { color: rgba(255,255,255,0.7); font-size: 0.78rem; }

@keyframes shGalleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sh-cta { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.sh-cta::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E"); }
.sh-cta h2 { font-size: 2.2rem; font-weight: 800; color: #ffffff; margin-bottom: 12px; position: relative; }
.sh-cta p { color: rgba(255,255,255,0.85); max-width: 550px; margin: 0 auto 28px; position: relative; }
.sh-cta .btn-secondary { background: var(--accent); position: relative; }
.sh-cta .btn-secondary:hover { background: #D32F2F; }

@media (max-width: 1024px) {
  .sh-services-grid { grid-template-columns: repeat(2, 1fr); }
  .sh-stats { grid-template-columns: repeat(2, 1fr); }
  .sh-process { grid-template-columns: repeat(2, 1fr); }
  .sh-gallery-track { animation-duration: 55s; gap: 16px; }
  .sh-port-item { flex: 0 0 260px; }
  .sh-port-item img { height: 190px; }
  .sh-port-overlay { height: 190px; }
}
@media (max-width: 768px) {
  .sh-banner h1 { font-size: 2rem; }
  .sh-services-grid { grid-template-columns: 1fr; }
  .sh-stats { grid-template-columns: repeat(2, 1fr); }
  .sh-process { grid-template-columns: 1fr; }
  .sh-gallery-track { animation-duration: 50s; gap: 14px; padding: 12px 0; }
  .sh-port-item { flex: 0 0 230px; }
  .sh-port-item img { height: 170px; }
  .sh-port-overlay { height: 170px; }
}
@media (max-width: 480px) {
  .sh-banner h1 { font-size: 1.6rem; }
  .sh-stats { grid-template-columns: 1fr; }
  .sh-gallery-track { animation-duration: 45s; gap: 12px; }
  .sh-port-item { flex: 0 0 200px; }
  .sh-port-item img { height: 150px; }
  .sh-port-overlay { height: 150px; }
}
