/* =====================================================================
   SmartHome — luxury smart-home electrician template
   Prefix: .sh-*
   Palette:
     midnight #0d1b2a   electric-blue #3b82f6   cyan #22d3ee
     gold #fbbf24       light-gray #cbd5e1      cream #f5ead8
   Fonts: Rajdhani (display) + Inter (body)
   ===================================================================== */

:root {
    --sh-midnight: #0d1b2a;
    --sh-midnight-deep: #08111d;
    --sh-midnight-soft: #122a45;
    --sh-blue: #3b82f6;
    --sh-blue-soft: rgba(59, 130, 246, 0.18);
    --sh-cyan: #22d3ee;
    --sh-cyan-soft: rgba(34, 211, 238, 0.22);
    --sh-gold: #fbbf24;
    --sh-gray: #cbd5e1;
    --sh-gray-dim: #94a3b8;
    --sh-cream: #f5ead8;
    --sh-white: #ffffff;
    --sh-border: rgba(203, 213, 225, 0.12);
    --sh-shadow-glow: 0 0 24px rgba(34, 211, 238, 0.45), 0 0 60px rgba(59, 130, 246, 0.25);
    --sh-shadow-card: 0 12px 40px rgba(0, 0, 0, 0.45);
    --sh-radius: 14px;
    --sh-radius-pill: 999px;
}

* { box-sizing: border-box; }

[x-cloak] { display: none !important; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--sh-midnight);
    color: var(--sh-gray);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--sh-cyan); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sh-blue); }

h1, h2, h3, h4, h5 {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    color: var(--sh-cream);
    font-weight: 600;
    letter-spacing: .01em;
    margin: 0 0 .6em;
}

p { margin: 0 0 1em; }

.sh-body { background: var(--sh-midnight); min-height: 100vh; }

/* =========================
   Buttons
   ========================= */
.sh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.6rem;
    border-radius: var(--sh-radius);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.sh-btn:hover { transform: translateY(-2px); }

.sh-btn--primary {
    background: linear-gradient(135deg, var(--sh-blue), #2563eb);
    color: var(--sh-white);
    box-shadow: 0 0 0 rgba(34, 211, 238, 0);
}
.sh-btn--primary:hover {
    background: linear-gradient(135deg, #4c8efc, var(--sh-blue));
    color: var(--sh-white);
    box-shadow: var(--sh-shadow-glow);
}

.sh-btn--ghost {
    background: transparent;
    color: var(--sh-cyan);
    border-color: var(--sh-cyan);
}
.sh-btn--ghost:hover {
    background: rgba(34, 211, 238, 0.08);
    color: var(--sh-cyan);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

.sh-btn--pill { border-radius: var(--sh-radius-pill); padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* The reusable LED-glow utility */
.sh-glow {
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.55), 0 0 32px rgba(59, 130, 246, 0.35);
}
.sh-glow-hover { transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease; }
.sh-glow-hover:hover {
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.4), 0 0 48px rgba(59, 130, 246, 0.32);
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.45);
}

/* =========================
   Top strip + header
   ========================= */
.sh-topstrip {
    background: var(--sh-midnight-deep);
    color: var(--sh-gray-dim);
    font-size: .82rem;
    border-bottom: 1px solid var(--sh-border);
}
.sh-topstrip__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: .55rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.sh-topstrip__contact { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.sh-topstrip__link {
    color: var(--sh-gray-dim);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.sh-topstrip__link:hover { color: var(--sh-cyan); }
.sh-topstrip__icon { color: var(--sh-cyan); font-size: .95rem; }
.sh-topstrip__socials { display: flex; gap: .9rem; }
.sh-topstrip__socials a {
    color: var(--sh-gray-dim);
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .12em;
}
.sh-topstrip__socials a:hover { color: var(--sh-cyan); }

.sh-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.sh-header.is-scrolled {
    background: rgba(8, 17, 29, 0.95);
    border-bottom-color: var(--sh-border);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}
.sh-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.sh-logo {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--sh-white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: .14em;
    text-decoration: none;
}
.sh-logo__bolt {
    color: var(--sh-cyan);
    font-size: 1.55rem;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.7);
}
.sh-logo__name { color: var(--sh-white); }

.sh-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.sh-nav a {
    color: var(--sh-gray);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: .92rem;
    letter-spacing: .02em;
    padding: .35rem 0;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}
.sh-nav a:hover { color: var(--sh-white); }
.sh-nav a.is-active { color: var(--sh-cyan); border-bottom-color: var(--sh-cyan); }

/* =========================
   Hero
   ========================= */
.sh-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--sh-midnight);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 1.5rem 5rem;
    overflow: hidden;
}
.sh-hero__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.18), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.22), transparent 50%);
    pointer-events: none;
}
.sh-hero__inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.sh-hero__eyebrow {
    display: inline-block;
    color: var(--sh-cyan);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border: 1px solid rgba(34, 211, 238, 0.35);
    border-radius: var(--sh-radius-pill);
    margin-bottom: 1.5rem;
    background: rgba(34, 211, 238, 0.06);
}
.sh-hero__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.6rem, 6.5vw, 5.4rem);
    line-height: 1.05;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--sh-cream);
    margin: 0 0 1.4rem;
    text-shadow: 0 0 40px rgba(34, 211, 238, 0.2);
}
.sh-hero__title-bold { font-weight: 700; display: block; }
.sh-hero__title-italic {
    font-style: italic;
    font-weight: 500;
    display: block;
    color: var(--sh-cyan);
    text-shadow: 0 0 18px rgba(34, 211, 238, 0.5);
}
.sh-hero__lead {
    color: var(--sh-gray);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 2.2rem;
}
.sh-hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.4rem;
}

.sh-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
}
.sh-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    padding: 1.2rem 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.sh-stat:hover {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 0 22px rgba(34, 211, 238, 0.18);
    transform: translateY(-3px);
}
.sh-stat__num {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--sh-cyan);
    line-height: 1;
    margin-bottom: .35rem;
    text-shadow: 0 0 14px rgba(34, 211, 238, 0.35);
}
.sh-stat__label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--sh-gray-dim);
}

/* =========================
   Generic helpers
   ========================= */
.sh-eyebrow {
    display: inline-block;
    color: var(--sh-cyan);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.sh-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: var(--sh-cream);
    font-weight: 600;
    margin: 0 0 1.2rem;
    letter-spacing: -.01em;
}
.sh-section-title--light { color: var(--sh-white); }
.sh-section-lead {
    color: var(--sh-gray);
    font-size: 1.02rem;
    max-width: 640px;
}

/* =========================
   Features
   ========================= */
.sh-features {
    position: relative;
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, var(--sh-midnight) 0%, var(--sh-midnight-soft) 50%, var(--sh-midnight) 100%);
    overflow: hidden;
}
.sh-features__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(34, 211, 238, 0.08), transparent 40%);
    pointer-events: none;
}
.sh-features__inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
}
.sh-features__head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.sh-features__head .sh-section-lead { margin: 0 auto; }
.sh-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.sh-feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    padding: 2rem 1.5rem;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
    overflow: hidden;
}
.sh-feature-card__icon {
    font-size: 2.1rem;
    line-height: 1;
    color: var(--sh-cyan);
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.55));
}
.sh-feature-card__title {
    font-size: 1.35rem;
    color: var(--sh-cream);
    margin: 0 0 .6rem;
    letter-spacing: .02em;
}
.sh-feature-card__desc { color: var(--sh-gray); font-size: .94rem; margin: 0; }
.sh-feature-card__line {
    position: absolute;
    left: 0; bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--sh-cyan), var(--sh-blue));
    transition: width .35s ease;
}
.sh-feature-card:hover { background: rgba(34, 211, 238, 0.06); }
.sh-feature-card:hover .sh-feature-card__line { width: 100%; }

/* =========================
   Showcase
   ========================= */
.sh-showcase {
    padding: 6rem 1.5rem;
    background: var(--sh-midnight);
}
.sh-showcase__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.sh-showcase__media {
    position: relative;
    border-radius: var(--sh-radius);
    overflow: hidden;
    isolation: isolate;
}
.sh-showcase__photo {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    border-radius: var(--sh-radius);
    border: 1px solid var(--sh-border);
    box-shadow: var(--sh-shadow-card);
}
.sh-showcase__photo-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--sh-radius);
    pointer-events: none;
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.35), 0 0 60px rgba(34, 211, 238, 0.25);
}
.sh-showcase__lead { color: var(--sh-gray); font-size: 1.02rem; margin-bottom: 1.6rem; }
.sh-showcase__features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}
.sh-showcase__features li {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: .65rem 0;
    color: var(--sh-cream);
    font-size: 1rem;
}
.sh-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sh-blue), #2563eb);
    color: var(--sh-white);
    font-size: .82rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.55);
}

/* =========================
   Testimonials
   ========================= */
.sh-testimonials {
    position: relative;
    padding: 6rem 1.5rem;
    background: var(--sh-midnight-deep);
    overflow: hidden;
}
.sh-starfield {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1px 1px at 12% 20%, rgba(255,255,255,.6), transparent 60%),
        radial-gradient(1px 1px at 35% 70%, rgba(34,211,238,.65), transparent 60%),
        radial-gradient(1px 1px at 60% 30%, rgba(255,255,255,.5), transparent 60%),
        radial-gradient(1.5px 1.5px at 78% 80%, rgba(59,130,246,.55), transparent 60%),
        radial-gradient(1px 1px at 88% 18%, rgba(255,255,255,.5), transparent 60%),
        radial-gradient(1px 1px at 22% 88%, rgba(34,211,238,.5), transparent 60%),
        radial-gradient(1.5px 1.5px at 50% 50%, rgba(255,255,255,.5), transparent 60%);
    background-size: 100% 100%;
    pointer-events: none;
    opacity: .65;
}
.sh-testimonials__inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
}
.sh-testimonials__head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.sh-testimonials__head .sh-section-lead { margin: 0 auto; }

.sh-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.sh-testimonial {
    position: relative;
    background: rgba(13, 27, 42, 0.85);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: var(--sh-radius);
    padding: 2.2rem 1.75rem 1.75rem;
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.1), var(--sh-shadow-card);
    transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.sh-testimonial:hover {
    border-color: rgba(34, 211, 238, 0.55);
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.3), var(--sh-shadow-card);
    transform: translateY(-4px);
}
.sh-testimonial__quote {
    position: absolute;
    top: -.5rem;
    left: 1.25rem;
    font-family: 'Rajdhani', serif;
    font-size: 4.2rem;
    color: var(--sh-cyan);
    line-height: 1;
    text-shadow: 0 0 18px rgba(34, 211, 238, 0.6);
}
.sh-testimonial__text {
    color: var(--sh-cream);
    font-size: 1rem;
    line-height: 1.65;
    margin: 1rem 0 1.5rem;
}
.sh-testimonial__person {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: .8rem;
}
.sh-testimonial__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(34, 211, 238, 0.4);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.35);
}
.sh-testimonial__name { color: var(--sh-white); font-weight: 600; font-size: .98rem; }
.sh-testimonial__role { color: var(--sh-gray-dim); font-size: .82rem; }
.sh-testimonial__stars {
    color: var(--sh-gold);
    font-size: 1rem;
    letter-spacing: .15em;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.45);
}

/* =========================
   Final CTA
   ========================= */
.sh-cta {
    position: relative;
    padding: 7rem 1.5rem;
    background: var(--sh-midnight);
    overflow: hidden;
    text-align: center;
}
.sh-cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    max-width: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.32) 0%, rgba(34, 211, 238, 0.18) 35%, transparent 70%);
    pointer-events: none;
    filter: blur(20px);
}
.sh-cta__inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.sh-cta__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    line-height: 1.05;
    color: var(--sh-cream);
    font-weight: 700;
    letter-spacing: -.01em;
    margin: 0 0 1.4rem;
    text-shadow: 0 0 40px rgba(34, 211, 238, 0.3);
}
.sh-cta__lead {
    color: var(--sh-gray);
    font-size: 1.08rem;
    max-width: 560px;
    margin: 0 auto 2.2rem;
}
.sh-cta__phone {
    margin-top: 1.6rem;
    color: var(--sh-gray-dim);
    font-size: .95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}
.sh-cta__phone a {
    color: var(--sh-cyan);
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .04em;
}

/* =========================
   Footer
   ========================= */
.sh-footer {
    background: var(--sh-midnight-deep);
    color: var(--sh-gray);
    padding: 4.5rem 1.5rem 1.6rem;
    border-top: 1px solid var(--sh-border);
}
.sh-footer__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
}
.sh-footer__col--brand .sh-logo { margin-bottom: 1rem; }
.sh-logo--footer { font-size: 1.2rem; }
.sh-footer__tagline {
    color: var(--sh-gray-dim);
    font-size: .95rem;
    max-width: 320px;
    margin-bottom: 1.2rem;
}
.sh-footer__socials { display: flex; gap: .9rem; }
.sh-footer__socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--sh-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sh-gray-dim);
    text-transform: lowercase;
    font-size: .8rem;
    letter-spacing: .04em;
    transition: color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sh-footer__socials a:hover {
    color: var(--sh-cyan);
    border-color: var(--sh-cyan);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
}
.sh-footer__title {
    font-family: 'Rajdhani', sans-serif;
    color: var(--sh-cream);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin: 0 0 1rem;
}
.sh-footer__links { list-style: none; padding: 0; margin: 0; }
.sh-footer__links li { padding: .35rem 0; }
.sh-footer__links a { color: var(--sh-gray-dim); font-size: .92rem; }
.sh-footer__links a:hover { color: var(--sh-cyan); }
.sh-footer__links--contact li { color: var(--sh-gray-dim); font-size: .92rem; }

.sh-footer__divider {
    max-width: 1240px;
    margin: 2.6rem auto 1.4rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sh-cyan), transparent);
    opacity: .55;
}
.sh-footer__bottom {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--sh-gray-dim);
    font-size: .82rem;
    letter-spacing: .04em;
}

/* =========================
   Contact page
   ========================= */
.contact-page {
    padding: 5rem 1.5rem;
    background: var(--sh-midnight);
    color: var(--sh-gray);
}
.contact-page .container.two-col {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-page h1 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--sh-cream);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 1rem;
}
.contact-page a { color: var(--sh-cyan); }
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    color: var(--sh-cream);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .03em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--sh-midnight-deep);
    color: var(--sh-cream);
    border: 1px solid var(--sh-border);
    border-radius: 8px;
    padding: .75rem .9rem;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sh-cyan);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}
.contact-form .hp { display: none; }
.contact-form .btn-primary,
.contact-form button[type="submit"] {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--sh-blue), #2563eb);
    color: var(--sh-white);
    border: none;
    padding: .9rem 1.6rem;
    border-radius: var(--sh-radius);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    transition: box-shadow .25s ease, transform .2s ease;
}
.contact-form button[type="submit"]:hover {
    box-shadow: var(--sh-shadow-glow);
    transform: translateY(-2px);
}
.flash {
    border-radius: 8px;
    padding: .85rem 1rem;
    margin-bottom: 1rem;
    font-size: .92rem;
}
.flash-success {
    background: rgba(34, 211, 238, 0.12);
    color: var(--sh-cyan);
    border: 1px solid rgba(34, 211, 238, 0.4);
}
.flash-error {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

/* 404 / not-found */
.not-found {
    padding: 6rem 1.5rem;
    text-align: center;
    color: var(--sh-gray);
}
.not-found h1 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--sh-cream);
    font-size: clamp(2rem, 5vw, 3.4rem);
}

/* =========================
   Preview banner
   ========================= */
.preview-banner {
    background: linear-gradient(135deg, var(--sh-blue), #2563eb);
    color: var(--sh-white);
    text-align: center;
    padding: .65rem 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: .92rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 0 22px rgba(59, 130, 246, 0.55);
}

/* =========================
   Responsive — 800px breakpoint
   ========================= */
@media (max-width: 1080px) {
    .sh-features__grid { grid-template-columns: repeat(2, 1fr); }
    .sh-testimonials__grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
    .sh-footer__inner { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
}

@media (max-width: 800px) {
    .sh-topstrip__inner { flex-direction: column; align-items: flex-start; gap: .35rem; padding: .55rem 1rem; }
    .sh-topstrip__contact { flex-direction: column; gap: .25rem; }

    .sh-header__inner {
        flex-wrap: wrap;
        gap: 1rem;
        padding: .9rem 1rem;
    }
    .sh-nav { order: 3; width: 100%; }
    .sh-nav ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        padding-top: .5rem;
        border-top: 1px solid var(--sh-border);
    }
    .sh-nav a { font-size: .88rem; }

    .sh-hero { padding: 4.5rem 1.25rem 4rem; min-height: auto; }
    .sh-hero__title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
    .sh-hero__ctas { flex-direction: column; align-items: stretch; }
    .sh-hero__ctas .sh-btn { width: 100%; }
    .sh-hero__stats { grid-template-columns: 1fr; gap: .8rem; max-width: 380px; }

    .sh-features { padding: 4rem 1.25rem; }
    .sh-features__grid { grid-template-columns: 1fr; }

    .sh-showcase { padding: 4rem 1.25rem; }
    .sh-showcase__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .sh-showcase__photo { aspect-ratio: 16 / 11; }

    .sh-testimonials { padding: 4rem 1.25rem; }

    .sh-cta { padding: 5rem 1.25rem; }
    .sh-cta__title { font-size: clamp(2rem, 8vw, 2.8rem); }

    .sh-footer { padding: 3.5rem 1.25rem 1.4rem; }
    .sh-footer__inner { grid-template-columns: 1fr; gap: 2.2rem; }
    .sh-footer__bottom { flex-direction: column; text-align: center; }

    .contact-page .container.two-col { grid-template-columns: 1fr; gap: 2rem; }
}
