:root {
    --ss-green: #5A8348;
    --ss-green-2: #98C45B;
    --ss-dark: #0b1220;
    --ss-dark-2: #0f2a3a;
    --ss-card: #ffffff;
}

/* 1) Remove mobile long-press/tap blue highlight */
.btn,
button,
input,
textarea,
select,
a {
    -webkit-tap-highlight-color: transparent;
}

/* 2) Remove Bootstrap focus glow (blue box-shadow) */
.btn:focus,
.btn:active,
.btn:focus-visible,
button:focus,
button:active,
button:focus-visible,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Reduce placeholder font size */
::placeholder {
    font-size: 16px;
    /* tweak as needed */
    color: #6c757d;
    /* optional: softer gray */
}

/* Safari / older browsers support */
::-webkit-input-placeholder {
    font-size: 16px;
}

:-ms-input-placeholder {
    font-size: 16px;
}

.form-control:focus {
    border-color: #4e743e;
    /* your green */
    box-shadow: none;
    /* remove blue glow */
}

/* 3) Optional: give a branded (green) focus instead of none (recommended) */
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
textarea:focus-visible,
input:focus-visible {
    outline: 2px solid #4e743e;
    outline-offset: 2px;
}

.btn-primary:active,
.btn-primary.active {
    background-color: #4e743e !important;
    border-color: #4e743e !important;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Anchor navigation offset (fixes sticky navbar covering section headings) */
html {
    scroll-behavior: smooth;
}

section[id],
header[id],
#cta {
    scroll-margin-top: 90px;
}

/* Top bar */
.topbar {
    background: linear-gradient(90deg, var(--ss-dark), #132a3a);
}

/* Mobile navbar menu */
.navbar-collapse {
    padding: 1.25rem 1rem;
}

.navbar-nav {
    gap: 0.50rem;
}

.navbar-nav .nav-link {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 17px;
}

.badge-glow {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    backdrop-filter: blur(10px);
}

/* Navbar glass */
.nav-glass {
    background: white;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav-link {
    color: #0b1220;
}

.nav-link:hover {
    color: #0b1220 !important;
}

/* Hero banner */
.hero {
    background:
        linear-gradient(180deg, rgba(9, 53, 2, 0.78), rgba(14, 21, 13, 0.92)),
        url("assets/Banner.png");
    background-size: cover;
    background-position: center;
}


/* Brand text */
.brand-text {
    letter-spacing: .2px;
}

/* Buttons */
.btn-primary {
    background: var(--ss-green);
    border-color: var(--ss-green);
}

.btn-primary:hover {
    background: #4e743e;
    border-color: #4e743e;
}

.btn {
    color: var(--bs-btn-hover-color);

}

.btn-glow {
    box-shadow: 0 12px 30px rgba(90, 131, 72, .25);
}

.btn-outline-light-cta {
    color: white;
    border-color: var(--ss-green);
}

.btn-outline-light-cta:hover {
    background-color: white;
    color: var(--ss-green);
    border-color: var(--ss-green);
}

.navbar-toggler-icon {
    color: #4e743e;
}

.btn-outline-success {
    color: #4e743e;
}

.eyebrow {
    display: inline-block;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    font-size: .9rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    font-size: .92rem;
}

/* Cards */
.hero-card {
    border-radius: 1.25rem;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .35);
}

.soft-card {
    border-radius: 1.25rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, .08);
    border: 1px solid rgba(15, 23, 42, .06);
}

.icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(152, 196, 91, .18);
    color: var(--ss-green);
    flex: 0 0 auto;
}

.price-tag {
    font-weight: 700;
    color: var(--ss-green);
    background: rgba(152, 196, 91, .15);
    border: 1px solid rgba(152, 196, 91, .25);
    padding: .25rem .55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.stars {
    letter-spacing: 1px;
}

.tiny {
    font-size: .85rem;
}

.soft-accordion .accordion-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    margin-bottom: 10px;
}

.soft-accordion .accordion-button {
    font-weight: 600;
}

/* Mobile improvements */
@media (max-width: 576px) {
    .hero {
        background-position: 30% center;
    }

    .display-5 {
        font-size: 2rem;
    }

    section[id],
    header[id],
    #cta {
        scroll-margin-top: 110px;
    }
}


.accordion-button:not(.collapsed) {
    background-color: #4e743e;
    color: #fff;
}

/* Change accordion icon color when open */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Remove blue tap highlight (mobile) */
.accordion-button {
    -webkit-tap-highlight-color: transparent;
}

/* Remove focus & active blue styles */
.accordion-button:focus,
.accordion-button:active {
    box-shadow: none;
    outline: none;
}

/* Also handle expanded state */
.accordion-button:not(.collapsed):focus {
    box-shadow: none;
}


.social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(90, 131, 72, 0.08);
    /* brand green tint */
    color: #5A8348;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.social-link:hover {
    background: #5A8348;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Loyalty modal polish */
.modal-content {
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 10px 40px rgba(15, 23, 42, .10);
}

.modal-header {
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.modal-footer {
    border-top: 1px solid rgba(15, 23, 42, .08);
}