/* DARKANACONDA SERVICE PAGES */

:root {
    --green: #b8ff00;
    --black: #050505;
    --dark: #0b0b0b;
    --card: #101010;
    --border: #242424;
    --text: #ffffff;
    --muted: #999999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.service-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.service-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.service-navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    border-bottom-color: #2a2a2a;
}

.service-logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
}

.service-nav-button,
.service-button {
    display: inline-block;
    padding: 15px 24px;
    background: var(--green);
    color: #050505;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    transition: 0.25s ease;
}

.service-nav-button:hover,
.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 255, 0, 0.15);
}

.service-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    border-bottom: 1px solid var(--border);
}

.service-label {
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.service-hero h1,
.service-section h2,
.service-cta h2 {
    font-size: clamp(48px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: -4px;
    max-width: 1000px;
}

.service-hero h1 span,
.service-section h2 span,
.service-cta h2 span {
    color: var(--green);
}

.service-hero-text {
    max-width: 680px;
    margin: 35px 0;
    color: var(--muted);
    font-size: 19px;
}

.service-price {
    margin-bottom: 30px;
    color: #777;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-price strong {
    color: var(--green);
    font-size: 24px;
    margin-left: 8px;
}

.service-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
}

.service-dark-section {
    background: var(--dark);
}

.service-large-text {
    max-width: 800px;
    margin-top: 35px;
    color: #aaa;
    font-size: 18px;
    line-height: 1.9;
}

.service-card-grid,
.service-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 70px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card,
.service-included-item {
    padding: 42px;
    background: var(--card);
}

.service-card-number,
.service-included-item > span,
.service-process-step > span {
    display: block;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.service-card h3,
.service-included-item h3,
.service-process-step h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.service-card p,
.service-included-item p,
.service-process-step p {
    color: #888;
    line-height: 1.8;
}

.service-not-included {
    margin-top: 65px;
    display: grid;
}

.service-not-included > div {
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.service-not-included strong {
    font-size: 20px;
}

.service-not-included p {
    max-width: 750px;
    margin-top: 8px;
    color: #888;
}

.service-extras-table {
    margin-top: 65px;
    border-top: 1px solid var(--border);
}

.service-extra-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.service-extra-row span {
    color: #aaa;
}

.service-extra-row strong {
    color: var(--green);
    white-space: nowrap;
}

.service-note {
    margin-top: 25px;
    color: #666;
    font-size: 13px;
}

.calculator-options {
    margin-top: 55px;
    display: grid;
    gap: 10px;
}

.calculator-option {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #080808;
    border: 1px solid #202020;
    transition: 0.2s ease;
}

.calculator-option > span {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
}

.extra-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 1px solid #444;
    background: #050505;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease;
}

.extra-checkbox:checked {
    background: var(--green);
    border-color: var(--green);
}

.extra-checkbox:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    color: #050505;
    font-size: 14px;
    font-weight: 900;
}

.calculator-option:has(.extra-checkbox:checked) {
    background: #0d0d0d;
}

.calculator-option:has(.extra-checkbox:checked) > span {
    color: #fff;
}

.calculator-option > strong {
    color: var(--green);
    white-space: nowrap;
}

.calculator-result {
    margin-top: 35px;
    padding: 35px;
    background: #0b0b0b;
    border: 1px solid #292929;
}

.calculator-result > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 18px 0;
    border-bottom: 1px solid #202020;
}

.calculator-result > div span {
    color: #777;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.calculator-result > div strong {
    color: #fff;
    font-size: 17px;
}

.calculator-result .calculator-total {
    border-bottom: none;
    padding-top: 28px;
    padding-bottom: 10px;
}

.calculator-total span {
    color: #fff !important;
}

.calculator-total strong {
    color: var(--green) !important;
    font-size: 34px !important;
}

.calculator-note {
    max-width: 650px;
    margin: 15px 0 28px;
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}

.calculator-result .service-button {
    margin-top: 5px;
}

.service-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.service-process-step {
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.service-cta {
    padding: 150px 0;
    text-align: center;
}

.service-cta .service-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-cta p:not(.service-label) {
    max-width: 600px;
    margin: 30px 0;
    color: #888;
}

.service-footer {
    padding: 50px 0;
    color: #777;
}

.service-footer .service-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.service-footer strong {
    color: #fff;
    letter-spacing: 2px;
}

.service-footer p {
    margin-top: 8px;
    font-size: 13px;
}

.service-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .service-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 800px) {
    .service-hero h1,
    .service-section h2,
    .service-cta h2 {
        letter-spacing: -2px;
    }

    .service-card-grid,
    .service-included-grid {
        grid-template-columns: 1fr;
    }

    .service-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-navbar {
        padding: 18px 20px;
    }

    .service-logo {
        font-size: 17px;
    }

    .service-nav-button {
        padding: 12px 15px;
        font-size: 9px;
    }

    .service-container {
        width: min(100% - 30px, 1180px);
    }

    .service-hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .service-hero h1,
    .service-section h2,
    .service-cta h2 {
        font-size: clamp(42px, 14vw, 65px);
    }

    .service-section {
        padding: 80px 0;
    }

    .service-card,
    .service-included-item {
        padding: 30px;
    }

    .service-process {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calculator-result {
        padding: 25px;
    }

    .calculator-result > div {
        align-items: flex-start;
    }

    .calculator-total strong {
        font-size: 25px !important;
    }

    .service-footer .service-container {
        flex-direction: column;
    }
}
