/* ================================================================================
   Bentonville Handyman Co - Production Stylesheet
   ================================================================================ */

:root {
    --brand-yellow: #ffcc00;
    --brand-yellow-dark: #e6b800;
    --brand-black: #111111;
    --text-dark: #333333;
    --text-muted: #555555;
    --text-light: #f8f8f8;
    --white: #ffffff;
    --border: #e6e6e6;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.14);
    --section-padding: 80px 10%;
    --container-max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--text-light);
    color: var(--text-dark);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img,
svg {
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -48px;
    z-index: 9999;
    background: var(--brand-yellow);
    color: var(--brand-black);
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
}

.section-pad {
    padding: var(--section-padding);
}

.section-title,
.about h2 {
    color: var(--brand-black);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 0 auto 40px;
    max-width: 840px;
    text-align: center;
}

.narrow-copy {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.narrow-copy p {
    font-size: 1.15rem;
    margin-top: 18px;
}

.note-copy {
    background: #fff9d8;
    border-left: 5px solid var(--brand-yellow);
    border-radius: 6px;
    padding: 18px;
    text-align: left;
}

.btn-yellow,
.btn-secondary,
.btn-dark,
.btn-dark-outline {
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.04em;
    line-height: 1.2;
    min-height: 48px;
    padding: 14px 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn-yellow {
    background-color: var(--brand-yellow);
    border: 2px solid var(--brand-yellow);
    color: var(--brand-black);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-dark {
    background-color: var(--brand-black);
    border: 2px solid var(--brand-black);
    color: var(--brand-yellow);
}

.btn-dark-outline {
    background-color: transparent;
    border: 2px solid var(--brand-black);
    color: var(--brand-black);
}

.btn-yellow:hover,
.btn-secondary:hover,
.btn-dark:hover,
.btn-dark-outline:hover,
.btn-yellow:focus-visible,
.btn-secondary:focus-visible,
.btn-dark:focus-visible,
.btn-dark-outline:focus-visible {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
}

.btn-yellow:hover,
.btn-yellow:focus-visible {
    background-color: var(--brand-yellow-dark);
}

.site-header {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.45);
    display: flex;
    height: 110px;
    justify-content: space-between;
    left: 0;
    padding: 10px 5%;
    position: fixed;
    top: 0;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    width: 100%;
    z-index: 100;
}

.site-header.scrolled {
    background-color: var(--brand-black);
    border-bottom: 2px solid var(--brand-yellow);
}

.header-brand {
    align-items: center;
    display: flex;
    gap: 15px;
    text-decoration: none;
}

.header-brand img {
    height: 90px;
    object-fit: contain;
    width: auto;
}

.header-title {
    color: var(--white);
    font-size: clamp(1.0rem, 1.35vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.header-actions {
    align-items: center;
    display: flex;
    gap: 20px;
}

.header-phone {
    align-items: center;
    color: var(--white);
    display: inline-flex;
    font-size: 1.1rem;
    font-weight: 800;
    gap: 7px;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus-visible {
    color: var(--brand-yellow);
}

.phone-icon,
.floating-text-btn svg {
    fill: currentColor;
}

.header-phone .phone-icon {
    color: var(--brand-yellow);
    flex: 0 0 auto;
}

.mobile-hero-logo {
    display: none;
}

.hero {
    align-items: flex-end;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 100%), url('../images/handyman-bentonville-ar.webp');
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 100vh;
    padding: 0 10% 8vh;
    width: 100%;
}

.hero-content {
    color: var(--white);
    max-width: 860px;
}

.eyebrow {
    color: var(--brand-yellow);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--brand-yellow);
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 1.05;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.55);
}

.hero p:not(.eyebrow) {
    font-size: clamp(1.08rem, 2vw, 1.5rem);
    margin-bottom: 30px;
    max-width: 780px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.55);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-strip {
    background: var(--brand-black);
    border-bottom: 4px solid var(--brand-yellow);
    color: var(--white);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    background: #181818;
    padding: 24px 20px;
    text-align: center;
}

.trust-item strong {
    color: var(--brand-yellow);
    display: block;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.trust-item span,
.trust-item a {
    color: #d8d8d8;
    text-decoration: none;
}

.about,
.why-us,
.testimonials {
    background: var(--white);
}

.benefits-grid,
.review-grid,
.process-grid,
.service-category-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: var(--container-max);
}

.benefit-item,
.process-grid article,
.service-category-card,
.review-card,
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.why-us .benefit-item {
    text-align: center;
}

.benefit-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-item h3,
.service-category-card h3,
.process-grid h3,
.faq-item h3 {
    color: var(--brand-black);
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.locations {
    background-color: var(--brand-black);
    color: var(--white);
    text-align: center;
}

.locations .section-title {
    color: var(--brand-yellow);
}

.locations .section-subtitle {
    color: #d0d0d0;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 30px;
}

.city-item {
    border: 2px solid var(--brand-yellow);
    border-radius: 6px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    padding: 12px 22px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.city-item:hover,
.city-item:focus-visible {
    background: var(--brand-yellow);
    color: var(--brand-black);
}

.services,
.faq,
.process {
    background-color: var(--text-light);
}

.service-category-card {
    border-top: 6px solid var(--brand-yellow);
}

.service-category-card ul {
    margin-left: 20px;
}

.service-category-card li + li {
    margin-top: 9px;
}

.more-services {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin: 34px auto 0;
    max-width: var(--container-max);
    overflow: hidden;
}

.more-services summary {
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 800;
    padding: 22px 26px;
}

.more-services[open] summary {
    border-bottom: 1px solid var(--border);
}

.service-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    padding: 26px;
}

.service-item {
    background: var(--text-light);
    border-left: 5px solid var(--brand-yellow);
    border-radius: 6px;
    padding: 18px;
}

.service-item strong {
    color: var(--brand-black);
    display: block;
    margin-bottom: 5px;
}

.process-grid article span {
    color: var(--brand-yellow-dark);
    display: block;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.review-card {
    background: var(--text-light);
}

.stars {
    color: var(--brand-yellow-dark);
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.review-card blockquote {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 15px;
}

.review-card figcaption {
    color: var(--brand-black);
    font-weight: 800;
}

.faq-container {
    margin: 0 auto;
    max-width: 880px;
}

.faq-item {
    border-left: 5px solid var(--brand-black);
    margin-bottom: 20px;
}

.faq-item a {
    color: var(--brand-black);
    font-weight: 800;
}

.final-cta {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    padding: 70px 10%;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.15;
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 1.15rem;
    margin: 0 auto 24px;
    max-width: 700px;
}

.final-cta-actions {
    justify-content: center;
}

footer {
    background-color: var(--brand-black);
    border-top: 5px solid var(--brand-yellow);
    color: var(--white);
    padding: 60px 10% 40px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 40px;
}

.footer-col h2 {
    color: var(--brand-yellow);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.footer-col p,
.footer-col address {
    color: #cccccc;
    font-size: 0.95rem;
    font-style: normal;
    line-height: 1.8;
}

.footer-col a,
.footer-bottom a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-bottom a:hover,
.footer-col a:focus-visible,
.footer-bottom a:focus-visible {
    color: var(--brand-yellow);
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid #333333;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    padding-top: 24px;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links svg {
    fill: var(--brand-yellow);
    height: 28px;
    transition: fill 0.2s ease;
    width: 28px;
}

.social-links a:hover svg,
.social-links a:focus-visible svg {
    fill: var(--white);
}

.modal-overlay {
    align-items: center;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.72);
    bottom: 0;
    display: none;
    justify-content: center;
    left: 0;
    padding: 20px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.modal-overlay.is-open {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 40px);
    max-width: 520px;
    overflow: auto;
    padding: 36px;
    position: relative;
    width: 100%;
}

.close-btn {
    background: transparent;
    border: 0;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    right: 18px;
    top: 14px;
}

.close-btn:hover,
.close-btn:focus-visible {
    color: var(--brand-black);
}

.modal-content h2 {
    color: var(--brand-black);
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 11px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-yellow-dark);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.25);
    outline: none;
}

.hidden-field {
    display: none;
}

.form-note,
.form-status {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.form-status.is-error {
    color: #b00020;
    font-weight: 800;
}

.form-status.is-success {
    color: #176b2c;
    font-weight: 800;
}

.submit-btn {
    width: 100%;
}

.submit-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.7;
}

.success-content {
    text-align: center;
}

.success-content h2 {
    color: #176b2c;
}

.success-content p {
    margin-bottom: 22px;
}

.floating-text-btn {
    align-items: center;
    background-color: var(--brand-yellow);
    border-radius: 50%;
    bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: var(--brand-black);
    display: none;
    height: 60px;
    justify-content: center;
    position: fixed;
    right: 25px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    width: 60px;
    z-index: 900;
}

.floating-text-btn:hover,
.floating-text-btn:focus-visible {
    background-color: var(--brand-yellow-dark);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1024px) {
    .benefits-grid,
    .review-grid,
    .process-grid,
    .service-category-grid,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 5%;
    }

    .site-header {
        height: 82px;
        padding: 10px 5%;
    }

    .header-brand img {
        height: 54px;
    }

    .header-actions {
        gap: 10px;
        justify-content: space-between;
        width: 100%;
    }

    .header-phone {
        font-size: 1rem;
    }

    .site-header .btn-yellow {
        padding: 10px 14px;
        white-space: nowrap;
    }

    .hero {
        padding: 0 5% 10vh;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-text-btn.active {
        display: flex;
    }
}

@media (max-width: 640px) {
    .site-header {
        justify-content: flex-start;
    }

    .header-brand {
        display: none;
    }

    .header-actions {
        align-items: center;
        display: flex;
        gap: 10px;
        justify-content: space-between;
        width: 100%;
    }

    .header-phone {
        display: inline-flex;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .hero {
        align-items: center;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 100%), url('../images/handyman-bentonville-arkansas.webp');
        justify-content: center;
        min-height: 100svh;
        padding: 88px 5% 40px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
        max-width: 420px;
        width: 100%;
    }

    .mobile-hero-logo {
        display: block;
        height: auto;
        margin: 0 auto 8px;
        max-height: none;
        max-width: none;
        object-fit: contain;
        width: 140px;
    }

    .hero .eyebrow {
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .hero h1 {
        font-size: clamp(2.375rem, 10vw, 2.625rem);
        line-height: 1.04;
        margin-bottom: 12px;
    }

    .hero p:not(.eyebrow) {
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 18px;
    }

    .hero-cta-row {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .hero-cta-row .btn-yellow,
    .hero-cta-row .btn-secondary {
        flex: 1 1 0;
        font-size: 0.875rem;
        letter-spacing: 0.02em;
        min-height: 48px;
        min-width: 0;
        padding: 12px 8px;
    }

    .benefits-grid,
    .review-grid,
    .process-grid,
    .service-category-grid,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .city-list {
        flex-direction: column;
        gap: 14px;
    }

    .modal-content {
        padding: 24px;
    }
}

@media (max-width: 420px) {
    .header-phone span {
        font-size: 0.92rem;
    }

    .site-header .btn-yellow {
        font-size: 0.85rem;
        padding: 9px 10px;
    }
}

/* ================================================================================
   Test-page enhancements — desktop funnel, navigation, reviews, and form
   Mobile hero sizing is maintained in the responsive rules above.
   ================================================================================ */

:where(a, button, input, textarea, select, summary):focus-visible {
    outline: 3px solid var(--brand-yellow-dark);
    outline-offset: 3px;
}

.desktop-nav {
    align-items: center;
    display: flex;
    gap: clamp(14px, 1.8vw, 28px);
    margin-left: auto;
    margin-right: clamp(16px, 2vw, 30px);
}

.desktop-nav a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

.desktop-nav a::after {
    background: var(--brand-yellow);
    bottom: -8px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.services {
    scroll-margin-top: 110px;
}

#why-us,
#reviews,
#service-areas,
#faq {
    scroll-margin-top: 110px;
}

.service-category-card,
.benefit-item,
.process-grid article,
.review-card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-category-card:hover,
.benefit-item:hover,
.process-grid article:hover,
.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-category-card a,
.service-item a {
    color: var(--brand-black);
    font-weight: 800;
    text-decoration-color: var(--brand-yellow-dark);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.service-category-card a:hover,
.service-category-card a:focus-visible,
.service-item a:hover,
.service-item a:focus-visible {
    text-decoration-color: var(--brand-black);
}

.conversion-band {
    align-items: center;
    background: var(--brand-yellow);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin: 38px auto 0;
    max-width: var(--container-max);
    padding: 28px 32px;
}

.conversion-band h3 {
    color: var(--brand-black);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.2;
    margin-bottom: 5px;
}

.conversion-band p {
    color: #292929;
    margin: 0;
}

.conversion-band-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}

.why-intro {
    margin: 0 auto 38px;
    max-width: 900px;
    text-align: center;
}

.why-intro > p:first-child {
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.benefit-icon {
    align-items: center;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: inline-flex;
    height: 64px;
    justify-content: center;
    margin: 0 auto 18px;
    width: 64px;
}

.benefit-icon svg {
    fill: var(--brand-black);
    height: 31px;
    width: 31px;
}

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.review-card blockquote {
    flex: 1;
}

.review-card figcaption {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-card figcaption strong {
    color: var(--brand-black);
}

.review-card figcaption span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.review-card figcaption a {
    color: var(--brand-black);
    font-size: 0.9rem;
    font-weight: 800;
    margin-top: 7px;
    text-decoration-color: var(--brand-yellow-dark);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.review-actions {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.modal-intro {
    color: var(--text-muted);
    margin: -7px 0 20px;
}

.modal-content {
    max-width: 660px;
}

.form-row {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group select,
.form-group input[type="file"] {
    background: var(--white);
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 11px;
    width: 100%;
}

.form-group select:focus,
.form-group input[type="file"]:focus {
    border-color: var(--brand-yellow-dark);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.25);
    outline: none;
}

.field-help {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: -7px 0 14px;
}

.optional-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"],
.form-group select[aria-invalid="true"] {
    border-color: #b00020;
    box-shadow: 0 0 0 3px rgba(176, 0, 32, 0.12);
}

@media (max-width: 1180px) {
    .desktop-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .conversion-band {
        align-items: stretch;
        flex-direction: column;
        padding: 24px;
    }

    .conversion-band-actions {
        width: 100%;
    }

    .conversion-band-actions > * {
        flex: 1 1 190px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .conversion-band-actions {
        flex-direction: column;
    }

    .conversion-band-actions > * {
        width: 100%;
    }
}

