:root {
    --spp-black: #0b0b0b;
    --spp-dark: #1a1a1a;
    --spp-grey: #2b2b2b;
    --spp-light: #f5f5f5;
    --spp-white: #ffffff;
    --spp-primary: #34a853;
    --spp-primary-dark: #1e7c3b;
    --spp-accent: #7ed957;
    --spp-border: #d9e2d8;
    --spp-radius: .85rem;
    --spp-shadow: 0 10px 28px rgba(11, 11, 11, .08);
}

html,
body { scroll-behavior: smooth; }

body {
    background: var(--spp-light);
    color: var(--spp-black);
    font-family: 'Inter', sans-serif;
}

.navbar-wrap { background: transparent; transition: all .3s ease; }
.navbar-wrap.nav-scrolled { background: rgba(11, 11, 11, .94); backdrop-filter: blur(8px); box-shadow: 0 10px 30px rgba(0, 0, 0, .25); }
.navbar .nav-link { font-weight: 500; }

.section-alt { background: var(--spp-light); }
.section-gradient { background: linear-gradient(120deg, #121212 0%, #1f3a22 65%, #285f2f 100%); }

.spp-page-header { border-bottom: 1px solid var(--spp-border); padding-bottom: .9rem; }
.spp-section-title { font-weight: 800; letter-spacing: -.01em; }

.card,
.spp-card {
    border: 1px solid var(--spp-border);
    border-radius: var(--spp-radius);
    box-shadow: var(--spp-shadow);
    transition: all .2s ease;
}

.card:hover,
.spp-card:hover { transform: translateY(-4px); }

.spp-btn-primary,
.btn-primary,
.btn-success {
    background: var(--spp-primary);
    border-color: var(--spp-primary);
    color: #fff;
}

.spp-btn-primary:hover,
.btn-primary:hover,
.btn-success:hover,
.spp-btn-primary:focus,
.btn-primary:focus,
.btn-success:focus {
    background: var(--spp-primary-dark);
    border-color: var(--spp-primary-dark);
    color: #fff;
}

.spp-btn-outline,
.btn-outline-primary {
    color: var(--spp-primary);
    border-color: var(--spp-primary);
}

.spp-btn-outline:hover,
.btn-outline-primary:hover {
    background: var(--spp-primary);
    border-color: var(--spp-primary);
    color: #fff;
}

a,
.spp-link { color: var(--spp-primary-dark); }
a:hover,
.spp-link:hover { color: #145728; }

.spp-badge-status { background: #e5f5e8; color: #16582b; }
.spp-status-new { background: #e5f5e8; color: #16582b; }
.spp-status-pending { background: #fff6e3; color: #7b5600; }
.spp-status-completed { background: #dceeff; color: #174d84; }

.spp-alert-info { background: #ebf7ee; border: 1px solid #c8e6ce; color: #184e2a; }

.site-footer { background: #0c1210; color: #fff; }
.footer-link { color: rgba(255, 255, 255, .75); text-decoration: none; }
.footer-link:hover { color: #fff; }

.sticky-call-btn {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1040;
    background: var(--spp-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: .75rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .navbar-collapse { background: rgba(11, 11, 11, .95); border-radius: 1rem; margin-top: .75rem; padding: .75rem; }
    body { padding-top: 72px; }
}

.hero-section {
    background: linear-gradient(135deg, #f8fff9 0%, #eef7f0 55%, #e4efe7 100%);
}

.py-lg-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-visual {
    border-radius: 1.25rem;
}

.placeholder-gallery {
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--spp-border);
    background: #f0f4f1;
    color: #5c695f;
    font-weight: 600;
}

.spp-gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 220px;
    object-fit: cover;
    box-shadow: var(--spp-shadow);
}

.cta-band {
    background: linear-gradient(120deg, #153220 0%, #1f5a2e 100%);
}

.navbar-wrap .navbar {
    background: rgba(11, 11, 11, .90);
}

.navbar .nav-link.active {
    color: #fff;
    font-weight: 700;
}

.service-icon {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e8f6ec;
    color: var(--spp-primary-dark);
    font-size: 1.1rem;
}

.gallery-trigger {
    width: 100%;
    text-align: left;
    cursor: zoom-in;
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, .85);
    z-index: 2000;
    padding: 1rem;
}

.lightbox-modal.active { display: flex; }

.lightbox-image {
    max-width: min(100%, 980px);
    max-height: 78vh;
    border-radius: .75rem;
}

.lightbox-caption {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: .6rem;
    right: .9rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

.hero-section--image {
    position: relative;
    overflow: hidden;
}

.hero-section--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(248, 255, 249, 0.96) 0%, rgba(238, 247, 240, 0.90) 55%, rgba(228, 239, 231, 0.92) 100%), var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: .95;
}

.hero-section--image > .container {
    position: relative;
    z-index: 1;
}

.hero-feature-image,
.marketing-panel-image,
.service-thumbnail {
    width: 100%;
    object-fit: cover;
}

.estimate-side-panel {
    background: linear-gradient(180deg, #f8fff9 0%, #edf7ef 100%);
}

.gallery-card,
.hero-visual {
    backdrop-filter: blur(2px);
}

.hero-feature-image {
    width: 100%;
    aspect-ratio: 64 / 30;
    object-fit: cover;
}

.service-thumbnail,
.marketing-panel-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card .spp-gallery-img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
