@font-face {
    font-family: 'SparTakus Round';
    src: url('../assets/SparTakus Round.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    overflow-x: hidden;
}

.mobile-phone-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #07cd90;
    color: #111;
    justify-content: center;
    align-items: center;
    padding: 1rem 0.5rem 1.1rem 0.5rem;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.18);
}
.mobile-phone-link {
    color: #111;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.mobile-phone-link:active,
.mobile-phone-link:hover {
    text-decoration: underline;
}
.footer-right-item {
    margin-bottom: 6px;
    font-size: 1.08rem;
    color: #fff;
    font-weight: 500;
}
.footer-middle-item {
    margin-bottom: 6px;
    font-size: 1.08rem;
    color: #fff;
    font-weight: 500;
}

/* Footer styles */
.site-footer {
    display: flex;
    justify-content: space-between;

    max-width: 1000px;      /* ✅ match your page width */
    margin: 0 auto;         /* ✅ center it */

    padding: 2rem 1rem;
    gap: 2rem;

    background: #181818;
    color: #aaa;
    border-top: 2px solid #07cd90;
}
.footer-section {
    flex: 1 1 220px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.7em;
}
.footer-contact {
    align-items: flex-start;
    font-weight: 500;
    font-size: 1.08rem;
    color: #fff;
}
.footer-contact-item {
    margin-bottom: 0.2em;
}
.footer-contact-item a {
    color: #07cd90;
    text-decoration: none;
    word-break: break-all;
}
.footer-contact-item a:hover {
    text-decoration: underline;
}

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #111;
    line-height: 1.6;
}

    /* About page alternating icon rows */
    .about-row {
        display: flex;
        align-items: flex-start;
        margin: 0rem 0;
    }
    .about-row.left {
           flex-direction: row;
    }
    .about-row.right {
           flex-direction: row;
    }
    .about-icon {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        color: #0dd0ee;
        margin: 0 1.2rem;
        text-shadow: 0 0 12px #03cb2a, 0 0 24px #03cb2a;
    }
    .about-row p {
        flex: 1;
        margin: 0;
        background: rgba(255,255,255,0.04);
        padding: .8rem 1rem;
        border-radius: 12px;
    }
    @media (max-width: 600px) {
        .about-row {
            flex-direction: column !important;
            align-items: stretch;
        }
        .about-icon {
            margin: 0 0.8rem;
            align-self: flex-start;
        }
    }

.site-header {
    background: linear-gradient(90deg, #000000 0%, #07cd90 100%);
    padding: 1.0rem 0 2.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    clip-path: ellipse(75% 70% at 50% 0%);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    min-height: 100px;
}

.logo {
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
}

.logo img {
    height: 44px;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}

.logo:hover img {
    transform: rotate(-10deg);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}

.yelp-logo {
    position: absolute;
    right: 1rem;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.yelp-logo img {
    display: block;
    height: 34px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s, color 0.3s;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.nav-links a:hover {
    background: #fff;
    color: #006a1a;
}

.nav-links a.active {
    background: rgba(255,255,255,0.3);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 800px) {

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 70px;
    }

    .logo {
        position: static;
        transform: none;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 30px;
    }

    .yelp-logo {
        position: static;
        display: flex;
        align-items: center;
    }

    .yelp-logo img {
        height: 24px;
    }

    .nav-toggle {
        display: block;
        order: -1;
        margin-right: 10px;
    }

    .site-header {
        clip-path: none;
        padding-bottom: 0.5rem;
    }

    .hero {
    text-align: center;
    padding: 2rem 1rem;
    }

    .hero .spartakus {
    font-size: 2.2rem;      /* Reduces the massive font size on mobile */
    line-height: 1.1;       /* Brings the wrapped lines closer together */
    margin-bottom: 1.5rem;
    }
    .hero .tagline {
    display: block;
    text-align: center;
    margin: 0 auto;
    }

    .nav-links {
        flex-direction: column;
        background: rgba(0,0,0,0.95);

        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        display: none;
        padding: 1rem 0;
        gap: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }

    /* ===== 800px FOOTER ===== */
    .site-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1rem;
    }

    .footer-section {
        min-width: 0;
        align-items: center;
        text-align: center;
    }
}

.hero {
    text-align: center;
    padding-top: 2rem 1rem;
}

.hero h1 {
    font-family: 'SparTakus Round','Orbitron', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.1em;
}

.hero .tagline {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    color: #00ff00;
    margin-top: 0.5rem;
}

.hero .tagline.spartakus {
    font-size: 2.33rem;
}

.hero .spartakus {
    font-size: 3.5rem;
    font-family: 'SparTakus Round', 'Orbitron', 'Roboto', sans-serif;
    letter-spacing: 0.08em;
}

.section {
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials {
    text-align: center;
    background: #222222;

    padding-top: 1rem;
    padding-bottom: 1rem;
}

.testimonials h2 {
    margin-bottom: 1rem;
}

.testimonials blockquote {
    font-style: italic;
    color: #ccc;
    
    height: 120px;
    overflow: hidden;

    text-align: center;
    padding: 0 10px;

    display: -webkit-box;
    -webkit-line-clamp: 5;      /* adjust if needed */
    -webkit-box-orient: vertical;
}

.why-choose .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
    margin-top: 2rem;
}

@media (max-width: 700px) {
    .why-choose .features {
        grid-template-columns: 1fr;
    }
}

.feature {
    background: linear-gradient(135deg, #07cd90 60%, #00c853 100%);
    padding: 1.2rem 1.7rem;
    border-radius: 60% 40% 60% 40%/50% 60% 40% 60%;
    min-width: 140px;
    text-align: center;
    color: #111;
    font-weight: 700;
    width: 100%;
    max-width: 260px;
    box-shadow: 0 4px 18px 0 rgba(7,205,144,0.13), 0 1.5px 0 #fff inset;
    font-size: 1.13rem;
    letter-spacing: 0.01em;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    position: relative;
    overflow: hidden;
    clip-path: polygon(20% 0, 80% 0, 100% 40%, 80% 100%, 20% 100%, 0 40%);
}

.feature:hover {
    transform: translateY(-7px) scale(1.04) rotate(-2deg);
    box-shadow: 0 8px 32px 0 rgba(7,205,144,0.22), 0 2px 0 #fff inset;
    z-index: 2;
}

.feature::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 18px;
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    filter: blur(1.5px);
    pointer-events: none;
}

footer {
    .index-bubble-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.5em;
        align-items: center;
        font-weight: 600;
        margin: 0 auto;
        max-width: 1200px;
    }
    /* Index page classy bubbles */
    .index-bubble {
        background: linear-gradient(120deg, #0dd0ee 60%, #07cd90 100%);
        color: #111;
        font-weight: 700;
        font-size: 1.08rem;
        padding: 1.1rem 1.7rem;
        border-radius: 40% 60% 40% 60%/60% 40% 60% 40%;
        box-shadow: 0 4px 18px 0 rgba(13,208,238,0.13), 0 1.5px 0 #fff inset;
        min-width: 120px;
        text-align: center;
        transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
        position: relative;
        overflow: hidden;
        margin-bottom: 0.5em;
        margin-top: 0.5em;
        margin-left: 0.2em;
        margin-right: 0.2em;
        clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%);
    }
    .index-bubble:hover {
        transform: translateY(-7px) scale(1.04) rotate(-2deg);
        box-shadow: 0 8px 32px 0 rgba(13,208,238,0.22), 0 2px 0 #fff inset;
        z-index: 2;
    }
    .index-bubble::after {
        content: '';
        position: absolute;
        top: 12px;
        right: 18px;
        width: 18px;
        height: 18px;
        background: rgba(255,255,255,0.18);
        border-radius: 50%;
        filter: blur(1.5px);
        pointer-events: none;
    }

    .index-bubble-blue {
        background: linear-gradient(120deg, #0d8fff 60%, #07cd90 100%);
        color: #fff;
        font-weight: 700;
        font-size: 1.08rem;
        padding: 1.1rem 1.7rem;
        border-radius: 40% 60% 40% 60%/60% 40% 60% 40%;
        box-shadow: 0 4px 18px 0 rgba(13,143,255,0.13), 0 1.5px 0 #fff inset;
        min-width: 120px;
        text-align: center;
        transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
        position: relative;
        overflow: hidden;
        margin-bottom: 0.5em;
        margin-top: 0.5em;
        margin-left: 0.2em;
        margin-right: 0.2em;
        clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%);
    }
    .index-bubble-blue:hover {
        transform: translateY(-7px) scale(1.04) rotate(-2deg);
        box-shadow: 0 8px 32px 0 rgba(13,143,255,0.22), 0 2px 0 #fff inset;
        z-index: 2;
    }
    .index-bubble-blue::after {
        content: '';
        position: absolute;
        top: 12px;
        right: 18px;
        width: 18px;
        height: 18px;
        background: rgba(255,255,255,0.18);
        border-radius: 50%;
        filter: blur(1.5px);
        pointer-events: none;
    }

    @media (max-width: 900px) {
        .index-bubble {
            min-width: 90px;
            font-size: 1rem;
            padding: 1rem 1.2rem;
        }
    }
    text-align: center;
    padding: 2rem 1rem;
    background: #222;
    color: #aaa;
    font-size: 0.9rem;
}

.logo-bubble {
    display: none;
    position: fixed;
    left: 50%;
    top: 18%;
    transform: translate(-50%, -50%);
    background: #222;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 24px;
    font-size: 1.3rem;
    font-family: 'Orbitron', 'Roboto', sans-serif;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.logo-bubble.show {
    display: block;
    opacity: 1;
}

.spartakus {
    font-family: 'SparTakus Round', 'Orbitron', 'Roboto', sans-serif;
    letter-spacing: 0.08em;
}

/* JJ added w/ copilot 6-2-26 */
.why-bubble-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-bubble {
    
min-width: 48px;
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.2rem;   /* matches About page */
    color: #0dd0ee;      /* same color as About */

    text-shadow: 0 0 12px #03cb2a, 0 0 24px #03cb2a; /* glow */

    flex-shrink: 0;
}

.footer-middle-item::before{
    content: "✔ ";
    color: #07cd90;
}
.footer-right-item::before {
    content: "✔ ";
    color: #07cd90;
}

/* Services page card layout */
.services-section h2 {
    text-align: center;
    margin-bottom: 0.7rem;
}

.services-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem auto;
    color: #d4d4d4;
}

.trust-sentence {
    text-align: center;
    max-width: 720px;
    margin: -1.2rem auto 2rem auto;
    color: #cfcfcf;
    line-height: 1.55;
}

.program-savings-note {
    text-align: center;
    max-width: 760px;
    margin: -0.4rem auto 2.5rem auto;
    color: #cfcfcf;
    line-height: 1.55;
}

.program-note-cta {
    color: #07cd90;
    font-weight: 700;
    text-decoration: none;
}

.program-note-cta:hover {
    text-decoration: underline;
}

.program-page h2 {
    text-align: center;
    margin-bottom: 0.7rem;
}

.program-intro {
    max-width: 760px;
    margin: 0 auto 1.6rem auto;
    text-align: center;
    color: #d6d6d6;
}

.program-teaser-wrap,
.program-toolkit-wrap {
    margin: 0 auto 1.4rem auto;
    width: fit-content;
    max-width: 100%;
    border: 1px solid #2f2f2f;
    border-top: 3px solid #07cd90;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.program-teaser-image,
.program-toolkit-image {
    max-width: 600px;
    width: auto;
    height: auto;
    display: block;
}

.program-content {
    max-width: 760px;
    margin: 0 auto;
    color: #d8d8d8;
}

.program-content h3 {
    margin-top: 1.2rem;
    margin-bottom: 0.45rem;
    color: #fff;
}

.program-content ul {
    margin: 0.2rem 0 0.9rem 1.25rem;
}

.program-content p {
    margin: 0.45rem 0;
}

.program-content a {
    color: #07cd90;
    font-weight: 700;
}

.rebate-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 0.9rem 0;
}

.rebate-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 3px solid #f2cf3b;
    border-radius: 12px;
    padding: 1rem;
}

.rebate-card h4 {
    margin: 0 0 0.45rem 0;
    color: #fff;
    font-size: 1.45rem;
}

.rebate-card p {
    margin: 0;
}

.services-grid {
    display: grid;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.services-grid-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid-middle,
.services-grid-bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 3px solid #07cd90;
    border-radius: 14px;
    padding: 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-card h3 {
    margin: 0;
    font-size: 1.17rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.service-card p {
    margin: 0.55rem 0 0 0;
    color: #d8d8d8;
    font-size: 0.97rem;
    line-height: 1.45;
}

.service-learn-more {
    margin-top: auto;
    padding-top: 0.8rem;
    color: #07cd90;
    font-weight: 700;
    text-decoration: none;
}

.service-learn-more:hover {
    text-decoration: underline;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(7, 205, 144, 0.8);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.service-icon {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0dd0ee;
    text-shadow: 0 0 12px #03cb2a, 0 0 24px #03cb2a;
}

@media (max-width: 900px) {
    .services-grid-top,
    .services-grid-middle,
    .services-grid-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .services-grid-top,
    .services-grid-middle,
    .services-grid-bottom {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1rem 0.9rem;
    }

    .rebate-grid {
        grid-template-columns: 1fr;
    }
}

/* Panel and subpanels service page */
.panel-page h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-pill-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 auto 1.5rem auto;
    max-width: 920px;
}

.service-pill-nav a {
    text-decoration: none;
    color: #e6e6e6;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.5rem 0.95rem;
    font-size: 0.95rem;
    line-height: 1.2;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
    background: rgba(255, 255, 255, 0.04);
}

.service-pill-nav a:hover {
    border-color: #07cd90;
    color: #fff;
}

.service-pill-nav a.active {
    background: #07cd90;
    border-color: #07cd90;
    color: #111;
    font-weight: 700;
}

.panel-intro,
.panel-supporting,
.panel-cta {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #d8d8d8;
}

.panel-intro {
    margin-bottom: 1.6rem;
}

.panel-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.4rem;
}

.panel-supporting {
    margin-bottom: 1.9rem;
}

.services-supporting-note {
    margin-top: 2.3rem;
    margin-bottom: 0.35rem;
    font-size: 1.14rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #f1f1f1;
}

.services-supporting-note + p {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    color: #d8d8d8;
    line-height: 1.55;
}

.info-section {
    max-width: 700px;
    margin: 30px auto;
    text-align: center;
}

.info-section h3 {
    color: #fff;
    margin-bottom: 0.55rem;
}

.info-section p {
    color: #d8d8d8;
    margin: 0.45rem 0;
    line-height: 1.5;
}

.panel-examples h3 {
    text-align: center;
    margin-bottom: 0.85rem;
}

.panel-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 1.8rem;
}

.panel-gallery-item {
    margin: 0;
}

.panel-image-placeholder {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
}

.panel-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.panel-image-placeholder.panel-coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.74);
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: 0.01em;
    border: 1px dashed rgba(255, 255, 255, 0.22);
}

.panel-image-caption {
    margin-top: 0.45rem;
    font-size: 0.87rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
}

.panel-cta {
    color: #f1f1f1;
    font-weight: 500;
}

@media (max-width: 900px) {
    .panel-services-grid,
    .panel-examples-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .service-pill-nav {
        gap: 0.5rem;
    }

    .service-pill-nav a {
        font-size: 0.89rem;
        padding: 0.48rem 0.8rem;
    }

    .panel-services-grid,
    .panel-examples-grid {
        grid-template-columns: 1fr;
    }
}
