:root {
    --bg: #f7f8f2;
    --surface: #ffffff;
    --surface-soft: #f3f8f4;
    --ink: #10211e;
    --muted: #4b6460;
    --brand: #0d6e6e;
    --brand-deep: #0a4f4f;
    --accent: #d3a53f;
    --line: #d5e4de;
    --line-strong: #bad3cc;
    --radius: 16px;
    --shadow: 0 18px 45px rgba(13, 56, 49, 0.12);
    --shadow-soft: 0 8px 24px rgba(14, 50, 45, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 11% -2%, #d6ebe7 0%, rgba(214, 235, 231, 0) 44%),
                radial-gradient(circle at 93% 24%, #f1e0b9 0%, rgba(241, 224, 185, 0) 41%),
                linear-gradient(145deg, rgba(13, 110, 110, 0.02), rgba(211, 165, 63, 0.05) 68%),
                var(--bg);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
    background-image: linear-gradient(rgba(16, 33, 30, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(16, 33, 30, 0.05) 1px, transparent 1px);
    background-size: 34px 34px;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(247, 248, 242, 0.74);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    overflow: visible;
}

.nav-wrap {
    width: min(1120px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1rem;
    overflow: visible;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: "Merriweather", Georgia, serif;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0;
    font-size: 0;
    line-height: 0;
    color: transparent;
    position: relative;
}

.brand::before {
    content: "";
    width: 220px;
    height: 56px;
    border-radius: 0;
    background: url("/regportal_logo.png") left center / contain no-repeat;
    box-shadow: none;
    flex-shrink: 0;
}

.brand::after {
    content: none;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.96rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: #deefea;
    color: var(--brand-deep);
    transform: translateY(-1px);
    outline: none;
}

.nav-links a.is-active {
    background: #cee4de;
    color: #103733;
    box-shadow: inset 0 0 0 1px #bdd8d1;
}

.nav-links .cta-link {
    background: linear-gradient(130deg, var(--brand) 0%, #1f8b8b 100%);
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(13, 110, 110, 0.2);
}

.nav-links .cta-link:hover,
.nav-links .cta-link:focus-visible {
    background: var(--brand-deep);
    color: #ffffff;
}

main {
    min-height: 70vh;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 5.3rem 0 3.6rem;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    pointer-events: none;
}

.hero::before {
    width: 320px;
    height: 320px;
    right: -50px;
    top: 20px;
    background: radial-gradient(circle, rgba(13, 110, 110, 0.34) 0%, rgba(13, 110, 110, 0) 70%);
    animation: floatA 9s ease-in-out infinite;
}

.hero::after {
    width: 250px;
    height: 250px;
    left: -70px;
    bottom: -60px;
    background: radial-gradient(circle, rgba(211, 165, 63, 0.29) 0%, rgba(211, 165, 63, 0) 72%);
    animation: floatB 11s ease-in-out infinite;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #b3cbc5;
    color: var(--brand-deep);
    background: #ecf5f2;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 5px 16px rgba(11, 45, 39, 0.08);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-family: "Merriweather", Georgia, serif;
    font-size: clamp(2rem, 4.6vw, 3.8rem);
    line-height: 1.12;
    margin: 0.9rem 0 1rem;
}

.hero p {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    font-size: 1.06rem;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    padding: 0.72rem 1.05rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(120deg, var(--brand) 0%, #1f8b8b 100%);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(13, 110, 110, 0.28);
}

.btn-secondary {
    border-color: #b3cbc5;
    background: #eff6f4;
    box-shadow: var(--shadow-soft);
}

.stats {
    list-style: none;
    margin: 1.4rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.stats li {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: var(--shadow-soft);
}

.stats strong {
    display: block;
    font-family: "Merriweather", Georgia, serif;
    font-size: 1.1rem;
}

.hero-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 245, 0.95) 100%);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.hero-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.experience-badge {
    width: 320px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-bottom: 1.2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.hero-card h2 {
    margin-top: 0;
    font-size: 1.1rem;
}

.hero-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-card li {
    position: relative;
    padding: 0.48rem 0 0.48rem 1.3rem;
    border-top: 1px solid #e4eeeb;
}

.hero-card li:first-child {
    border-top: 0;
}

.hero-card li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 1rem;
}

.section {
    padding: 3.3rem 0;
}

.section h2 {
    font-family: "Merriweather", Georgia, serif;
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.section-head {
    max-width: 66ch;
    margin-bottom: 1.5rem;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.grid-3,
.grid-2 {
    display: grid;
    gap: 1rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 0.1rem 0 0.5rem;
    font-size: 1.1rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.service-list li {
    background: #f9fcfb;
    border: 1px solid #dcebe7;
    border-left: 4px solid #b7d5ce;
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
    transition: transform 0.25s ease, border-left-color 0.25s ease, box-shadow 0.25s ease;
}

.service-list li:hover {
    transform: translateY(-2px);
    border-left-color: var(--brand);
    box-shadow: 0 12px 22px rgba(10, 56, 50, 0.1);
}

.service-list h3 {
    margin: 0;
    font-size: 1rem;
}

.service-list p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.cta-block {
    border-radius: 18px;
    background: linear-gradient(135deg, #0d6e6e 0%, #0a4f4f 62%, #083c3c 100%);
    color: #ffffff;
    padding: 1.4rem;
    box-shadow: 0 20px 40px rgba(7, 54, 49, 0.28);
}

.cta-block p {
    margin-top: 0;
    color: #dcefed;
}

.cta-block .btn-secondary {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--brand-deep);
}

.legal {
    background: linear-gradient(180deg, var(--surface) 0%, #f7fbf9 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.legal h1,
.legal h2 {
    font-family: "Merriweather", Georgia, serif;
}

.legal h1 {
    margin-top: 0;
}

.legal h2 {
    margin-top: 1.6rem;
    font-size: 1.2rem;
}

.legal p,
.legal li {
    color: var(--muted);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}

.form-card {
    background: linear-gradient(180deg, var(--surface) 0%, #f6fbf9 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem;
}

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

.form-field {
    display: grid;
    gap: 0.35rem;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 600;
    color: #203a36;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #c5dad3;
    border-radius: 10px;
    background: #ffffff;
    color: var(--ink);
    padding: 0.72rem 0.76rem;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #6ea79b;
    box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.12);
}

.form-note {
    margin: 0.5rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.price {
    margin: 0.2rem 0 0.55rem;
    font-family: "Merriweather", Georgia, serif;
    font-size: 1.5rem;
    color: #0c4b4b;
}

.price small {
    font-size: 0.8rem;
    color: var(--muted);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.chip {
    display: inline-flex;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    border: 1px solid #bfd7cf;
    background: #edf6f3;
    color: #264641;
}

.payfast-note {
    margin-top: 1rem;
    padding: 0.9rem;
    border-radius: 10px;
    border: 1px dashed #bdd7d0;
    background: #f5fbf9;
    color: #30544e;
    font-size: 0.92rem;
}

.pf-intake {
    margin: 0.85rem 0 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid #d3e4de;
    background: #f7fcfa;
}

.pf-intake h4 {
    margin: 0 0 0.55rem;
    font-size: 0.9rem;
    color: #23443f;
}

.pf-intake-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.pf-field {
    display: grid;
    gap: 0.25rem;
    font-size: 0.78rem;
    color: #365a54;
    font-weight: 600;
}

.pf-field.full {
    grid-column: 1 / -1;
}

.pf-field input {
    width: 100%;
    border: 1px solid #c9ddd6;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    padding: 0.55rem 0.62rem;
    font: inherit;
    font-size: 0.9rem;
}

.pf-field textarea {
    width: 100%;
    border: 1px solid #c9ddd6;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    padding: 0.75rem;
    font: inherit;
    font-size: 0.9rem;
    line-height: 1.5;
    resize: vertical;
    min-height: 110px;
}

.pf-field input:focus {
    outline: none;
    border-color: #6ea79b;
    box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.12);
}

.pf-field textarea:focus {
    outline: none;
    border-color: #6ea79b;
    box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.12);
}

.annual-fee-card {
    margin: 0 0 1rem;
    padding: 1rem;
    border: 1px solid #d3e4de;
    border-radius: 12px;
    background: #f8fcfb;
}

.annual-fee-card h4 {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    color: #23443f;
}

.annual-fee-card__intro {
    margin: 0 0 0.8rem;
    color: #54716a;
    font-size: 0.84rem;
    line-height: 1.55;
}

.annual-fee-table-wrap {
    overflow-x: auto;
}

.annual-fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.87rem;
}

.annual-fee-table th,
.annual-fee-table td {
    padding: 0.8rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid #dce8e4;
}

.annual-fee-table th {
    color: #23443f;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #edf7f4;
}

.annual-fee-table td:last-child,
.annual-fee-table th:last-child {
    text-align: right;
    white-space: nowrap;
}

.annual-turnover-note {
    margin: 0.65rem 0 0;
    color: #5a746e;
    font-size: 0.84rem;
    line-height: 1.55;
}

.annual-turnover-note + .annual-turnover-note {
    margin-top: 0.45rem;
}

#annualTurnoverHint.is-suggested {
    color: #1f6f57;
    font-weight: 600;
}

.annual-action-row {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.annual-action-row .btn {
    flex: 1 1 240px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.modal-overlay.hidden {
    display: none;
    opacity: 0;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    max-width: 440px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Checkout confirmation step inside modal */
.checkout-years-notice {
    margin: 0 0 1rem;
    color: #0a4f4f;
    font-size: 0.95rem;
}

.checkout-year-list {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.checkout-year-card {
    border: 1px solid #d6ece6;
    border-radius: 12px;
    padding: 0.85rem 0.9rem;
    background: #fbfffe;
}

.checkout-year-head {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: baseline;
    margin-bottom: 0.45rem;
}

.checkout-year-title {
    font-weight: 700;
    color: #10211e;
}

.checkout-year-date {
    font-size: 0.82rem;
    color: #5a746e;
}

.checkout-year-status {
    font-size: 0.82rem;
    color: #78350f;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
}

.checkout-year-status.is-clear {
    color: #166534;
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.checkout-year-band {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    color: #5a746e;
}

.checkout-fee-breakdown {
    margin: 1rem 0 0.5rem;
    border: 1px solid #a8e6d9;
    border-radius: 10px;
    overflow: hidden;
}

.checkout-fee-breakdown.hidden {
    display: none;
}

.checkout-fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.checkout-fee-table td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #d1f0e8;
    color: #10211e;
}

.checkout-fee-table td:last-child {
    text-align: right;
    white-space: nowrap;
    font-weight: 600;
}

.checkout-fee-table tr.cipc-row td {
    color: #5a746e;
    font-style: italic;
}

.checkout-fee-table tr.cipc-row td:last-child {
    font-weight: 400;
}

.checkout-fee-table tfoot td {
    background: #e8f9f5;
    border-bottom: none;
    font-size: 1rem;
}

.checkout-fee-note {
    font-size: 0.82rem;
    color: #5a746e;
    padding: 0.5rem 0.75rem;
    background: #f8fffe;
    margin: 0;
    border-top: 1px solid #d1f0e8;
}

.late-penalty-notice {
    margin: 0.75rem 0 0;
    padding: 0.75rem 1rem;
    background: #fff7ed;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #78350f;
}

.late-penalty-notice.hidden {
    display: none;
}

.modal-loading {
    text-align: center;
    padding: 2rem 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #0d6e6e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-loading h3 {
    margin: 0 0 0.5rem;
    color: #10211e;
    font-size: 1.15rem;
}

.modal-loading p {
    margin: 0;
    color: #5a746e;
    font-size: 0.95rem;
}

.modal-result {
    animation: slideIn 0.3s ease;
}

.modal-result h3 {
    margin: 0 0 1rem;
    color: #10211e;
    font-size: 1.15rem;
}

.modal-result.hidden,
.modal-loading.hidden,
.modal-error.hidden {
    display: none;
}

#resultContent {
    background: #e8f9f5;
    border: 1px solid #a8e6d9;
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    color: #0a4f4f;
}

#resultContent p {
    margin: 0 0 0.8rem;
}

#resultContent h4 {
    margin: 0 0 0.6rem;
    color: #0d6e6e;
    font-size: 1rem;
}

#resultContent ul {
    margin: 0;
    padding: 0 0 0 1.4rem;
}

#resultContent li {
    margin: 0.4rem 0;
}

.modal-error {
    animation: slideIn 0.3s ease;
}

.modal-error h3 {
    margin: 0 0 0.8rem;
    color: #b91c1c;
    font-size: 1.15rem;
}

.modal-error p {
    margin: 0 0 1.2rem;
    color: #7c2d2d;
    font-size: 0.95rem;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.modal-actions .btn {
    flex: 1;
    min-width: 120px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.chat-shell {
    background: linear-gradient(180deg, #ffffff 0%, #f4faf8 100%);
    border: 1px solid #cce0d9;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #d8e7e2;
    background: linear-gradient(125deg, #e9f4f0 0%, #f4f8f2 100%);
}

.agent-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #17b273;
    box-shadow: 0 0 0 5px rgba(23, 178, 115, 0.16);
}

.chat-log {
    height: min(54vh, 470px);
    overflow: auto;
    padding: 0.9rem;
    display: grid;
    gap: 0.6rem;
}

.bubble {
    max-width: 86%;
    padding: 0.64rem 0.72rem;
    border-radius: 12px;
    border: 1px solid #d4e4df;
    background: #ffffff;
}

.bubble.user {
    margin-left: auto;
    background: linear-gradient(130deg, #0f7777, #0a5a5a);
    border-color: #0f7676;
    color: #ffffff;
}

.bubble.agent {
    margin-right: auto;
    background: #f5fbf8;
}

.chat-entry {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
    padding: 0.85rem;
    border-top: 1px solid #d8e8e2;
}

.chat-entry input {
    width: 100%;
    border: 1px solid #c5dad3;
    border-radius: 10px;
    padding: 0.7rem 0.75rem;
    font: inherit;
}

.quick-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.8rem;
}

.quick-questions button {
    border: 1px solid #bfd7cf;
    background: #edf6f3;
    border-radius: 999px;
    padding: 0.32rem 0.65rem;
    cursor: pointer;
    color: #23423e;
}

.quick-questions button:hover {
    background: #dcede8;
}

.reggie-fab {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid #0f6f6f;
    background: linear-gradient(130deg, #0f7777 0%, #0a5d5d 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 0.55rem 0.85rem 0.55rem 0.6rem;
    box-shadow: 0 16px 30px rgba(5, 66, 66, 0.32);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    animation: reggiePulse 2.6s ease-in-out infinite;
}

.reggie-fab:hover,
.reggie-fab:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(5, 66, 66, 0.38);
    outline: none;
}

.reggie-fab__icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.36);
    font-weight: 700;
}

.reggie-fab__text {
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

.reggie-panel {
    position: fixed;
    right: 1rem;
    bottom: 5.2rem;
    z-index: 1199;
    width: min(390px, calc(100vw - 1.2rem));
    max-height: min(72vh, 560px);
    border: 1px solid #c8ddd7;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f3faf7 100%);
    box-shadow: 0 22px 45px rgba(9, 56, 56, 0.28);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.reggie-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.reggie-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid #d5e6e1;
    background: linear-gradient(130deg, #e9f5f2 0%, #f5f8f3 100%);
}

.reggie-close {
    border: 0;
    background: #e0f0eb;
    color: #1f3b37;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    cursor: pointer;
}

.reggie-panel__log {
    height: min(42vh, 320px);
    overflow: auto;
    display: grid;
    gap: 0.6rem;
    padding: 0.85rem;
}

.reggie-msg {
    max-width: 87%;
    padding: 0.6rem 0.72rem;
    border-radius: 12px;
    border: 1px solid #d5e4e0;
    font-size: 0.95rem;
}

.reggie-msg.user {
    margin-left: auto;
    color: #ffffff;
    border-color: #0f7777;
    background: linear-gradient(130deg, #0f7777, #0a5f5f);
}

.reggie-msg.agent {
    margin-right: auto;
    color: #18312d;
    background: #f4faf8;
}

.reggie-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0 0.85rem 0.72rem;
}

.reggie-quick button {
    border: 1px solid #bdd7d0;
    border-radius: 999px;
    padding: 0.3rem 0.58rem;
    background: #edf6f3;
    color: #24433e;
    cursor: pointer;
    font-size: 0.78rem;
}

.reggie-panel__entry {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    padding: 0.75rem;
    border-top: 1px solid #d7e7e2;
}

.reggie-panel__entry input {
    width: 100%;
    border: 1px solid #c8ddd6;
    border-radius: 10px;
    padding: 0.66rem 0.72rem;
    font: inherit;
}

.footer {
    margin-top: 3rem;
    border-top: 1px solid #d7e7e3;
    background: linear-gradient(180deg, #f0f7f5 0%, #eef4f2 100%);
}

.footer-grid {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 1.9rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.footer small {
    color: #4e6561;
}

.footer-credit {
    margin-top: 0.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid #d7e7e3;
    width: 100%;
}

.footer-credit a {
    color: #0b6666;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.footer-links a {
    color: #23423d;
    text-decoration: none;
    position: relative;
}

.footer-links a:hover {
    color: #0d5959;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 1px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    background: currentColor;
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

.reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes floatA {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes floatB {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(11px);
    }
}

@keyframes reggiePulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-1px) scale(1.02);
    }
}

/* ======= Company Registration Card ======================================= */

.card--reg {
    max-width: 100%;
}

.reg-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.reg-includes-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reg-includes-list li {
    font-size: 0.84rem;
    color: #2b6255;
    padding-left: 1.3rem;
    position: relative;
}

.reg-includes-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 700;
}

.reg-price-block {
    text-align: right;
    flex-shrink: 0;
}

.reg-price-note {
    margin: 0;
    font-size: 0.78rem;
    color: var(--muted);
}

.reg-section {
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: #f7fcfa;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.reg-section-title {
    margin: 0 0 0.7rem;
    font-size: 0.95rem;
    color: #1a3a35;
}

.reg-section-sub {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 400;
}

.reg-section-note {
    margin: -0.25rem 0 0.7rem;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}

.req-star {
    color: #c0392b;
    font-weight: 700;
}

.dir-count-row {
    margin-bottom: 0.9rem;
}

.dir-count-field {
    max-width: 380px;
}

.pf-field select {
    width: 100%;
    border: 1px solid #c9ddd6;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    min-height: 3.1rem;
    padding: 0.75rem 2.4rem 0.75rem 0.75rem;
    font: inherit;
    font-size: 0.9rem;
    line-height: 1.35;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%230d6e6e' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    cursor: pointer;
}

.pf-field select:focus {
    outline: none;
    border-color: #6ea79b;
    box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.12);
}

.dir-block {
    margin-top: 1rem;
    padding: 0.9rem;
    border: 1px solid #d3e4de;
    border-radius: 10px;
    background: #ffffff;
    animation: dir-fade-in 0.22s ease;
}

@keyframes dir-fade-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dir-block--hidden {
    display: none;
}

.dir-block-head {
    margin-bottom: 0.65rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #e4eeea;
    font-size: 0.9rem;
    color: var(--brand-deep);
}

.id-upload-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.id-upload-slot {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.id-upload-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #365a54;
}

.id-upload-btn {
    display: block;
    cursor: pointer;
}

.id-upload-btn input[type="file"] {
    display: none;
}

.id-upload-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 0.8rem;
    background: #eef7f4;
    border: 1.5px dashed #9ec8bc;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #2b6255;
    font-weight: 500;
    transition: background 0.15s, border-color 0.15s;
    text-align: center;
    white-space: nowrap;
}

.id-upload-btn span::before {
    content: "📎";
    font-size: 1rem;
}

.id-upload-btn:hover span,
.id-upload-btn:focus-within span {
    background: #dff0ea;
    border-color: var(--brand);
    color: var(--brand-deep);
}

.id-upload-status {
    font-size: 0.72rem;
    color: var(--muted);
    word-break: break-all;
    min-height: 1em;
}

.id-upload-status.has-file {
    color: #1a6a45;
    font-weight: 500;
}

.reg-submit-row {
    margin-top: 1.4rem;
    display: flex;
    justify-content: flex-end;
}

.shop-grid--2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

/* ── Package Selection Grid ─────────────────────────────────────────────── */

.pkg-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
    align-items: stretch;
}

.pkg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    min-height: 100%;
    background: #fff;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem 1.5rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    font-family: inherit;
    color: var(--ink);
    -webkit-appearance: none;
    appearance: none;
}

.pkg-card:hover {
    border-color: var(--brand);
    box-shadow: 0 6px 24px rgba(13, 110, 110, 0.12);
    transform: translateY(-2px);
}

.pkg-card--selected {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.18);
    background: #f3fbfb;
}

.pkg-card__check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s, transform 0.2s;
}

.pkg-card--selected .pkg-card__check {
    opacity: 1;
    transform: scale(1);
}

.pkg-card .kicker {
    margin-bottom: 0.4rem;
}

.pkg-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
}

.pkg-card p {
    font-size: 0.9rem;
    color: #4a6060;
    margin: 0 0 0.5rem;
}

.pkg-card .price {
    margin: 0.75rem 0 0.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
}

.pkg-card__note {
    font-size: 0.8rem !important;
    color: #7a9898 !important;
    margin: 0 0 0.75rem !important;
}

.pkg-cart-btn {
    margin-top: 0.7rem;
    border: 1px solid #a9d5ca;
    background: #f2faf7;
    color: #19544b;
    border-radius: 999px;
    padding: 0.38rem 0.78rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.pkg-cart-btn:hover {
    background: #ddf4ec;
    border-color: #0b6666;
    color: #0b6666;
}

.pkg-card__cta {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
}

.pkg-card--selected .pkg-card__cta {
    color: var(--brand-deep);
}

/* ── Form Area ───────────────────────────────────────────────────────────── */

.pkg-form-area {
    display: none;
    margin-top: 2.5rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--line);
    overflow: visible;
}

.floating-cart-btn {
    display: none;
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 1160;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6e6e 0%, #0b5a5a 100%);
    color: #ffffff;
    padding: 0.75rem 1rem;
    min-width: 220px;
    box-shadow: 0 14px 30px rgba(10, 79, 79, 0.35);
    cursor: pointer;
    text-align: left;
}

.floating-cart-btn.cart-has-items {
    display: block;
}

.floating-cart-btn__label {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.1;
}

.floating-cart-btn__meta {
    display: block;
    margin-top: 0.16rem;
    font-size: 0.78rem;
    opacity: 0.95;
}

.service-cart-box {
    position: fixed;
    right: 1rem;
    top: 4.9rem;
    z-index: 1161;
    width: min(560px, calc(100vw - 2rem));
    max-height: min(78vh, 760px);
    overflow: auto;
    border: 1px solid #c9e1da;
    border-radius: 14px;
    background: linear-gradient(135deg, #f6fcfa 0%, #eff7f4 100%);
    padding: 1rem;
    box-shadow: 0 22px 45px rgba(9, 56, 56, 0.24);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-cart-box.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.service-cart-head h3 {
    margin: 0;
}

.service-cart-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.6rem;
}

.service-cart-close {
    border: 1px solid #cde0db;
    background: #ffffff;
    color: #355955;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.service-cart-close:hover {
    border-color: #0b6666;
    color: #0b6666;
}

.service-cart-head p {
    margin: 0.35rem 0 0;
    color: #496560;
    font-size: 0.88rem;
}

.service-cart-actions {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-cart-list {
    list-style: none;
    margin: 0.9rem 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.service-cart-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    background: #ffffff;
    border: 1px solid #d9ebe6;
    border-radius: 10px;
    padding: 0.52rem 0.65rem;
}

.service-cart-empty {
    color: #617977;
    font-size: 0.88rem;
    justify-content: center !important;
}

.service-cart-item-meta {
    color: #4f6763;
    font-size: 0.82rem;
}

.service-cart-remove {
    border: 1px solid #d7e7e3;
    background: #fff;
    color: #516866;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

.service-cart-remove:hover {
    border-color: #0b6666;
    color: #0b6666;
}

.service-cart-total {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: #214743;
}

@media (max-width: 860px) {
    .service-cart-box {
        right: 0.5rem;
        left: 0.5rem;
        width: auto;
        top: 4.65rem;
        max-height: 72vh;
    }

    .floating-cart-btn {
        right: 0.5rem;
        left: 0.5rem;
        width: auto;
        min-width: 0;
    }
}

.pkg-form-area.is-open {
    display: block;
    animation: pkg-reveal 0.35s ease;
}

@keyframes pkg-reveal {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pkg-form-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.5rem;
    background: var(--brand);
    flex-wrap: wrap;
}

.pkg-form-bar__label {
    margin: 0;
    font-size: 0.9rem;
    color: #e8f5f5;
}

.pkg-form-bar__label strong {
    color: #fff;
}

.pkg-change-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}

.pkg-change-btn:hover {
    background: rgba(255,255,255,0.28);
}

.pkg-form-panel {
    display: none;
    padding: 2rem 2rem 2.5rem;
    background: #fff;
}

.pkg-form-panel.is-active {
    display: block;
}

.pkg-form-panel__head {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
}

.pkg-form-panel__head h3 {
    margin: 0 0 0.4rem;
}

.pkg-form-panel__head p {
    margin: 0.25rem 0 0;
    color: #4a6060;
    font-size: 0.9rem;
}

.pkg-form-panel__head .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0.5rem 0 0.25rem;
}

.membership-alert {
    margin: 0 0 0.9rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid #b8d7cd;
    border-left: 4px solid var(--brand);
    border-radius: 10px;
    background: linear-gradient(100deg, #eef8f4 0%, #f8fcfb 100%);
    color: #244740;
    font-size: 0.88rem;
    line-height: 1.5;
    box-shadow: 0 0 0 rgba(13, 110, 110, 0);
    animation: membership-pulse 2.8s ease-in-out infinite;
}

.membership-value-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.membership-value-item {
    margin: 0;
    padding: 0.62rem 0.7rem;
    border: 1px solid #d3e5df;
    border-radius: 10px;
    background: #ffffff;
    line-height: 1.5;
}

.membership-renew-note {
    margin: 0.85rem 0 0;
    color: #4f6662;
    font-size: 0.84rem;
}

@keyframes membership-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 110, 0);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(13, 110, 110, 0.08);
    }
}

/* ======================================================================== */

@media (max-width: 960px) {
    .hero-grid,
    .grid-3,
    .grid-2,
    .contact-layout,
    .shop-grid,
    .shop-grid--2 {
        grid-template-columns: 1fr;
    }

    .pkg-select-grid {
        grid-template-columns: 1fr;
    }

    .membership-value-list {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        right: 4vw;
        left: 4vw;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.65rem;
        border-radius: 14px;
        border: 1px solid #d7e7e3;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: var(--shadow);
    }

    .site-header.menu-open .nav-links {
        display: flex;
    }

    .site-header.menu-open .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.menu-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-top: 4.2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .reggie-fab {
        right: 0.7rem;
        bottom: 0.8rem;
        padding-right: 0.75rem;
    }

    .reggie-panel {
        right: 0.6rem;
        bottom: 4.7rem;
        width: calc(100vw - 1.2rem);
    }

    .reggie-fab__text {
        display: none;
    }

    .pf-intake-grid {
        grid-template-columns: 1fr;
    }

    .id-upload-row {
        grid-template-columns: 1fr;
    }

    .reg-card-head {
        flex-direction: column;
    }

    .reg-price-block {
        text-align: left;
    }

    .id-upload-btn span {
        white-space: normal;
    }
}

/* ── Google Places Autocomplete reset ────────────────────────── */
.pac-container {
    font-family: "Space Grotesk", "Segoe UI", sans-serif !important;
    background: #ffffff !important;
    border: 1px solid #cce0d9 !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 20px rgba(13, 110, 110, 0.14) !important;
    margin-top: 2px !important;
    z-index: 99999 !important;
    overflow: visible !important;
    padding: 0 !important;
}
.pac-container:after {
    background-image: none !important;
    height: 2px !important;
    padding: 0 !important;
}
.pac-item {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 9px 14px !important;
    font-size: 0.9rem !important;
    color: #10211e !important;
    background: transparent !important;
    cursor: pointer !important;
    border-top: 1px solid #e8f0ec !important;
    line-height: 1.5 !important;
    min-height: unset !important;
    height: auto !important;
    border-radius: 0 !important;
    width: auto !important;
    white-space: normal !important;
}
.pac-item::before,
.pac-item::after {
    display: none !important;
}
.pac-item * {
    display: inline !important;
}
.pac-item > * {
    margin: 0 !important;
    padding: 0 !important;
}
.pac-item img,
.pac-item svg,
.pac-icon,
.pac-icon-marker {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}
.pac-item:first-child {
    border-top: none !important;
}
.pac-item:hover,
.pac-item-selected {
    background-color: #e9f4f0 !important;
}
.pac-item-query {
    color: #0d6e6e !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    padding-right: 4px !important;
    margin-right: 0 !important;
}
.pac-matched {
    font-weight: 700 !important;
}
/* ── End Google Places reset ─────────────────────────────────── */

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