:root {
    --green-deep:   #0d2b1a;
    --green-rich:   #1a4d2e;
    --green-mid:    #2d7a4f;
    --green-bright: #3eb575;
    --green-light:  #a8e6c1;
    --cream:        #f5f2eb;
    --cream-dark:   #e8e3d8;
    --earth:        #8b6f47;
    --text-dark:    #111a13;
    --text-mid:     #3d4f43;
    --text-muted:   #7a8c7f;
    --white:        #ffffff;
    --card-radius:  18px;
    --nav-h:        68px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --shadow-card:  0 2px 24px rgba(13,43,26,0.10);
    --shadow-hover: 0 12px 40px rgba(13,43,26,0.18);
    --transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.sw-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(13, 43, 26, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sw-nav .container {
    height: 100%;
    max-width: 1240px;
}

.sw-brand {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.sw-brand-icon {
    width: 34px;
    height: 34px;
    background: var(--green-bright);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--green-deep);
}

.sw-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.sw-nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 7px 14px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.sw-nav-links a:hover,
.sw-nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.09);
}

.sw-nav-cta {
    background: var(--green-bright) !important;
    color: var(--green-deep) !important;
    font-weight: 500 !important;
    padding: 7px 18px !important;
}

.sw-nav-cta:hover {
    background: var(--green-light) !important;
}

.sw-nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* ── HERO ── */
.sw-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--green-deep);
    overflow: hidden;
}

.sw-hero.has-bg-image {
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
}

.sw-hero.has-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13,43,26,0.72);
}

.sw-hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px;
    opacity: 0.5;
    pointer-events: none;
}

.sw-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.sw-hero-blob--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(62,181,117,0.25), transparent 70%);
    top: -120px;
    right: -100px;
}

.sw-hero-blob--2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(45,122,79,0.3), transparent 70%);
    bottom: -80px;
    left: 5%;
}

.sw-hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 100px;
    max-width: 760px;
}

.sw-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 20px;
}

.sw-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-bright);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.sw-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.sw-hero-title em {
    font-style: italic;
    color: var(--green-bright);
}

.sw-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}

/* ── SEARCH BAR ── */
.sw-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    backdrop-filter: blur(16px);
    border-radius: 60px;
    padding: 6px 6px 6px 22px;
    gap: 12px;
    max-width: 580px;
    margin-bottom: 28px;
    transition: border-color var(--transition), background var(--transition);
}

.sw-search-bar:focus-within {
    border-color: var(--green-bright);
    background: rgba(255,255,255,0.15);
}

.sw-search-icon {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    flex-shrink: 0;
}

.sw-search-bar input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    min-width: 0;
}

.sw-search-bar input::placeholder {
    color: rgba(255,255,255,0.45);
}

.sw-search-bar button {
    background: var(--green-bright);
    color: var(--green-deep);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}

.sw-search-bar button:hover {
    background: var(--green-light);
    transform: scale(1.03);
}

.sw-hero-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sw-hero-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.sw-hero-links a:hover {
    color: var(--green-light);
}

.sw-hero-links a i {
    font-size: 0.95rem;
}

.sw-hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: opacity 0.4s;
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

/* ── STAT STRIP ── */
.sw-stat-strip {
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    padding: 20px 0;
}

.sw-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.sw-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 40px;
}

.sw-stat strong {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--green-rich);
    line-height: 1;
}

.sw-stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.sw-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--cream-dark);
}

/* ── SECTION COMMON ── */
.sw-section {
    padding: 80px 0;
}

.sw-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sw-section-head.centered {
    justify-content: center;
    text-align: center;
}

.sw-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 6px;
}

.sw-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.sw-link-arrow {
    color: var(--green-mid);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    padding-bottom: 4px;
    transition: color var(--transition), gap var(--transition);
}

.sw-link-arrow:hover {
    color: var(--green-rich);
    gap: 10px;
}

/* ── CATEGORY CARDS ── */
.sw-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sw-cat-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.sw-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    color: var(--text-dark);
}

.sw-cat-img {
    height: 170px;
    background-size: cover;
    background-position: center;
    background-color: var(--cream-dark);
    position: relative;
}

.sw-cat-img--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--green-mid);
    background: linear-gradient(135deg, #e8f5ee, #d0eddb);
}

/* Type-based accent left border */
.sw-cat-card--recyclable { border-top: 3px solid #2d7a4f; }
.sw-cat-card--domestic   { border-top: 3px solid #c8860a; }
.sw-cat-card--bulky      { border-top: 3px solid #6b6b9b; }

.sw-cat-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sw-cat-type {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 30px;
    margin-bottom: 10px;
    background: #e6f4ec;
    color: var(--green-rich);
}

.sw-cat-card--domestic .sw-cat-type {
    background: #fdf1dc;
    color: #8a5c00;
}

.sw-cat-card--bulky .sw-cat-type {
    background: #ebebf7;
    color: #4a4a80;
}

.sw-cat-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.sw-cat-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

.sw-cat-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green-mid);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap var(--transition), color var(--transition);
}

.sw-cat-card:hover .sw-cat-cta {
    gap: 10px;
    color: var(--green-rich);
}

/* ── HOW IT WORKS ── */
.sw-how {
    background: var(--green-deep);
    padding: 80px 0;
}

.sw-how .sw-label { color: var(--green-light); }
.sw-how .sw-heading { color: var(--white); }

.sw-steps {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
}

.sw-step {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--card-radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: background var(--transition), transform var(--transition);
}

.sw-step:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
}

.sw-step-num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
}

.sw-step-icon {
    font-size: 2rem;
    color: var(--green-bright);
    display: block;
    margin-bottom: 16px;
}

.sw-step h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.sw-step p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 0;
}

.sw-step-arrow {
    color: rgba(255,255,255,0.2);
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ── QUICK LINKS ── */
.sw-quicklinks {
    background: var(--white);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.sw-quicklinks .container {
    display: flex;
    flex-direction: column;
}

.sw-ql {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--cream-dark);
    text-decoration: none;
    color: var(--text-dark);
    transition: background var(--transition);
}

.sw-ql:last-child { border-bottom: none; }

.sw-ql > i:first-child {
    font-size: 1.5rem;
    color: var(--green-mid);
    width: 44px;
    height: 44px;
    background: #e6f4ec;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sw-ql div {
    flex: 1;
}

.sw-ql strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.sw-ql span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.sw-ql-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    transition: transform var(--transition), color var(--transition);
}

.sw-ql:hover .sw-ql-arrow {
    transform: translateX(4px);
    color: var(--green-mid);
}

/* ── FOOTER ── */
.sw-footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 40px 20px;
    margin-top: auto;
}

.sw-footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sw-footer-sub {
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.sw-footer-credit {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

/* ══════════════════════════════════════
   INNER PAGES
   ══════════════════════════════════════ */

/* ── PAGE HEADER (shared across inner pages) ── */
.sw-page-header {
    position: relative;
    background: var(--green-deep);
    overflow: hidden;
    padding: 72px 0 56px;
}

.sw-page-header-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

.sw-page-header-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.sw-breadcrumb-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color var(--transition);
}
.sw-breadcrumb-back:hover { color: var(--green-light); }

.sw-page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sw-page-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

/* ── FILTER BAR (categories) ── */
.sw-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    padding: 14px 0;
    position: sticky;
    top: var(--nav-h);
    z-index: 100;
}

.sw-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sw-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-mid);
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    transition: all var(--transition);
}

.sw-filter-btn:hover,
.sw-filter-btn.active {
    background: var(--green-deep);
    color: var(--white);
    border-color: var(--green-deep);
}

.sw-filter-btn--recyclable.active { background: #1a4d2e; border-color: #1a4d2e; }
.sw-filter-btn--domestic.active   { background: #7a4500; border-color: #7a4500; }
.sw-filter-btn--bulky.active      { background: #3a3a70; border-color: #3a3a70; }

/* ── GUIDES ── */
.sw-guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sw-guide-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--green-mid);
}

.sw-guide-card--domestic { border-top-color: #c8860a; }
.sw-guide-card--bulky    { border-top-color: #6b6b9b; }
.sw-guide-card--default  { border-top-color: var(--green-mid); }

.sw-guide-header {
    padding: 24px 24px 20px;
}

.sw-guide-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 8px 0 8px;
    color: var(--text-dark);
    line-height: 1.3;
}

.sw-guide-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.sw-guide-steps {
    padding: 20px 24px 24px;
    background: #f9faf8;
    border-top: 1px solid var(--cream-dark);
    flex: 1;
}

.sw-guide-steps-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sw-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sw-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.55;
}

.sw-step-n {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--green-mid);
    color: white;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.sw-guide-card--domestic .sw-step-n { background: #c8860a; }
.sw-guide-card--bulky .sw-step-n    { background: #6b6b9b; }

/* ── LOCATIONS ── */
.sw-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sw-loc-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 4px solid var(--green-mid);
    transition: transform var(--transition), box-shadow var(--transition);
}

.sw-loc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.sw-loc-card--recycling_center { border-left-color: var(--green-mid); }
.sw-loc-card--disposal_site    { border-left-color: #c8860a; }
.sw-loc-card--drop_off         { border-left-color: #6b6b9b; }

.sw-loc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #e6f4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--green-mid);
    flex-shrink: 0;
}

.sw-loc-card--disposal_site .sw-loc-icon-wrap  { background: #fdf1dc; color: #c8860a; }
.sw-loc-card--drop_off .sw-loc-icon-wrap       { background: #ebebf7; color: #6b6b9b; }

.sw-loc-body { flex: 1; min-width: 0; }

.sw-loc-type {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 30px;
    background: #e6f4ec;
    color: var(--green-rich);
    margin-bottom: 8px;
}

.sw-loc-card--disposal_site .sw-loc-type { background: #fdf1dc; color: #8a5c00; }
.sw-loc-card--drop_off .sw-loc-type      { background: #ebebf7; color: #4a4a80; }

.sw-loc-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.sw-loc-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sw-loc-meta li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.sw-loc-meta i {
    color: var(--green-mid);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.sw-loc-meta a {
    color: var(--green-mid);
    text-decoration: none;
}

.sw-loc-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid var(--green-mid);
    border-radius: 30px;
    transition: all var(--transition);
}

.sw-loc-map-btn:hover {
    background: var(--green-mid);
    color: white;
}

/* ── SEARCH PAGE ── */
.sw-search-hero {
    position: relative;
    background: var(--green-deep);
    overflow: hidden;
    padding: 72px 0 64px;
}

.sw-search-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.sw-search-bar--page {
    margin: 28px auto 0;
    max-width: 600px;
}

.sw-search-suggestions {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sw-search-suggestions span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.sw-search-suggestions a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 3px 10px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    transition: all var(--transition);
}

.sw-search-suggestions a:hover {
    color: white;
    border-color: var(--green-bright);
}

.sw-results-meta { margin-bottom: 36px; }

.sw-results-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
}

.sw-results-title span {
    color: var(--green-mid);
}

.sw-results-title em {
    font-style: italic;
    color: var(--text-mid);
}

.sw-results-group { margin-bottom: 52px; }

.sw-results-group-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cream-dark);
}

/* ── SEARCH IDLE STATE ── */
.sw-search-idle {
    text-align: center;
    padding: 20px 0 40px;
}

.sw-idle-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sw-idle-tip {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 16px;
    padding: 24px 28px;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.sw-idle-tip:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.sw-idle-tip i {
    font-size: 1.8rem;
    color: var(--green-mid);
}

.sw-idle-tip strong {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.sw-idle-tip span {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

.sw-idle-hint {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.sw-idle-hint a {
    color: var(--green-mid);
    text-decoration: none;
    font-weight: 500;
}

/* ── EMPTY STATE ── */
.sw-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--card-radius);
    border: 1px dashed var(--cream-dark);
}

.sw-empty-state > i {
    font-size: 3rem;
    color: var(--green-light);
    display: block;
    margin-bottom: 16px;
}

.sw-empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sw-empty-state p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto 24px;
}

.sw-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-mid);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.sw-empty-btn:hover { background: var(--green-rich); color: white; }

/* ── CATEGORY DETAIL HEADER ── */
.sw-detail-header {
    position: relative;
    background: var(--green-deep);
    overflow: hidden;
    padding: 72px 0 56px;
    display: flex;
    align-items: center;
}

.sw-detail-header--domestic { background: #3d2200; }
.sw-detail-header--bulky    { background: #1a1a35; }

.sw-detail-header-inner {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

.sw-detail-header-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 38%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.sw-detail-header-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--green-deep) 0%, transparent 100%);
    z-index: 2;
}

.sw-detail-header--domestic .sw-detail-header-img::before {
    background: linear-gradient(to right, #3d2200 0%, transparent 100%);
}

.sw-detail-header--bulky .sw-detail-header-img::before {
    background: linear-gradient(to right, #1a1a35 0%, transparent 100%);
}

.sw-detail-header-icon {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: rgba(255,255,255,0.06);
    z-index: 1;
    pointer-events: none;
}

/* ── RESPONSIVE INNER PAGES ── */
@media (max-width: 992px) {
    .sw-guides-grid   { grid-template-columns: 1fr; }
    .sw-locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sw-page-header  { padding: 52px 0 40px; }
    .sw-page-title   { font-size: 2rem; }
    .sw-detail-header-img { display: none; }
    .sw-detail-header-icon { display: none; }
    .sw-loc-card { flex-direction: column; gap: 14px; }
    .sw-idle-grid { flex-direction: column; align-items: center; }
    .sw-idle-tip { width: 100%; max-width: 280px; }
}

/* ── LEGACY BOOTSTRAP PAGE SUPPORT ── */
/* These ensure other pages (categories.php, guides.php, etc.)
   still look consistent with Bootstrap base until redesigned */
.navbar.bg-success {
    background-color: var(--green-deep) !important;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.3px;
}

.btn-success {
    background-color: var(--green-mid) !important;
    border-color: var(--green-mid) !important;
}

.btn-success:hover {
    background-color: var(--green-rich) !important;
    border-color: var(--green-rich) !important;
}

.card {
    border-radius: var(--card-radius) !important;
    border: none !important;
    box-shadow: var(--shadow-card) !important;
}

.category-card { transition: transform var(--transition), box-shadow var(--transition); }
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover) !important;
}

.category-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.category-detail-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer.bg-dark {
    background: var(--green-deep) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .sw-category-grid { grid-template-columns: repeat(2, 1fr); }
    .sw-steps { flex-direction: column; }
    .sw-step-arrow { transform: rotate(90deg); }
}

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

    .sw-nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--green-deep);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .sw-nav-links.open { display: flex; }
    .sw-nav-links li { width: 100%; }
    .sw-nav-links a { display: block; padding: 10px 14px; }

    .sw-hero { min-height: 100svh; }
    .sw-hero-inner { padding: 60px 0 80px; }
    .sw-hero-title { font-size: 2.8rem; }

    .sw-search-bar { flex-wrap: wrap; border-radius: 16px; padding: 12px; }
    .sw-search-bar input { width: 100%; }
    .sw-search-bar button { width: 100%; border-radius: 10px; }

    .sw-stat { padding: 8px 20px; }
    .sw-stat strong { font-size: 1.5rem; }
    .sw-stat-divider { height: 24px; }

    .sw-section-head { flex-direction: column; align-items: flex-start; gap: 12px; }

    .sw-category-grid { grid-template-columns: 1fr; }

    .sw-steps { gap: 12px; }
    .sw-step-arrow { display: none; }

    .category-img { height: 140px; }
    .category-detail-img { height: 160px; }
    .table-responsive { overflow-x: auto; }
}