/* notary.css — Asterion Technologies Notary Services — Light Theme */

/* ===== DESIGN TOKENS ===== */
.notary-page {
    --nt-bg:           #f4f7fb;
    --nt-surface:      #ffffff;
    --nt-primary:      #1a3a5c;
    --nt-primary-dark: #0f2340;
    --nt-accent:       #b8281e;
    --nt-accent-dark:  #961e16;
    --nt-text:         #1d2d44;
    --nt-muted:        #5a6e85;
    --nt-border:       rgba(26, 58, 92, 0.13);
    --nt-shadow:       0 4px 24px rgba(26, 58, 92, 0.08);
    --nt-shadow-hover: 0 8px 40px rgba(26, 58, 92, 0.15);
    background: var(--nt-bg);
    color: var(--nt-text);
}

/* Override dark base text/heading colors for light page content */
.notary-page h1,
.notary-page h2,
.notary-page h3,
.notary-page h4,
.notary-page h5,
.notary-page h6 {
    color: var(--nt-primary);
}

.notary-page a {
    color: var(--nt-primary);
}

/* Keep navbar + footer dark — do not override their existing styles */
.notary-page .navbar-main h1,
.notary-page .navbar-main h2,
.notary-page .footer h1,
.notary-page .footer h2,
.notary-page .footer h3,
.notary-page .footer h4,
.notary-page .footer h5 {
    color: var(--bs-white);
}

/* Override muted text colour for light background */
.notary-page .text-muted {
    color: var(--nt-muted) !important;
}

/* ===== SECTION CHROME ===== */
.notary-page .section-eyebrow {
    color: var(--nt-accent);
}

.notary-page .section-divider {
    background: var(--nt-primary);
}

/* ===== SECTION SURFACE HELPERS ===== */
.nt-section-light  { background: var(--nt-bg);      padding: 80px 0; }
.nt-section-white  { background: var(--nt-surface);  padding: 80px 0; }


/* ===== HERO ===== */
.nt-hero {
    background: linear-gradient(140deg, #d9e8f8 0%, #eaf2fd 45%, #f4f7fb 100%);
    padding: 100px 0 84px;
    position: relative;
    overflow: hidden;
}

/* Soft radial glow in upper-right corner */
.nt-hero::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(26, 58, 92, 0.07) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.nt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 58, 92, 0.08);
    border: 1px solid rgba(26, 58, 92, 0.16);
    border-radius: 100px;
    padding: 5px 16px;
    font-family: 'Saira', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nt-primary);
    margin-bottom: 22px;
}

.nt-hero-headline {
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    font-weight: 800;
    line-height: 1.13;
    color: var(--nt-primary);
    margin-bottom: 20px;
}

.nt-accent-word { color: var(--nt-accent); }

.nt-hero-sub {
    font-size: 1.05rem;
    color: var(--nt-muted);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.nt-hero-disclaimer {
    font-size: 0.75rem;
    color: var(--nt-muted);
    margin-top: 18px;
    font-style: italic;
}

/* Decorative seal graphic */
.nt-hero-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nt-hero-seal {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 64px rgba(26, 58, 92, 0.28);
    position: relative;
}

.nt-hero-seal::before,
.nt-hero-seal::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.nt-hero-seal::before {
    inset: 12px;
    border: 2px solid rgba(255, 255, 255, 0.18);
}

.nt-hero-seal::after {
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nt-hero-seal i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    z-index: 1;
}

/* Actual notary seal image replacing the decorative stamp icon */
.nt-hero-seal-img {
    max-width: 320px;
    filter: drop-shadow(0 16px 48px rgba(26, 58, 92, 0.22));
}

/* Trust checkmarks below hero CTA */
.nt-hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-top: 28px;
}

.nt-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Saira', sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--nt-muted);
}

.nt-hero-trust-item i { color: var(--nt-accent); }


/* ===== LIGHT-THEME BUTTONS ===== */
.btn-nt-accent,
.btn-nt-primary,
.btn-nt-outline {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 2px;
    border-width: 2px;
    border-style: solid;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-nt-accent {
    background: var(--nt-accent);
    color: #fff;
    border-color: var(--nt-accent);
}
.btn-nt-accent:hover,
.btn-nt-accent:focus {
    background: var(--nt-accent-dark);
    border-color: var(--nt-accent-dark);
    color: #fff;
}

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

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


/* ===== TRUST STRIP ===== */
.nt-trust-strip {
    background: var(--nt-surface);
    border-top: 3px solid var(--nt-primary);
    border-bottom: 1px solid var(--nt-border);
    padding: 44px 0;
}

.nt-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    padding: 8px 0;
}

.nt-trust-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 4px;
    background: rgba(26, 58, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.nt-trust-item:hover .nt-trust-icon {
    background: rgba(26, 58, 92, 0.14);
}

.nt-trust-icon i {
    font-size: 1.3rem;
    color: var(--nt-primary);
}

.nt-trust-item h5 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--nt-primary);
}

.nt-trust-item p {
    font-size: 0.83rem;
    color: var(--nt-muted);
    margin: 0;
    line-height: 1.55;
}


/* ===== SERVICE CARDS ===== */
.nt-card {
    background: var(--nt-surface);
    border: 1px solid var(--nt-border);
    border-left: 4px solid var(--nt-primary);
    border-radius: 4px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: var(--nt-shadow);
    transition: border-left-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nt-card:hover {
    border-left-color: var(--nt-accent);
    box-shadow: var(--nt-shadow-hover);
    transform: translateY(-4px);
}

.nt-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background: rgba(26, 58, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s ease;
}

.nt-card:hover .nt-card-icon { background: rgba(184, 40, 30, 0.08); }

.nt-card-icon i {
    font-size: 1.35rem;
    color: var(--nt-primary);
    transition: color 0.25s ease;
}

.nt-card:hover .nt-card-icon i { color: var(--nt-accent); }

.nt-card h4 {
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--nt-primary);
}

.nt-card p {
    font-size: 0.88rem;
    color: var(--nt-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.nt-card ul {
    margin-top: 12px;
    padding-left: 18px;
    font-size: 0.84rem;
    color: var(--nt-muted);
}

.nt-card ul li { margin-bottom: 4px; }


/* ===== PRICING TABLE ===== */
.nt-pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--nt-shadow);
    background: var(--nt-surface);
}

.nt-pricing-table thead tr { background: var(--nt-primary); }

.nt-pricing-table thead th {
    padding: 16px 20px;
    font-family: 'Saira', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e8edf2;
    border: none;
}

.nt-pricing-table tbody tr {
    border-bottom: 1px solid var(--nt-border);
    transition: background 0.18s ease;
}

.nt-pricing-table tbody tr:last-child { border-bottom: none; }

.nt-pricing-table tbody tr:nth-child(even) { background: rgba(26, 58, 92, 0.025); }

.nt-pricing-table tbody tr:hover { background: rgba(26, 58, 92, 0.05); }

.nt-pricing-table td {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--nt-text);
    border: none;
    vertical-align: middle;
}

.nt-pricing-table td:first-child {
    font-weight: 600;
    color: var(--nt-primary);
}

.price-amount {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--nt-accent);
    white-space: nowrap;
}

.nt-pricing-note {
    font-size: 0.82rem;
    color: var(--nt-muted);
    font-style: italic;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(26, 58, 92, 0.04);
    border-left: 3px solid rgba(26, 58, 92, 0.2);
    border-radius: 2px;
}


/* ===== ONLINE PLATFORMS SECTION (dark panel) ===== */
.nt-platforms-section {
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.nt-platforms-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(184, 40, 30, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.nt-platforms-section .section-eyebrow { color: #e07070; }

.nt-platforms-section h2 { color: #e8edf2; }

.nt-platforms-section .section-divider { background: rgba(255, 255, 255, 0.2); }

.nt-platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 24px 16px;
    text-align: center;
    height: 100%;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.nt-platform-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
}

.nt-platform-name {
    font-family: 'Saira', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #e8edf2;
    margin-bottom: 8px;
}

.nt-platform-desc {
    font-size: 0.8rem;
    color: #8a9bb0;
    margin-bottom: 14px;
    line-height: 1.5;
}

/* Platform section booking icon */
.nt-platform-icon { color: #e07070; }

/* Notary Hub storefront QR code */
.nt-qr-wrap { display: inline-block; }

.nt-qr-img {
    max-width: 200px;
    border-radius: 8px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nt-qr-caption {
    font-family: 'Saira', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a9bb0;
}

.nt-coming-soon-badge {
    display: inline-block;
    background: rgba(184, 40, 30, 0.18);
    border: 1px solid rgba(184, 40, 30, 0.38);
    color: #e07070;
    font-family: 'Saira', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}


/* ===== CONTACT SECTION ===== */
.nt-contact-section { padding: 80px 0; }

.nt-contact-form-wrap {
    background: var(--nt-surface);
    border: 1px solid var(--nt-border);
    border-radius: 4px;
    padding: 40px 36px;
    box-shadow: var(--nt-shadow);
}

/* Light-theme form controls */
.nt-form-control {
    display: block;
    width: 100%;
    background: #f8fafc;
    border: 1px solid rgba(26, 58, 92, 0.2);
    border-radius: 3px;
    color: var(--nt-text);
    padding: 11px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
    appearance: auto;
}

.nt-form-control:focus {
    background: #fff;
    border-color: var(--nt-primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
    outline: none;
}

.nt-form-control::placeholder { color: #9aadbe; }

.nt-form-label {
    display: block;
    font-family: 'Saira', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nt-primary);
    margin-bottom: 6px;
}

.nt-form-field { margin-bottom: 20px; }

.nt-form-field.has-error .nt-form-control { border-color: var(--nt-accent); }

.nt-form-error {
    display: none;
    font-size: 0.76rem;
    color: var(--nt-accent);
    margin-top: 4px;
}

.nt-form-error.visible { display: block; }

.nt-consent-label {
    font-size: 0.84rem;
    color: var(--nt-muted);
    cursor: pointer;
    line-height: 1.55;
}

.nt-consent-label a {
    color: var(--nt-primary);
    text-decoration: underline;
}

/* Form feedback banner */
.nt-form-feedback {
    display: none;
    padding: 14px 18px;
    border-radius: 3px;
    font-size: 0.88rem;
    margin-top: 14px;
}

.nt-form-feedback.success {
    background: rgba(26, 58, 92, 0.06);
    border: 1px solid rgba(26, 58, 92, 0.2);
    color: var(--nt-primary);
}

.nt-form-feedback.error {
    background: rgba(184, 40, 30, 0.06);
    border: 1px solid rgba(184, 40, 30, 0.22);
    color: var(--nt-accent);
}

/* Contact info sidebar */
.nt-contact-info {
    background: linear-gradient(140deg, var(--nt-primary) 0%, var(--nt-primary-dark) 100%);
    border-radius: 4px;
    padding: 36px 28px;
    height: 100%;
}

.nt-contact-info h3 {
    color: #e8edf2;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.nt-contact-info > p {
    color: #8a9bb0;
    font-size: 0.88rem;
    margin-bottom: 28px;
    line-height: 1.65;
}

.nt-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nt-contact-info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.nt-contact-info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(184, 40, 30, 0.18);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nt-contact-info-icon i {
    color: #e07070;
    font-size: 0.88rem;
}

.info-label {
    display: block;
    font-family: 'Saira', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a9bb0;
    margin-bottom: 2px;
}

.info-value {
    display: block;
    font-size: 0.88rem;
    color: #e8edf2;
    line-height: 1.5;
}

.info-value a {
    color: #e8edf2;
    text-decoration: none;
}

.info-value a:hover {
    color: #fff;
    text-decoration: underline;
}

.nt-service-area-note {
    font-size: 0.77rem;
    color: #8a9bb0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin-top: 18px;
    font-style: italic;
    line-height: 1.55;
}


/* ===== FAQ ACCORDION ===== */
.nt-faq-section { padding: 80px 0; }

.nt-accordion .accordion-item {
    background: var(--nt-surface);
    border: 1px solid var(--nt-border) !important;
    border-radius: 4px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.nt-accordion .accordion-button {
    background: var(--nt-surface);
    color: var(--nt-primary);
    font-family: 'Saira', sans-serif;
    font-size: 0.93rem;
    font-weight: 700;
    padding: 18px 24px;
    box-shadow: none;
}

.nt-accordion .accordion-button:not(.collapsed) {
    background: rgba(26, 58, 92, 0.04);
    color: var(--nt-accent);
    box-shadow: none;
}

/* Custom chevron using data-URI SVG (avoids filter hacks) */
.nt-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a3a5c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.nt-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b8281e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.nt-accordion .accordion-body {
    font-size: 0.89rem;
    color: var(--nt-muted);
    padding: 0 24px 20px;
    line-height: 1.72;
}

.nt-accordion .accordion-body a {
    color: var(--nt-primary);
    text-decoration: underline;
}


/* ===== FOOTER ADDITIONS ===== */
.nt-footer-disclaimer {
    font-size: 0.77rem;
    color: #8a9bb0;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    margin-top: 12px;
    line-height: 1.6;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .nt-hero {
        padding: 80px 0 60px;
        text-align: center;
    }

    .nt-hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .nt-hero-trust-row { justify-content: center; }

    .nt-hero-img-wrap { margin-top: 44px; }

    .nt-hero-seal {
        width: 220px;
        height: 220px;
    }

    .nt-hero-seal i { font-size: 3.5rem; }

    .nt-contact-form-wrap { padding: 28px 20px; }

    .nt-contact-info { margin-bottom: 0; }

    .nt-section-light,
    .nt-section-white,
    .nt-faq-section,
    .nt-contact-section,
    .nt-platforms-section { padding: 64px 0; }

    .nt-trust-strip { padding: 36px 0; }
}

@media (max-width: 575.98px) {
    .nt-section-light,
    .nt-section-white,
    .nt-faq-section,
    .nt-contact-section,
    .nt-platforms-section,
    .nt-trust-strip { padding: 52px 0; }

    .nt-hero { padding: 60px 0 48px; }
    .nt-hero-headline { font-size: 1.8rem; }

    .nt-pricing-table td,
    .nt-pricing-table th { padding: 12px 12px; font-size: 0.82rem; }

    .nt-contact-form-wrap { padding: 22px 16px; }
}


/* ===== UTILITY CLASSES (replaces all inline styles in notary.html) ===== */

/* Section divider — already centered by style.css margin:auto;
   nt-divider-on-dark overrides background for dark panel sections */
.nt-divider-on-dark { background: rgba(255, 255, 255, 0.22) !important; }

/* Section intro paragraph — centered, muted, max-width constrained */
.nt-section-intro {
    color: var(--nt-muted);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.nt-section-intro--sm  { max-width: 540px; }
.nt-section-intro--md  { max-width: 560px; }
.nt-section-intro--lg  { max-width: 600px; }
.nt-section-intro--light { color: #8a9bb0; }  /* for use on the dark platforms panel */

/* Horizontal scroll wrapper for pricing table on narrow screens */
.nt-table-scroll { overflow-x: auto; }

/* Legal / statutory footnote under the platforms panel */
.nt-platform-footnote {
    font-size: 0.8rem;
    color: #8a9bb0;
    font-style: italic;
}

/* "After-hours by appointment" sub-label inside availability info */
.nt-avail-sub {
    font-size: 0.8em;
    color: #8a9bb0;
}

/* Required-field asterisk (*) beside form labels */
.nt-required { color: var(--nt-accent); }

/* Consent checkbox sizing (replaces inline width/height/flex styles) */
.nt-consent-checkbox {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    flex-shrink: 0;
}

/* Legal disclaimer paragraph below the contact form */
.nt-form-footnote {
    font-size: 0.77rem;
    color: var(--nt-muted);
    font-style: italic;
}

/* Footer privacy-policy link */
.nt-footer-policy-link {
    color: inherit;
    text-decoration: underline;
}

/* Honeypot field — visually hidden but not display:none (some bots skip display:none) */
.nt-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .nt-card,
    .nt-platform-card,
    .nt-trust-item,
    .btn-nt-accent,
    .btn-nt-primary,
    .btn-nt-outline {
        transition: none;
    }
}

.notary-page *:focus-visible {
    outline: 3px solid var(--nt-accent);
    outline-offset: 2px;
    border-radius: 2px;
}
