/* =============================================
   Shanet Features — Frontend Styles
   Designed to match ezrasclean.com aesthetic
   Font: Poppins (Google Fonts)
   ============================================= */

/* --- Global font for all Shanet pages --- */
.shanet-services-page,
.shanet-referral-page,
.shanet-book-page,
.shanet-pkg-page,
.shanet-pricing-page {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.shanet-services-page h1, .shanet-services-page h2, .shanet-services-page h3,
.shanet-referral-page h1, .shanet-referral-page h2, .shanet-referral-page h3,
.shanet-book-page h1, .shanet-book-page h2, .shanet-book-page h3,
.shanet-pkg-page h1, .shanet-pkg-page h2, .shanet-pkg-page h3,
.shanet-pricing-page h1, .shanet-pricing-page h2, .shanet-pricing-page h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* --- Full-width breakout wrapper --- */
.shanet-services-page {
    background: #f3f4f3;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* Break out of theme's content container */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* --- Section header --- */
.shanet-services-header {
    text-align: center;
    padding: 60px 40px 36px;
    background: #f3f4f3;
}

.shanet-services-header__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff5ee;
    color: #f15512;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
    border: 1px solid #f5cdb5;
}

.shanet-services-header h1 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    line-height: 1.2;
}

.shanet-services-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Services Grid --- */
.shanet-services-grid-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 64px;
}

.shanet-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 1024px) {
    .shanet-services-grid { grid-template-columns: repeat(2, 1fr); }
    .shanet-services-grid-wrap { padding: 0 24px 48px; }
}
@media (max-width: 600px) {
    .shanet-services-grid { grid-template-columns: 1fr; }
}

/* --- Service Card --- */
.shanet-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.shanet-service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

/* Image area */
.shanet-service-card__img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #222;
}

.shanet-service-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.shanet-service-card:hover .shanet-service-card__img-wrap img {
    transform: scale(1.04);
}

/* Placeholder when no image */
.shanet-service-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #212531 0%, #1a3e5f 50%, #1a3e5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

/* Price badge */
.shanet-service-card__price-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #f15512;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(241,85,18,0.45);
}

/* Card body */
.shanet-service-card__body {
    padding: 22px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shanet-service-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.35;
}

.shanet-service-card__desc {
    font-size: 14.5px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shanet-service-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    color: #f15512;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    border-top: 1px solid #f0f0f0;
    padding: 14px 0 0;
    margin-top: 14px;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.18s ease;
}

.shanet-service-card__link:hover,
.shanet-service-card__link:focus {
    color: #c44410;
    background: none;
    text-decoration: none;
    outline: none;
}

/* --- CTA Banner — rounded card, same width as grid --- */
.shanet-services-cta-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 64px;
}

.shanet-services-cta {
    background: linear-gradient(135deg, #f15512 0%, #f97316 100%);
    text-align: center;
    padding: 52px 40px;
    border-radius: 16px;
    width: 100%;
}

.shanet-services-cta h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}

.shanet-services-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    margin: 0 0 24px;
}

.shanet-services-cta .shanet-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #f15512;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.shanet-services-cta .shanet-cta-btn:hover {
    background: #fff5ee;
    transform: scale(1.03);
    text-decoration: none;
    color: #f15512;
}

@media (max-width: 1024px) {
    .shanet-services-cta-wrap { padding: 0 24px 48px; }
}

/* =============================================
   Service Modal
   ============================================= */

/* Prevent body scroll when modal is open */
body.shanet-modal-open {
    overflow: hidden;
}

.shanet-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.shanet-modal[hidden] {
    display: none;
}

/* Semi-transparent backdrop */
.shanet-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    cursor: pointer;
}

/* Dialog box */
.shanet-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 896px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    animation: shanet-modal-in 0.22s ease;
}

@keyframes shanet-modal-in {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Close button */
.shanet-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(255,255,255,0.9) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #475569 !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    transition: background 0.15s, color 0.15s;
    padding: 0;
    outline: none !important;
}
.shanet-modal__close:hover,
.shanet-modal__close:focus,
.shanet-modal__close:active {
    background: #fff !important;
    color: #212531 !important;
    outline: none !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

/* Hero image area */
.shanet-modal__hero {
    position: relative;
    height: 320px;
    flex-shrink: 0;
    background: #212531;
    overflow: hidden;
}
.shanet-modal__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.shanet-modal__hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #212531 0%, #1a3e5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}
.shanet-modal__hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
}
.shanet-modal__hero-badge {
    display: inline-block;
    background: #f15512;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.shanet-modal__title {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

/* Scrollable body */
.shanet-modal__body {
    padding: 32px;
    flex: 1;
}
@media (max-width: 480px) {
    .shanet-modal__body { padding: 20px 18px 24px; }
}

.shanet-modal__desc {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin: 0 0 32px;
}

/* Sections */
.shanet-modal__section {
    margin-bottom: 32px;
}
.shanet-modal__section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
}

/* Feature grid */
.shanet-modal__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 480px) {
    .shanet-modal__features { grid-template-columns: 1fr; }
}

.shanet-modal__feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff5ee;
    border: 1px solid #fde4d4;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
}
.shanet-modal__feature-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #f15512;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shanet-modal__feature-check svg path {
    stroke: #fff;
}

/* Before / After */
.shanet-modal__before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.shanet-modal__ba-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.shanet-modal__ba-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.shanet-modal__ba-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.shanet-modal__ba-label--before { background: rgba(15,15,15,0.75); }
.shanet-modal__ba-label--after  { background: #f15512; }
@media (max-width: 480px) {
    .shanet-modal__before-after { grid-template-columns: 1fr; }
}

/* FAQ accordion */
.shanet-modal__faqs {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}
.shanet-modal__faq {
    border-bottom: 1px solid #eee;
}
.shanet-modal__faq:last-child {
    border-bottom: none;
}
.shanet-modal__faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.shanet-modal__faq-q::-webkit-details-marker { display: none; }
.shanet-modal__faq-q::after {
    content: '›';
    font-size: 18px;
    color: #f15512;
    transform: rotate(90deg);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.shanet-modal__faq[open] .shanet-modal__faq-q::after {
    transform: rotate(-90deg);
}
.shanet-modal__faq-a {
    padding: 0 16px 14px;
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* CTAs */
.shanet-modal__ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.shanet-modal__cta-primary {
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f15512 !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: background 0.15s, box-shadow 0.15s;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
.shanet-modal__cta-primary:hover {
    background: #c44410 !important;
    text-decoration: none !important;
    color: #fff !important;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
.shanet-modal__cta-secondary {
    flex: 1;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1f5f9 !important;
    color: #1a3e5f !important;
    font-size: 14px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: background 0.15s;
}
.shanet-modal__cta-secondary:hover {
    background: #e2e8f0 !important;
    text-decoration: none !important;
    color: #212531 !important;
}

/* Trust badges */
.shanet-modal__trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}
.shanet-modal__trust span {
    font-size: 12.5px;
    color: #666;
    font-weight: 500;
}
.shanet-modal__trust span::before {
    content: '';
}
.shanet-trust-check {
    color: #16a34a;
    font-style: normal;
    font-weight: 700;
}

@media (max-width: 600px) {
    .shanet-modal__hero { height: 220px; }
    .shanet-modal__ctas { flex-direction: column; }
    .shanet-modal__cta-primary,
    .shanet-modal__cta-secondary { min-width: 0; }
}

/* =============================================
   Pricing Page
   ============================================= */

.shanet-pricing-page {
    background: #f3f4f3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Header */
.shanet-pricing-header {
    text-align: center;
    padding: 60px 40px 40px;
    background: #f3f4f3;
}
.shanet-pricing-header__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff5ee;
    color: #f15512;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 16px;
    border: 1px solid #f5cdb5;
}
.shanet-pricing-header h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
    line-height: 1.1;
}
.shanet-pricing-header p {
    font-size: 16px;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid */
.shanet-pricing-grid-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 56px;
}
.shanet-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
@media (max-width: 900px) {
    .shanet-pricing-grid { grid-template-columns: 1fr; }
    .shanet-pricing-grid-wrap { padding: 0 20px 40px; }
}

/* Card */
.shanet-pricing-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

/* Colored header bar */
.shanet-pricing-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
}
.shanet-pricing-card__header-icon {
    font-size: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.shanet-pricing-card__header-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

/* Card body */
.shanet-pricing-card__body {
    padding: 24px 28px 28px;
}
.shanet-pricing-card__note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin: 0 0 18px;
    padding-left: 14px;
    border-left: 3px solid #e5e7eb;
}

/* Section */
.shanet-pricing-card__section {
    margin-bottom: 22px;
}
.shanet-pricing-card__section:last-child { margin-bottom: 0; }
.shanet-pricing-card__section-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
}

/* Full-width last card when odd count */
.shanet-pricing-card--full {
    grid-column: 1 / -1;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

/* Tier rows */
.shanet-pricing-card__tiers {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}
.shanet-pricing-card__tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #f5f5f5;
}
.shanet-pricing-card__tier-row:last-child { border-bottom: none; }
.shanet-pricing-card__tier-label {
    font-size: 15px;
    color: #444;
}
.shanet-pricing-card__tier-price {
    font-size: 16px;
    font-weight: 700;
}

/* Add-on rows */
.shanet-pricing-card__addons-section .shanet-pricing-card__section-title {
    color: #666;
}
.shanet-pricing-card__addons {
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}
.shanet-pricing-card__addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 18px;
    border-bottom: 1px solid #f0f0f0;
}
.shanet-pricing-card__addon-row:last-child { border-bottom: none; }
.shanet-pricing-card__addon-label {
    font-size: 14px;
    color: #555;
}
.shanet-pricing-card__addon-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Bundle & Save Banner */
.shanet-pricing-bundle-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 44px;
}
.shanet-pricing-bundle {
    background: linear-gradient(135deg, #124934 0%, #2d7a5a 100%);
    border-radius: 14px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.shanet-pricing-bundle__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fff;
}
.shanet-pricing-bundle__text strong {
    font-size: 22px;
    font-weight: 800;
}
.shanet-pricing-bundle__text span {
    font-size: 15px;
    opacity: 0.92;
}
.shanet-pricing-bundle__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #124934;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: transform 0.15s, background 0.15s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.shanet-pricing-bundle__btn:hover {
    transform: scale(1.03);
    background: #e8f5ee;
    text-decoration: none !important;
    color: #0e3a29;
}
@media (max-width: 600px) {
    .shanet-pricing-bundle { flex-direction: column; align-items: flex-start; }
    .shanet-pricing-bundle-wrap { padding: 0 20px 32px; }
}

/* Note / disclaimer box */
.shanet-pricing-note-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 32px;
}
.shanet-pricing-note {
    background: #eff6ff;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
.shanet-pricing-note strong { color: #111; }

/* Ready to Get Started — red card */
.shanet-pricing-cta-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 72px;
}
.shanet-pricing-cta {
    background: #f15512;
    border-radius: 16px;
    text-align: center;
    padding: 52px 40px;
}
.shanet-pricing-cta h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.shanet-pricing-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    margin: 0 0 28px;
}
.shanet-pricing-cta__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.shanet-pricing-cta__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #f15512 !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    border: 2px solid #fff;
    transition: background 0.15s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.shanet-pricing-cta__btn-primary:hover {
    background: #fff5ee;
    transform: scale(1.02);
    text-decoration: none !important;
    color: #f15512 !important;
}
.shanet-pricing-cta__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f15512;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    border: 2px solid rgba(255,255,255,0.3);
    transition: background 0.15s, transform 0.15s;
}
.shanet-pricing-cta__btn-secondary:hover {
    background: #c44410;
    transform: scale(1.02);
    text-decoration: none !important;
    color: #fff !important;
}
@media (max-width: 600px) {
    .shanet-pricing-note-wrap { padding: 0 20px 24px; }
    .shanet-pricing-cta-wrap { padding: 0 20px 48px; }
    .shanet-pricing-cta { padding: 36px 24px; }
    .shanet-pricing-cta__btns { flex-direction: column; }
}

/* --- Home page service cards 3x3 grid --- */
.shanet-home-svc-card {
    width: calc(33.33% - 14px) !important;
    max-width: calc(33.33% - 14px) !important;
    flex: 0 0 calc(33.33% - 14px) !important;
}
@media (max-width: 768px) {
    .shanet-home-svc-card {
        width: calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
        flex: 0 0 calc(50% - 10px) !important;
    }
}
@media (max-width: 480px) {
    .shanet-home-svc-card {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* ── SMS consent checkbox (shared across all forms: Build Package, Request a Call, Commercial, Referral) ── */
.shanet-pkg-sms-consent {
  grid-column: 1 / -1 !important;
  margin: 8px 0;
}
.shanet-pkg-sms-consent__label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px;
  cursor: pointer;
  font-weight: 400 !important;
}
.shanet-pkg-sms-consent__checkbox {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
  cursor: pointer;
  accent-color: #f15512;
}
.shanet-pkg-sms-consent__text {
  font-size: 12.5px;
  line-height: 1.5;
  color: #64748b;
}
.shanet-pkg-sms-consent__text a {
  color: inherit;
  text-decoration: underline;
}

/* ── Form footer with Privacy Policy / Terms of Service links (all forms) ── */
.shanet-form-footer {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #64748b;
}
.shanet-form-footer a {
  color: #64748b;
  text-decoration: underline;
}
.shanet-form-footer a:hover {
  color: #f15512;
}

/* ── SMS consent + form footer — STRONGER OVERRIDES ──
   Per-form CSS files (.shanet-book.css, .shanet-commercial.css, .shanet-referral.css)
   apply input/label rules that inadvertently catch the new SMS consent markup
   (e.g. `.shanet-book-fields input { width: 100% }` stretches the checkbox).
   These rules use double-class specificity + !important to win unambiguously. */

.shanet-pkg-sms-consent .shanet-pkg-sms-consent__label {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
  cursor: pointer !important;
  text-align: left !important;
  margin: 0 !important;
  font-weight: 400 !important;
}
.shanet-pkg-sms-consent .shanet-pkg-sms-consent__checkbox {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  padding: 0 !important;
  margin: 2px 0 0 0 !important;
  flex: 0 0 18px !important;
  accent-color: #f15512 !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 3px !important;
  background: #fff !important;
}
.shanet-pkg-sms-consent .shanet-pkg-sms-consent__text {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
  color: #64748b !important;
  font-weight: 400 !important;
}

.shanet-form-footer {
  text-align: center !important;
  margin-top: 14px !important;
  font-size: 13px !important;
  color: #64748b !important;
}
.shanet-form-footer a {
  color: #64748b !important;
  text-decoration: underline !important;
}
.shanet-form-footer a:hover {
  color: #f15512 !important;
}
