/* ==========================================================================
   ARA Full Service Landing Page  |  ara.css
   All rules namespaced with .ara- prefix — zero collision with .lp- styles
   ========================================================================== */

:root {
    --ara-brand:       #ED1B2F;
    --ara-brand-dark:  #c4111f;
    --ara-dark:        #0d0d0d;
    --ara-dark-2:      #1a1a1a;
    --ara-white:       #ffffff;
    --ara-gray-100:    #f5f5f5;
    --ara-gray-200:    #e9e9e9;
    --ara-gray-400:    #9a9a9a;
    --ara-gray-600:    #555;
    --ara-gray-800:    #1f1f1f;
    --ara-radius:      8px;
    --ara-max-width:   1100px;
    --ara-transition:  0.22s ease;
}

/* --------------------------------------------------------------------------
   Base reset scoped to this template
   -------------------------------------------------------------------------- */
.ara-header,
.ara-header *,
.ara-header *::before,
.ara-header *::after,
#ara-main,
#ara-main *,
#ara-main *::before,
#ara-main *::after,
.ara-footer,
.ara-footer *,
.ara-footer *::before,
.ara-footer *::after {
    box-sizing: border-box;
}

.ara-header,
#ara-main,
.ara-footer {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#ara-main a,
.ara-header a,
.ara-footer a {
    transition: color var(--ara-transition);
}

#ara-main img { max-width: 100%; height: auto; display: block; }

html { scroll-behavior: smooth; }

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */
.ara-container {
    width: 100%;
    max-width: var(--ara-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.ara-header {
    background: var(--ara-dark);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: sticky;
    top: 0;
    z-index: 200;
}

.ara-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.ara-header__logo a { display: block; line-height: 1; }
.ara-header__logo img { max-height: 50px; width: auto; display: block; }

.ara-header__site-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--ara-white);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.ara-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ara-brand);
    text-decoration: none;
}

.ara-header__phone:hover {
    color: #ff3347;
    text-decoration: none;
}

.ara-header__phone svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.ara-hero {
    background-color: var(--ara-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 88px 0 80px;
    position: relative;
    overflow: hidden;
}

.ara-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.80);
    z-index: 0;
}

.ara-hero .ara-container {
    position: relative;
    z-index: 1;
}

.ara-hero__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ara-brand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ara-brand);
}

.ara-hero__headline {
    font-size: clamp(1.9rem, 5.5vw, 4rem);
    font-weight: 900;
    color: var(--ara-white);
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 28px;
}

.ara-hero__sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.72;
    margin: 0 0 36px;
}

.ara-hero__footnote {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.38);
    margin-top: 18px;
    max-width: 540px;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   HERO — split layout (text + person image)
   -------------------------------------------------------------------------- */
.ara-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 40px;
}

.ara-hero__image {
    display: flex;
    justify-content: center;
}

.ara-hero__image img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
}

@media (min-width: 901px) {
    .ara-hero--split {
        padding-bottom: 0;
    }

    .ara-hero--split .ara-hero__content {
        padding-bottom: 88px;
    }

    .ara-hero--split .ara-hero__inner {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 40px;
    }

    .ara-hero--split .ara-hero__image {
        align-self: end;
        justify-content: flex-end;
    }

    .ara-hero--split .ara-hero__image img {
        max-width: 100%;
        max-height: 580px;
        width: auto;
    }

    .ara-hero--split .ara-hero__headline {
        font-size: clamp(1.75rem, 3.4vw, 2.75rem);
    }

    .ara-hero--split .ara-hero__sub {
        font-size: 1rem;
        margin-bottom: 32px;
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.ara-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition:
        background var(--ara-transition),
        border-color var(--ara-transition),
        transform var(--ara-transition),
        box-shadow var(--ara-transition);
    letter-spacing: 0.01em;
    line-height: 1;
}

.ara-btn:hover { text-decoration: none; }

.ara-btn--primary {
    background: var(--ara-brand);
    color: var(--ara-white);
    border-color: var(--ara-brand);
}

.ara-btn--primary:hover {
    background: var(--ara-brand-dark);
    border-color: var(--ara-brand-dark);
    color: var(--ara-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(237,27,47,0.42);
}

.ara-btn--lg {
    padding: 19px 42px;
    font-size: 1.0625rem;
    border-radius: 999px;
}

/* --------------------------------------------------------------------------
   BODY / VALUE PROP SECTION
   -------------------------------------------------------------------------- */
.ara-body {
    padding: 88px 0 80px;
    background: var(--ara-white);
}

.ara-body__headline {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 900;
    color: var(--ara-gray-800);
    margin: 0 auto 28px;
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-align: left;
    max-width: 820px;
}

.ara-body__content {
    font-size: 1.8rem;
    color: var(--ara-gray-600);
    line-height: 1.80;
    max-width: 820px;
    margin: 0 auto 36px;
}

.ara-body__content p { margin: 0 0 1.3em; }
.ara-body__content p:last-child { margin-bottom: 0; }

.ara-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 820px;
}

.ara-bullets li {
    font-size: 0.9375rem;
    color: var(--ara-gray-600);
    line-height: 1.68;
    padding-left: 20px;
    position: relative;
}

.ara-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ara-brand);
    flex-shrink: 0;
}

.ara-bullets li strong {
    color: var(--ara-gray-800);
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   GOOGLE REVIEWS — embedded inside the body section
   -------------------------------------------------------------------------- */
.ara-reviews {
    margin-top: 56px;
}

/* --------------------------------------------------------------------------
   RESULTS SECTION
   -------------------------------------------------------------------------- */
.ara-results {
    padding: 88px 0 80px;
    background: var(--ara-gray-100);
}

.ara-results__title {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 900;
    color: var(--ara-gray-800);
    text-align: center;
    margin: 0 0 52px;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.ara-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}

.ara-result-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 36px rgba(0,0,0,0.13);
    transform: translateY(0);
    transition: transform var(--ara-transition), box-shadow var(--ara-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ara-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.ara-result-card__header {
    background: var(--ara-dark-2);
    padding: 15px 20px;
    text-align: center;
}

.ara-result-card__client {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ara-white);
    line-height: 1.5;
}

.ara-result-card__body {
    background: var(--ara-brand);
    padding: 36px 24px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.ara-result-card__primary {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--ara-white);
    line-height: 1;
    letter-spacing: -0.03em;
}

.ara-result-card__secondary {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   PROCESS SECTION
   -------------------------------------------------------------------------- */
.ara-process {
    padding: 88px 0 80px;
    background: #eeeeee;
}

.ara-process__title {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 900;
    color: var(--ara-gray-800);
    text-align: center;
    margin: 0 0 56px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.ara-process__steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 580px;
    margin: 0 auto 36px;
    text-align: center;
}

.ara-step {
    position: relative;
}

.ara-step__num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ara-brand);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 8px;
    border: 1.5px solid var(--ara-brand);
    border-radius: 40px;
    padding: 3px 12px;
}

.ara-step__title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ara-gray-800);
    margin: 0 0 10px;
    line-height: 1.3;
}

.ara-step__body {
    font-size: 0.9375rem;
    color: var(--ara-gray-600);
    line-height: 1.72;
    margin: 0;
}

.ara-process__footnote {
    text-align: center;
    font-size: 0.875rem;
    color: var(--ara-gray-400);
    max-width: 560px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   CONTACT FORM SECTION
   -------------------------------------------------------------------------- */
.ara-contact {
    padding: 88px 0 80px;
    background: var(--ara-white);
}

.ara-contact__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.ara-contact__title {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 900;
    color: var(--ara-gray-800);
    margin: 0 0 12px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.ara-contact__sub {
    font-size: 1rem;
    color: var(--ara-gray-600);
    line-height: 1.70;
    margin: 0 0 36px;
}

.ara-contact__form-wrap {
    text-align: left;
}

/* Fallback form */
.ara-form .ara-form__row { margin-bottom: 14px; }

.ara-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ara-gray-800);
    margin-bottom: 5px;
    letter-spacing: 0.01em;
}

.ara-form input[type="text"],
.ara-form input[type="email"],
.ara-form input[type="tel"],
.ara-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--ara-gray-200);
    border-radius: var(--ara-radius);
    font-size: 0.9375rem;
    color: var(--ara-gray-800);
    background: #fafafa;
    outline: none;
    transition: border-color var(--ara-transition), box-shadow var(--ara-transition);
    appearance: none;
    -webkit-appearance: none;
}

.ara-form input:focus,
.ara-form textarea:focus {
    border-color: var(--ara-brand);
    box-shadow: 0 0 0 3px rgba(237,27,47,0.10);
    background: var(--ara-white);
}

.ara-form textarea { resize: vertical; min-height: 100px; }

.ara-form .ara-form__submit { width: 100%; margin-top: 8px; }

.ara-contact__disclaimer {
    font-size: 0.8rem;
    color: var(--ara-gray-400);
    margin-top: 16px;
    line-height: 1.6;
    text-align: center;
}

/* CF7 / GF / WPForms overrides inside ara-contact */
.ara-contact__form-wrap .wpcf7-form input[type="text"],
.ara-contact__form-wrap .wpcf7-form input[type="email"],
.ara-contact__form-wrap .wpcf7-form input[type="tel"],
.ara-contact__form-wrap .wpcf7-form textarea,
.ara-contact__form-wrap .gfield input,
.ara-contact__form-wrap .gfield textarea {
    border: 1.5px solid var(--ara-gray-200) !important;
    border-radius: var(--ara-radius) !important;
    padding: 12px 16px !important;
    font-size: 0.9375rem !important;
    background: #fafafa !important;
    color: var(--ara-gray-800) !important;
}

.ara-contact__form-wrap .wpcf7-submit,
.ara-contact__form-wrap input[type="submit"],
.ara-contact__form-wrap .gform_button {
    background: var(--ara-brand) !important;
    color: var(--ara-white) !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 16px 32px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: background var(--ara-transition) !important;
}

.ara-contact__form-wrap .wpcf7-submit:hover,
.ara-contact__form-wrap input[type="submit"]:hover,
.ara-contact__form-wrap .gform_button:hover {
    background: var(--ara-brand-dark) !important;
}

/* --------------------------------------------------------------------------
   FINAL CTA (dark)
   -------------------------------------------------------------------------- */
.ara-cta-dark {
    padding: 96px 0;
    background: var(--ara-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ara-cta-dark::before {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,0.025);
    pointer-events: none;
}

.ara-cta-dark .ara-container {
    position: relative;
    z-index: 1;
}

.ara-cta-dark__headline {
    font-size: clamp(1.875rem, 4vw, 3.125rem);
    font-weight: 900;
    color: var(--ara-white);
    margin: 0 0 16px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.ara-cta-dark__body {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.60);
    line-height: 1.72;
    max-width: 600px;
    margin: 0 auto 36px;
}

.ara-faq {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.09);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.ara-faq__question {
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgba(255,255,255,0.78);
    margin: 0 0 10px;
}

.ara-faq__answer {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.46);
    line-height: 1.72;
    margin: 0;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.ara-footer {
    background: var(--ara-dark-2);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 14px 0;
}

.ara-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    height: 28px;
}

.ara-footer__copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.30);
    margin: 0;
}

.ara-footer__sep {
    display: none;
}

.ara-footer__phone {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.30);
    text-decoration: none;
    transition: color var(--ara-transition);
}

.ara-footer__phone:hover { color: var(--ara-brand); }

.ara-footer__privacy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color var(--ara-transition);
}

.ara-footer__privacy:hover { color: rgba(255,255,255,0.55); }

/* Strip any theme-injected bullets/list styling from footer links */
.ara-footer__inner > *,
.ara-footer__phone,
.ara-footer__privacy {
    list-style: none !important;
}
.ara-footer__phone::before,
.ara-footer__phone::after,
.ara-footer__privacy::before,
.ara-footer__privacy::after {
    display: none !important;
    content: none !important;
}

/* --------------------------------------------------------------------------
   BODY SECTION — optional background image
   -------------------------------------------------------------------------- */
.ara-body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


/* --------------------------------------------------------------------------
   Scroll animations
   -------------------------------------------------------------------------- */
.ara-fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ara-fade-up.ara-in-view {
    opacity: 1;
    transform: none;
}

.ara-fade-up:nth-child(2) { transition-delay: 0.09s; }
.ara-fade-up:nth-child(3) { transition-delay: 0.18s; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .ara-results__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .ara-hero--split .ara-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ara-hero__image {
        display: none;
    }
}

@media (max-width: 640px) {
    .ara-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ara-hero { padding: 60px 0 52px; }

    .ara-hero__headline {
        font-size: 1.75rem;
        line-height: 1;
    }

    .ara-body,
    .ara-results,
    .ara-process,
    .ara-contact,
    .ara-cta-dark {
        padding: 60px 0;
    }

    .ara-process__steps { gap: 36px; }

    .ara-footer__inner { flex-direction: column; gap: 6px; }
    .ara-footer__sep { display: none; }
}

@media (max-width: 360px) {
    .ara-header__phone .ara-header__phone-label { display: none; }
}
