/**
 * Frontend layout — readable text, minimal empty space
 */
.sh-page-main,
.sh-main {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

/* Sections — tight vertical rhythm */
.sh-section {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .sh-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.sh-section--tight {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.sh-section--booking {
  padding-top: 1rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .sh-section--booking {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }
}

.sh-section-head {
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .sh-section-head {
    margin-bottom: 1.25rem;
  }
}
.sh-section-head h2 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}
@media (min-width: 768px) {
  .sh-section-head h2 {
    font-size: 1.625rem;
  }
}
.sh-section-head p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.sh-section-head--light h2 { color: #1f2937; }
.sh-section-head--light p { color: #4b5563; }
.sh-section-head--dark h2 { color: #fff; }
.sh-section-head--dark p { color: rgba(191, 219, 254, 0.95); }

.sh-home-ad-strip:empty,
.sh-home-ad-strip:not(:has(.sh-ad-slot)) {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Portfolio slider — full-width card aligned with site max-w-7xl sections */
#service-portfolio {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  #service-portfolio {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
#service-portfolio .sh-section-head {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  #service-portfolio .sh-section-head {
    margin-bottom: 1.5rem;
  }
}
#service-portfolio .sh-portfolio-slider-wrap {
  width: 100%;
}
#service-portfolio .sh-portfolio-slider-frame {
  border-radius: 1rem;
}
@media (min-width: 768px) {
  #service-portfolio .sh-portfolio-slider-frame {
    border-radius: 1.25rem;
  }
}
#service-portfolio .sh-portfolio-slide {
  min-height: 14rem;
  height: 14rem;
}
@media (min-width: 640px) {
  #service-portfolio .sh-portfolio-slide {
    min-height: 16.5rem;
    height: 16.5rem;
  }
}
@media (min-width: 1024px) {
  #service-portfolio .sh-portfolio-slide {
    min-height: 19rem;
    height: 19rem;
  }
}
@media (min-width: 1280px) {
  #service-portfolio .sh-portfolio-slide {
    min-height: 20.5rem;
    height: 20.5rem;
  }
}
#service-portfolio .sh-portfolio-slide-inner {
  padding: 1.25rem 1.5rem;
}
@media (min-width: 768px) {
  #service-portfolio .sh-portfolio-slide-inner {
    padding: 1.75rem 2.5rem;
  }
}
#service-portfolio .sh-portfolio-slide h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  #service-portfolio .sh-portfolio-slide h3 {
    font-size: 1.875rem;
    margin-bottom: 0.65rem;
  }
}
@media (min-width: 1024px) {
  #service-portfolio .sh-portfolio-slide h3 {
    font-size: 2rem;
  }
}
#service-portfolio .sh-portfolio-slide p {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  #service-portfolio .sh-portfolio-slide p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
  }
}
#service-portfolio .sh-portfolio-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  #service-portfolio .sh-portfolio-icon {
    width: 4.25rem;
    height: 4.25rem;
    margin-bottom: 1rem;
  }
}
#service-portfolio .sh-portfolio-icon i {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  #service-portfolio .sh-portfolio-icon i {
    font-size: 1.75rem;
  }
}
#service-portfolio .sh-portfolio-badge {
  font-size: 0.875rem;
  padding: 0.4rem 0.85rem;
}
@media (min-width: 768px) {
  #service-portfolio .sh-portfolio-badge {
    font-size: 0.9375rem;
    padding: 0.45rem 1rem;
  }
}
#service-portfolio #portfolioIndicators {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  #service-portfolio #portfolioIndicators {
    margin-top: 1.25rem;
  }
}
#service-portfolio #portfolioPrevBtn,
#service-portfolio #portfolioNextBtn {
  padding: 0.65rem 0.75rem;
}
@media (min-width: 768px) {
  #service-portfolio #portfolioPrevBtn {
    left: 1.25rem;
  }
  #service-portfolio #portfolioNextBtn {
    right: 1.25rem;
  }
  #service-portfolio #portfolioPrevBtn,
  #service-portfolio #portfolioNextBtn {
    padding: 0.85rem 0.95rem;
  }
  #service-portfolio #portfolioPrevBtn i,
  #service-portfolio #portfolioNextBtn i {
    font-size: 1.35rem;
  }
}

/* Service cards — readable + dense grid (no orphan gap) */
.sh-services-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.875rem;
}
@media (min-width: 640px) {
  .sh-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .sh-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .sh-services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.sh-home .service-card {
  padding: 1rem 1.125rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sh-home .service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.sh-home .service-card > p {
  font-size: 0.9375rem;
  line-height: 1.45;
  margin-bottom: 0.65rem;
}
.sh-home .service-card ul {
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  flex: 1;
}
.sh-home .service-card ul li {
  margin-bottom: 0.2rem;
}
.sh-home .service-card button,
.sh-home .service-card .w-full {
  margin-top: auto;
  font-size: 0.9375rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* Why choose — compact */
.sh-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .sh-why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.sh-why-grid h3 {
  font-size: 1rem;
  font-weight: 700;
}
.sh-why-grid p {
  font-size: 0.9375rem;
  line-height: 1.45;
}

/* Compact contact (replaces huge block) */
.sh-contact-compact {
  background: linear-gradient(135deg, #0f2744 0%, #1e3a5f 50%, #0f2744 100%);
  color: #fff;
  padding: 1.25rem 0;
}
.sh-contact-compact-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.sh-contact-compact-head h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.sh-contact-compact-head p {
  font-size: 0.9375rem;
  color: rgba(191, 219, 254, 0.9);
  margin: 0;
  max-width: 36rem;
}
.sh-contact-compact-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: #e8762b;
  color: #0f172a !important;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
}
.sh-contact-compact-cta:hover {
  background: #d46920;
}
.sh-contact-compact-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .sh-contact-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .sh-contact-compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .sh-contact-compact-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.sh-contact-chip {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.9375rem;
}
.sh-contact-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(251, 191, 36, 0.4);
}
.sh-contact-chip i {
  color: #fbbf24;
  font-size: 0.875rem;
}
.sh-contact-chip-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
.sh-contact-chip-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff !important;
}
.sh-contact-chip-flag {
  font-size: 1.125rem;
  line-height: 1;
}

/* Footer — denser, larger readable text */
.sh-footer-compact .container {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.sh-footer-compact .sh-footer-actions {
  margin-bottom: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  gap: 0.35rem !important;
}
.sh-footer-compact .sh-footer-pill {
  font-size: 0.8125rem !important;
  padding: 0.4rem 0.7rem !important;
}
.sh-footer-compact .sh-footer-fold-title {
  font-size: 0.8125rem;
  margin-bottom: 0.35rem;
}
.sh-footer-brand .sh-footer-brand-desc {
  font-size: 0.875rem !important;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .sh-footer-brand .sh-footer-brand-desc {
    font-size: 0.9375rem !important;
  }
}
.sh-footer-compact .font-bold.text-sm {
  font-size: 0.9375rem !important;
}
.sh-footer-link-list {
  columns: 1;
}
@media (min-width: 640px) {
  .sh-footer-link-list {
    columns: 2;
    column-gap: 1rem;
  }
}
.sh-footer-office-chip p {
  font-size: 0.875rem !important;
}
.sh-footer-office-chip a {
  font-size: 0.875rem !important;
}
.sh-footer-compact .sh-footer-main {
  gap: 0.75rem 1rem !important;
}
.sh-footer-compact .mt-4.pt-3 {
  margin-top: 0.75rem !important;
  padding-top: 0.65rem !important;
  font-size: 0.8125rem !important;
}
