/* OCS LLC — site-wide shared stylesheet
 * Replaces duplicated per-page inline <style> blocks. Loaded after responsive.css.
 */
body { font-family: 'Garet', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; margin: 0; padding: 0; width: 100%; min-height: 100vh; display: flex; flex-direction: column; }
.bg-custom-cyan { background-color: #0CC0DF; }
.text-custom-cyan { color: #0CC0DF; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
section { padding: clamp(2rem, 5vw, 4rem) 0; }

/* Nav */
.nav-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; width: 90%; max-width: 1200px; margin: 0 auto; padding: 1rem; gap: 0.5rem; }
.contact-info { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; font-size: 0.95rem; }
.contact-info a { color: #fff; text-decoration: none; transition: color 0.3s ease; }
.contact-info a:hover { color: #e5e7eb; }

/* Hero (mini gradient — used as fallback) */
.hero-mini { background: linear-gradient(135deg, #0CC0DF 0%, #0aa3bd 100%); color: white; padding: clamp(2rem, 6vw, 4rem) 1rem; text-align: center; }
.hero-mini h1 { font-size: clamp(1.75rem, 5vw, 3rem); line-height: 1.15; font-weight: 800; margin-bottom: 0.75rem; }
.hero-mini p { font-size: clamp(1rem, 2.5vw, 1.25rem); max-width: 760px; margin: 0 auto 1.25rem; }

/* Hero with photo background — used on every page */
.hero-photo { position: relative; color: white; padding: clamp(2.5rem, 6vw + 1rem, 5rem) 1rem; text-align: center; background-size: cover; background-position: center; isolation: isolate; }
.hero-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,192,223,0.85) 0%, rgba(10,163,189,0.92) 100%); z-index: -1; }
.hero-photo > * { position: relative; z-index: 1; }

/* Hero CTAs + trust pills */
.hero-cta-row { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.hero-cta-row .tel-link { color: #fff; text-decoration: underline; font-weight: 600; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(0.75rem, 2vw, 1.5rem); margin-top: 1.5rem; color: #fff; font-weight: 600; font-size: clamp(0.875rem, 2vw, 1rem); }
.trust-row span { background: rgba(255,255,255,0.18); padding: 0.4rem 0.9rem; border-radius: 999px; }

/* Cards & layout primitives */
.review-card { background: #f9fafb; border-left: 4px solid #0CC0DF; padding: 1.25rem; border-radius: 8px; margin-bottom: 1rem; }
.stars { color: #0CC0DF; font-weight: 600; }
.breadcrumbs { font-size: 0.875rem; color: #6b7280; margin-bottom: 1rem; }
.breadcrumbs a { color: #0CC0DF; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.related-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1rem 1.25rem; transition: transform 0.2s, box-shadow 0.2s; }
.related-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.related-card a { color: #0CC0DF; font-weight: 600; text-decoration: none; }

/* CTA box */
.cta-box { background: #0CC0DF; color: #fff; border-radius: 12px; padding: clamp(1.5rem, 4vw, 2.5rem); text-align: center; margin: 2rem 0; }
.cta-box h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-box .btn-white { background: #fff; color: #000; padding: 0.85rem 1.6rem; border-radius: 8px; font-weight: 600; text-decoration: none; display: inline-block; margin-top: 0.5rem; min-height: 44px; }
.cta-box .tel-link { color: #fff; text-decoration: underline; display: block; margin-top: 0.75rem; font-weight: 600; }

/* Lists with checkmarks */
.checklist { list-style: none; padding: 0; }
.checklist li { padding-left: 1.75rem; position: relative; margin-bottom: 0.5rem; }
.checklist li::before { content: "\2713"; position: absolute; left: 0; color: #0CC0DF; font-weight: 700; font-size: 1.1rem; }

/* Mobile sticky call bar */
.mobile-call-bar { display: none; }
@media (max-width: 720px) {
    .mobile-call-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; background: #0CC0DF; color: #fff; padding: 0.85rem 1rem; z-index: 50; box-shadow: 0 -4px 12px rgba(0,0,0,0.18); justify-content: center; align-items: center; gap: 1rem; font-weight: 700; text-decoration: none; font-size: 1rem; }
    body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
    .nav-container { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .contact-info { align-items: flex-start; font-size: 1rem; }
}

/* Pricing-page price cards */
.price-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 12px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.price-card .price { font-size: 2.25rem; font-weight: 800; color: #0CC0DF; line-height: 1; }
.price-card .price small { font-size: 1rem; color: #6b7280; font-weight: 400; }
.price-card ul { list-style: none; padding: 0; margin-top: 1rem; }
.price-card li { padding-left: 1.75rem; position: relative; margin-bottom: 0.5rem; }
.price-card li::before { content: "\2713"; position: absolute; left: 0; color: #0CC0DF; font-weight: 700; }
.factor-card { background: #f9fafb; border-left: 4px solid #0CC0DF; padding: 1.25rem; border-radius: 0 8px 8px 0; }

/* Article prose */
.article-prose h2 { font-size: 1.75rem; font-weight: 700; margin-top: 2.25rem; margin-bottom: 0.75rem; }
.article-prose h3 { font-size: 1.25rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.article-prose p { margin-bottom: 1rem; line-height: 1.7; color: #374151; }
.article-prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-prose li { margin-bottom: 0.4rem; line-height: 1.6; }

/* Why-us / trust-signals stats grid (homepage) */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); gap: 1.25rem; max-width: 960px; margin: 0 auto; }
.stat-card { text-align: center; padding: 1.5rem 1rem; background: #f9fafb; border-radius: 12px; border: 1px solid #e5e7eb; }
.stat-card .num { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #0CC0DF; line-height: 1; }
.stat-card .label { display: block; margin-top: 0.5rem; font-weight: 600; color: #1f2937; font-size: 0.95rem; }

/* Service area visual */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr)); gap: 1rem; max-width: 760px; margin: 1.5rem auto 0; }
.area-pin { background: #fff; border: 2px solid #0CC0DF; border-radius: 14px; padding: 1.25rem 1rem; text-align: center; text-decoration: none; color: #1f2937; transition: transform 0.2s, box-shadow 0.2s; display: block; }
.area-pin:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(12,192,223,0.18); }
.area-pin .pin-icon { font-size: 1.5rem; line-height: 1; margin-bottom: 0.4rem; display: block; color: #0CC0DF; }
.area-pin .name { font-weight: 700; font-size: 1.1rem; }
.area-pin .meta { font-size: 0.8rem; color: #6b7280; margin-top: 0.25rem; }


/* Mobile bottom bar — split call + SMS */
.mobile-bottom-bar { display: none; }
@media (max-width: 720px) {
    .mobile-bottom-bar {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        display: flex;
        background: #0CC0DF;
        color: #fff;
        z-index: 50;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.18);
        padding-bottom: env(safe-area-inset-bottom);
    }
    .mobile-bottom-bar .mcb-half {
        flex: 1;
        position: static;
        text-align: center;
        padding: 0.95rem 0.5rem;
        font-weight: 700;
        text-decoration: none;
        color: #fff;
        font-size: 1rem;
        display: block;
    }
    .mobile-bottom-bar .mcb-half:hover { background: rgba(255,255,255,0.1); }
    .mobile-call-bar { display: none !important; } /* hide the original single-bar version */
}
