/**
 * Municipal Widgets for Elementor
 * Styles for all 8 widgets
 */

/* ==========================================================================
   1. ALERT/NOTICE BOXES
   ========================================================================== */
.mw-alert {
    position: relative;
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 4px solid;
    margin-bottom: 20px;
}

.mw-alert-emergency {
    background-color: #fef2f2;
    border-color: #dc2626;
    color: #991b1b;
}

.mw-alert-warning {
    background-color: #fffbeb;
    border-color: #f59e0b;
    color: #92400e;
}

.mw-alert-closure {
    background-color: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

.mw-alert-info {
    background-color: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}

.mw-alert-success {
    background-color: #f0fdf4;
    border-color: #22c55e;
    color: #166534;
}

.mw-alert-meeting {
    background-color: #faf5ff;
    border-color: #a855f7;
    color: #6b21a8;
}

.mw-alert-weather {
    background-color: #ecfeff;
    border-color: #06b6d4;
    color: #155e75;
}

.mw-alert-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mw-alert-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.mw-alert-body {
    flex: 1;
}

.mw-alert-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.mw-alert-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.mw-alert-message {
    margin: 0;
    line-height: 1.6;
}

.mw-alert-message p:last-child {
    margin-bottom: 0;
}

.mw-alert-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
}

.mw-alert-link:hover {
    text-decoration: underline;
}

.mw-alert-dismiss {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    padding: 5px;
    color: inherit;
}

.mw-alert-dismiss:hover {
    opacity: 1;
}

/* ==========================================================================
   2. STAFF DIRECTORY
   ========================================================================== */
.mw-staff-search {
    position: relative;
    margin-bottom: 20px;
}

.mw-staff-search-input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mw-staff-search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mw-staff-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.mw-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mw-staff-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mw-staff-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw-staff-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mw-staff-layout-grid .mw-staff-card {
    text-align: center;
}

.mw-staff-layout-list .mw-staff-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mw-staff-layout-compact .mw-staff-card {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 20px;
}

.mw-staff-photo {
    width: 100px;
    height: 100px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0 auto 15px;
}

.mw-staff-layout-list .mw-staff-photo,
.mw-staff-layout-compact .mw-staff-photo {
    margin: 0;
}

.mw-staff-layout-compact .mw-staff-photo {
    width: 50px;
    height: 50px;
}

.mw-staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-staff-info {
    flex: 1;
}

.mw-staff-name {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.mw-staff-title {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 5px;
}

.mw-staff-department {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 12px;
}

.mw-staff-contact {
    font-size: 14px;
    color: #475569;
}

.mw-staff-contact > div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.mw-staff-contact i {
    width: 16px;
    color: #94a3b8;
}

.mw-staff-contact a {
    color: #3b82f6;
    text-decoration: none;
}

.mw-staff-contact a:hover {
    text-decoration: underline;
}

.mw-staff-bio {
    margin-top: 12px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* ==========================================================================
   3. ANIMATED COUNTERS
   ========================================================================== */
.mw-counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mw-counter-item {
    text-align: center;
}

.mw-counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e0e7ff;
    color: #2563eb;
}

.mw-counter-icon i,
.mw-counter-icon svg {
    font-size: 32px;
    width: 32px;
    height: 32px;
}

.mw-counter-number {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin: 10px 0;
}

.mw-counter-title {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.mw-counter-description {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 5px;
}

/* ==========================================================================
   4. MEETING COUNTDOWN
   ========================================================================== */
.mw-countdown-container {
    background: #1e40af;
    color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.mw-countdown-header {
    margin-bottom: 25px;
}

.mw-countdown-horizontal .mw-countdown-header {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.mw-countdown-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.mw-countdown-horizontal .mw-countdown-icon {
    margin-bottom: 0;
}

.mw-countdown-info {
    flex: 1;
}

.mw-countdown-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.mw-countdown-location,
.mw-countdown-datetime {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
    justify-content: center;
}

.mw-countdown-horizontal .mw-countdown-location,
.mw-countdown-horizontal .mw-countdown-datetime {
    justify-content: flex-start;
}

.mw-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.mw-countdown-unit {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 80px;
}

.mw-countdown-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.mw-countdown-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 5px;
}

.mw-countdown-action {
    margin-top: 20px;
}

.mw-countdown-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #1e40af;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw-countdown-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.mw-countdown-expired {
    font-size: 18px;
    padding: 20px;
    opacity: 0.9;
}

/* ==========================================================================
   5. HOURS OF OPERATION
   ========================================================================== */
.mw-hours-container {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mw-hours-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mw-hours-icon {
    font-size: 24px;
    color: #3b82f6;
}

.mw-hours-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
}

.mw-hours-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.mw-hours-status.is-open {
    background-color: #16a34a;
}

.mw-hours-status.is-closed {
    background-color: #dc2626;
}

.mw-hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mw-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.mw-hours-row:hover {
    background-color: #f8fafc;
}

.mw-hours-row.is-today {
    background-color: #eff6ff;
    border-left: 3px solid #3b82f6;
}

.mw-hours-row.is-closed .mw-hours-time {
    color: #dc2626;
}

.mw-hours-day {
    font-weight: 500;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mw-hours-today-badge {
    background: #3b82f6;
    color: #ffffff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mw-hours-time {
    color: #6b7280;
}

.mw-hours-note {
    font-size: 12px;
    color: #94a3b8;
    margin-left: 5px;
}

/* Compact layout */
.mw-hours-compact .mw-hours-row {
    padding: 8px 12px;
}

/* ==========================================================================
   6. DEPARTMENT CONTACT CARDS
   ========================================================================== */
.mw-dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mw-dept-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw-dept-style-elevated .mw-dept-card {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.mw-dept-style-elevated .mw-dept-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -5px rgba(0,0,0,0.04);
}

.mw-dept-style-bordered .mw-dept-card {
    border: 1px solid #e2e8f0;
}

.mw-dept-style-bordered .mw-dept-card:hover {
    border-color: #cbd5e1;
}

.mw-dept-icon-top .mw-dept-icon {
    margin-bottom: 20px;
}

.mw-dept-icon-left {
    display: flex;
    gap: 20px;
}

.mw-dept-icon-left .mw-dept-icon {
    flex-shrink: 0;
}

.mw-dept-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.mw-dept-icon i,
.mw-dept-icon svg {
    font-size: 32px;
}

.mw-dept-icon-inline {
    margin-right: 10px;
}

.mw-dept-content {
    flex: 1;
}

.mw-dept-name {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.mw-dept-description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.mw-dept-contact {
    font-size: 14px;
    color: #475569;
}

.mw-dept-contact > div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.mw-dept-contact i {
    width: 16px;
    color: #94a3b8;
    flex-shrink: 0;
}

.mw-dept-contact a {
    color: #3b82f6;
    text-decoration: none;
}

.mw-dept-contact a:hover {
    text-decoration: underline;
}

.mw-dept-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.mw-dept-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   7. DOCUMENT LIST
   ========================================================================== */
.mw-docs-container {
    padding: 0;
}

.mw-docs-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
}

.mw-docs-description {
    color: #64748b;
    margin: 0 0 20px 0;
}

.mw-docs-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mw-docs-search {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.mw-docs-search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
}

.mw-docs-search-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.mw-docs-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.mw-docs-category-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mw-docs-filter-btn {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.mw-docs-filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.mw-docs-filter-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

.mw-docs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mw-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mw-doc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.mw-doc-item:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.mw-doc-item.hidden {
    display: none;
}

.mw-doc-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.mw-doc-content {
    flex: 1;
    min-width: 0;
}

.mw-doc-title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.mw-doc-description {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #64748b;
}

.mw-doc-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #94a3b8;
    flex-wrap: wrap;
}

.mw-doc-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mw-doc-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.mw-doc-download:hover {
    background: #1d4ed8;
    color: #ffffff;
}

/* Compact layout */
.mw-docs-layout-compact .mw-doc-item {
    padding: 10px 15px;
}

.mw-docs-layout-compact .mw-doc-icon {
    font-size: 24px;
}

.mw-docs-layout-compact .mw-doc-title {
    font-size: 14px;
}

/* ==========================================================================
   8. EVENT CARDS
   ========================================================================== */
.mw-events-container {
    padding: 0;
}

.mw-events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mw-events-section-title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
}

.mw-events-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.mw-events-view-all:hover {
    text-decoration: underline;
}

.mw-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mw-events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mw-event-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mw-event-card.is-featured {
    border: 2px solid #f59e0b;
}

.mw-event-image {
    height: 150px;
    overflow: hidden;
}

.mw-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-event-content {
    padding: 20px;
    display: flex;
    gap: 15px;
}

.mw-event-date-badge {
    background: #2563eb;
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
    min-width: 55px;
}

.mw-event-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.mw-event-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.mw-event-info {
    flex: 1;
    min-width: 0;
}

.mw-event-category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.mw-event-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fef3c7;
    color: #d97706;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.mw-event-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

.mw-event-title a {
    color: inherit;
    text-decoration: none;
}

.mw-event-title a:hover {
    color: #3b82f6;
}

.mw-event-meta {
    font-size: 13px;
    color: #64748b;
}

.mw-event-meta > div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.mw-event-meta i {
    width: 14px;
    margin-top: 2px;
    color: #94a3b8;
}

.mw-event-address {
    display: block;
    font-size: 12px;
    color: #94a3b8;
}

.mw-event-description {
    margin: 12px 0 0 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.mw-event-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: #16a34a;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.mw-event-register-btn:hover {
    background: #15803d;
    color: #ffffff;
}

/* List layout */
.mw-events-layout-list .mw-event-card {
    display: flex;
}

.mw-events-layout-list .mw-event-image {
    width: 200px;
    height: auto;
}

.mw-events-layout-list .mw-event-content {
    flex: 1;
}

/* Timeline layout */
.mw-events-layout-timeline .mw-event-card {
    position: relative;
    margin-left: 30px;
    padding-left: 25px;
    border-left: 2px solid #e2e8f0;
}

.mw-events-layout-timeline .mw-event-card::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 25px;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
}

/* Compact layout */
.mw-events-layout-compact .mw-event-card {
    padding: 15px;
}

.mw-events-layout-compact .mw-event-content {
    padding: 0;
}

.mw-events-layout-compact .mw-event-date-badge {
    padding: 8px 10px;
    min-width: 45px;
}

.mw-events-layout-compact .mw-event-day {
    font-size: 18px;
}

.mw-events-layout-compact .mw-event-title {
    font-size: 15px;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .mw-staff-grid,
    .mw-dept-grid,
    .mw-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mw-counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mw-staff-grid,
    .mw-dept-grid,
    .mw-docs-grid,
    .mw-events-grid,
    .mw-counters-grid {
        grid-template-columns: 1fr;
    }
    
    .mw-countdown-timer {
        flex-wrap: wrap;
    }
    
    .mw-countdown-unit {
        min-width: 60px;
        padding: 10px 15px;
    }
    
    .mw-countdown-number {
        font-size: 28px;
    }
    
    .mw-events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .mw-events-layout-list .mw-event-card {
        flex-direction: column;
    }
    
    .mw-events-layout-list .mw-event-image {
        width: 100%;
        height: 150px;
    }
    
    .mw-doc-item {
        flex-wrap: wrap;
    }
    
    .mw-doc-download {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* ==========================================================================
   9. FAQ ACCORDION
   ========================================================================== */
.mw-faq-container {
    padding: 0;
}

.mw-faq-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
}

.mw-faq-description {
    color: #64748b;
    margin: 0 0 25px 0;
}

.mw-faq-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.mw-faq-search {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.mw-faq-search-input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
}

.mw-faq-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.mw-faq-category-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mw-faq-filter-btn {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.mw-faq-filter-btn:hover,
.mw-faq-filter-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.mw-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mw-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
}

.mw-faq-item.is-open {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mw-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    transition: color 0.2s;
}

.mw-faq-question:hover {
    color: #3b82f6;
}

.mw-faq-question-text {
    flex: 1;
}

.mw-faq-category-badge {
    font-size: 11px;
    padding: 3px 10px;
    background: #f1f5f9;
    border-radius: 12px;
    color: #64748b;
    font-weight: 500;
}

.mw-faq-icon {
    color: #94a3b8;
    transition: transform 0.3s;
}

.mw-faq-item.is-open .mw-faq-icon-closed,
.mw-faq-item:not(.is-open) .mw-faq-icon-open {
    display: none;
}

.mw-faq-answer {
    padding: 0 20px 20px;
    color: #475569;
    line-height: 1.7;
}

.mw-faq-answer[hidden] {
    display: none;
}

/* ==========================================================================
   10. QUICK LINKS GRID
   ========================================================================== */
.mw-quicklinks-container {
    padding: 0;
}

.mw-quicklinks-title {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

.mw-quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mw-quicklink-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw-quicklinks-hover-lift .mw-quicklink-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mw-quicklinks-hover-scale .mw-quicklink-item:hover {
    transform: scale(1.05);
}

.mw-quicklinks-hover-glow .mw-quicklink-item:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.mw-quicklinks-style-outlined .mw-quicklink-item {
    background: transparent !important;
    border: 2px solid;
    color: var(--accent-color);
}

.mw-quicklinks-style-icon_top .mw-quicklink-item {
    background: #fff !important;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.mw-quicklinks-style-minimal .mw-quicklink-item {
    background: transparent !important;
    color: var(--accent-color);
}

.mw-quicklink-icon {
    margin-bottom: 12px;
}

.mw-quicklink-title {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.mw-quicklink-description {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 5px;
    display: block;
}

/* ==========================================================================
   11. NEWS CARDS
   ========================================================================== */
.mw-news-container {
    padding: 0;
}

.mw-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mw-news-section-title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
}

.mw-news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.mw-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mw-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mw-news-card.is-featured {
    border: 2px solid #f59e0b;
}

.mw-news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mw-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mw-news-card:hover .mw-news-image img {
    transform: scale(1.05);
}

.mw-news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: #3b82f6;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.mw-news-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    background: #fef3c7;
    color: #d97706;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
}

.mw-news-content {
    padding: 20px;
}

.mw-news-meta {
    margin-bottom: 10px;
}

.mw-news-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #94a3b8;
}

.mw-news-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.mw-news-title a {
    color: #1e293b;
    text-decoration: none;
}

.mw-news-title a:hover {
    color: #3b82f6;
}

.mw-news-excerpt {
    margin: 0 0 15px 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.mw-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* ==========================================================================
   12. EMERGENCY CONTACTS
   ========================================================================== */
.mw-emergency-container {
    padding: 25px;
    background: #fef2f2;
    border-radius: 12px;
    border: 1px solid #fecaca;
}

.mw-emergency-header {
    text-align: center;
    margin-bottom: 25px;
}

.mw-emergency-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
    color: #991b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mw-emergency-subtitle {
    margin: 0;
    color: #b91c1c;
    font-size: 14px;
}

.mw-emergency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mw-emergency-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mw-emergency-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mw-emergency-card.is-emergency {
    border: 2px solid var(--accent-color);
}

.mw-emergency-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
}

.mw-emergency-service {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.mw-emergency-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
}

.mw-emergency-description {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

.mw-emergency-phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.mw-emergency-phone {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
}

.mw-emergency-24-7 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #16a34a;
    font-weight: 600;
}

.mw-emergency-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 5px;
    transition: opacity 0.2s;
}

.mw-emergency-call-btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* ==========================================================================
   13. OFFICIAL PROFILE
   ========================================================================== */
.mw-official-container {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mw-official-horizontal {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.mw-official-photo-right {
    flex-direction: row-reverse;
}

.mw-official-vertical {
    text-align: center;
}

.mw-official-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.mw-official-vertical .mw-official-photo {
    margin: 0 auto 20px;
}

.mw-official-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-official-content {
    flex: 1;
}

.mw-official-name {
    margin: 0 0 5px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

.mw-official-title {
    font-size: 18px;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 10px;
}

.mw-official-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.mw-official-vertical .mw-official-meta {
    justify-content: center;
}

.mw-official-district,
.mw-official-term {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
}

.mw-official-bio {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mw-official-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.mw-official-vertical .mw-official-contact {
    justify-content: center;
}

.mw-official-email,
.mw-official-phone,
.mw-official-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
}

.mw-official-email:hover,
.mw-official-phone:hover {
    color: #3b82f6;
}

.mw-official-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mw-official-vertical .mw-official-social {
    justify-content: center;
}

.mw-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s;
}

.mw-social-link:hover {
    transform: scale(1.1);
}

.mw-social-facebook { background: #1877f2; }
.mw-social-twitter { background: #000; }
.mw-social-linkedin { background: #0a66c2; }
.mw-social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.mw-official-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.mw-official-cta:hover {
    background: #2563eb;
    color: #fff;
}

/* ==========================================================================
   14. SERVICE REQUEST CTA
   ========================================================================== */
.mw-service-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
}

.mw-service-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.mw-service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 36px;
    flex-shrink: 0;
}

.mw-service-text {
    flex: 1;
    min-width: 200px;
}

.mw-service-title {
    margin: 0 0 8px 0;
    font-size: 26px;
    font-weight: 700;
}

.mw-service-description {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.mw-service-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mw-service-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #fff;
    color: #1e40af;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw-service-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: #1e40af;
}

.mw-service-btn-secondary {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

.mw-service-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.mw-service-quick-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
}

.mw-quick-label {
    font-size: 14px;
    opacity: 0.8;
}

.mw-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    transition: background-color 0.2s;
}

.mw-quick-link:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* ==========================================================================
   15. TESTIMONIALS
   ========================================================================== */
.mw-testimonials-container {
    padding: 0;
}

.mw-testimonials-title {
    margin: 0 0 30px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

.mw-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mw-testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
}

.mw-testimonial-quote-icon {
    font-size: 48px;
    color: #e2e8f0;
    position: absolute;
    top: 20px;
    right: 25px;
}

.mw-testimonial-rating {
    margin-bottom: 15px;
}

.mw-testimonial-rating .star-filled {
    color: #f59e0b;
}

.mw-testimonial-rating .star-empty {
    color: #e2e8f0;
}

.mw-testimonial-quote {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
}

.mw-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mw-testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.mw-testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-testimonial-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
}

.mw-testimonial-title {
    font-size: 13px;
    color: #64748b;
}

.mw-testimonial-neighborhood {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 3px;
}

/* ==========================================================================
   16. NEWSLETTER SIGNUP
   ========================================================================== */
.mw-newsletter-container {
    background: #1e40af;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
}

.mw-newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.mw-newsletter-icon {
    font-size: 48px;
    opacity: 0.9;
}

.mw-newsletter-title {
    margin: 0 0 8px 0;
    font-size: 26px;
    font-weight: 700;
}

.mw-newsletter-description {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.mw-newsletter-topics {
    margin-bottom: 20px;
}

.mw-topics-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.mw-topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mw-topic-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
}

.mw-topic-item input {
    margin: 0;
}

.mw-newsletter-form-row {
    display: flex;
    gap: 10px;
}

.mw-newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

.mw-newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #f59e0b;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.mw-newsletter-btn:hover {
    background: #d97706;
}

.mw-newsletter-privacy {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.8;
}

.mw-newsletter-privacy a {
    color: #fff;
}

.mw-newsletter-success {
    text-align: center;
    padding: 20px;
    font-size: 18px;
}

.mw-newsletter-success i {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    color: #22c55e;
}

/* ==========================================================================
   17. WEATHER DISPLAY
   ========================================================================== */
.mw-weather-container {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
}

.mw-weather-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mw-weather-icon {
    font-size: 60px;
}

.mw-weather-location {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.mw-weather-temp {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.mw-weather-condition {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 5px;
}

.mw-weather-details {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.mw-weather-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.mw-weather-high,
.mw-weather-low {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mw-weather-updated {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.7;
}

.mw-weather-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================================================
   18. SOCIAL MEDIA LINKS
   ========================================================================== */
.mw-social-container {
    padding: 20px 0;
}

.mw-social-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.mw-social-description {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #64748b;
}

.mw-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: inherit;
}

.mw-social-icons .mw-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s;
}

.mw-social-icons .mw-social-link:hover {
    transform: scale(1.1);
}

.mw-social-minimal .mw-social-link {
    background: transparent !important;
    border: none !important;
}

.mw-social-link-labeled {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.mw-social-label {
    font-size: 12px;
    color: #64748b;
}

.mw-social-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.mw-social-button:hover {
    opacity: 0.9;
    color: #fff;
}

.mw-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    min-width: 120px;
    transition: border-color 0.2s;
}

.mw-social-card:hover {
    border-color: var(--platform-color);
}

.mw-social-card i {
    font-size: 28px;
    color: var(--platform-color);
    margin-bottom: 10px;
}

.mw-social-card-label {
    font-weight: 600;
    color: #1e293b;
}

.mw-social-followers {
    font-size: 12px;
    color: #64748b;
    margin-top: 5px;
}

/* ==========================================================================
   19. JOB LISTINGS
   ========================================================================== */
.mw-jobs-container {
    padding: 0;
}

.mw-jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
    flex-wrap: wrap;
}

.mw-jobs-title {
    margin: 0 0 5px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
}

.mw-jobs-intro {
    margin: 0;
    color: #64748b;
}

.mw-jobs-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.mw-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mw-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mw-job-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mw-job-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mw-job-item.is-featured {
    border-color: #fbbf24;
    background: #fffbeb;
}

.mw-job-item.is-urgent {
    border-left: 4px solid #dc2626;
}

.mw-job-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.mw-job-type {
    padding: 3px 10px;
    background: #eff6ff;
    color: #3b82f6;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}

.mw-job-badge-featured {
    padding: 3px 10px;
    background: #fef3c7;
    color: #d97706;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}

.mw-job-badge-urgent {
    padding: 3px 10px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}

.mw-job-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.mw-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
}

.mw-job-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mw-job-meta i {
    color: #94a3b8;
}

.mw-job-description {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: #64748b;
}

.mw-job-apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.mw-job-apply:hover {
    background: #1d4ed8;
    color: #fff;
}

/* ==========================================================================
   20. PARKS & FACILITIES
   ========================================================================== */
.mw-parks-container {
    padding: 0;
}

.mw-parks-title {
    margin: 0 0 25px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
}

.mw-parks-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.mw-parks-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.mw-parks-filter-btn:hover,
.mw-parks-filter-btn.active {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

.mw-parks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mw-park-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw-park-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mw-park-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.mw-park-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-park-type {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #16a34a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.mw-park-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef3c7;
    color: #d97706;
    border-radius: 50%;
    font-size: 12px;
}

.mw-park-content {
    padding: 20px;
}

.mw-park-name {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

.mw-park-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.mw-park-address,
.mw-park-size,
.mw-park-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.mw-park-meta i {
    width: 14px;
    color: #94a3b8;
}

.mw-park-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

.mw-park-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.mw-park-amenity {
    padding: 4px 10px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    border-radius: 12px;
}

.mw-park-actions {
    display: flex;
    gap: 12px;
}

.mw-park-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.mw-park-directions {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
}

/* ==========================================================================
   21. VIDEO EMBED
   ========================================================================== */
.mw-video-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mw-video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
}

.mw-video-ratio-16-9 { padding-bottom: 56.25%; }
.mw-video-ratio-4-3 { padding-bottom: 75%; }
.mw-video-ratio-21-9 { padding-bottom: 42.86%; }
.mw-video-ratio-1-1 { padding-bottom: 100%; }

.mw-video-wrapper iframe,
.mw-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mw-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.mw-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.mw-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #dc2626;
}

.mw-video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 5px 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
}

.mw-video-info {
    padding: 20px;
}

.mw-video-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

.mw-video-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.mw-video-date,
.mw-video-duration-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
}

.mw-video-description {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

/* ==========================================================================
   22. PROJECT PROGRESS
   ========================================================================== */
.mw-projects-container {
    padding: 0;
}

.mw-projects-title {
    margin: 0 0 25px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
}

.mw-projects-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.mw-projects-filter-btn {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.mw-projects-filter-btn:hover,
.mw-projects-filter-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.mw-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mw-projects-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mw-project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mw-project-image {
    height: 150px;
    overflow: hidden;
}

.mw-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-project-content {
    padding: 20px;
}

.mw-project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mw-project-category {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 8px;
}

.mw-project-status {
    padding: 4px 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}

.mw-project-name {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.mw-project-description {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #64748b;
}

.mw-project-progress {
    margin-bottom: 15px;
}

.mw-project-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: #64748b;
}

.mw-project-progress-percent {
    font-weight: 600;
    color: #1e293b;
}

.mw-project-progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.mw-project-progress-fill {
    height: 100%;
    background: #22c55e;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.mw-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.mw-project-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #64748b;
}

.mw-project-meta i {
    color: #94a3b8;
}

.mw-project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* ==========================================================================
   23. FEE TABLE
   ========================================================================== */
.mw-fee-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mw-fee-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.mw-fee-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
}

.mw-fee-effective {
    font-size: 13px;
    color: #64748b;
}

.mw-fee-description {
    padding: 15px 20px;
    margin: 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.mw-fee-search {
    position: relative;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.mw-fee-search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
}

.mw-fee-search i {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.mw-fee-category {
    margin-bottom: 0;
}

.mw-fee-category-header {
    margin: 0;
    padding: 15px 20px;
    background: #f8fafc;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e2e8f0;
}

.mw-fee-table {
    width: 100%;
    border-collapse: collapse;
}

.mw-fee-table th,
.mw-fee-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.mw-fee-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mw-fee-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #1e293b;
}

.mw-fee-item-desc {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
    margin-top: 3px;
}

.mw-fee-popular-badge {
    color: #f59e0b;
}

.mw-fee-amount {
    font-weight: 600;
    color: #16a34a;
}

.mw-fee-amount.free {
    color: #3b82f6;
}

.mw-fee-amount.contact {
    color: #64748b;
    font-style: italic;
}

.mw-fee-note {
    font-size: 13px;
    color: #64748b;
}

.mw-fee-row.is-popular {
    background: #fffbeb;
}

.mw-fee-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 20px;
    background: #f8fafc;
    font-size: 13px;
    color: #64748b;
}

.mw-fee-disclaimer i {
    color: #3b82f6;
    margin-top: 2px;
}

/* Fee Cards Layout */
.mw-fee-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
}

.mw-fee-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.mw-fee-card.is-popular {
    border-color: #f59e0b;
}

.mw-fee-popular-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 10px;
    background: #fef3c7;
    color: #d97706;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
}

.mw-fee-card-name {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.mw-fee-card-desc {
    margin: 0 0 15px 0;
    font-size: 13px;
    color: #64748b;
}

.mw-fee-card-amount {
    font-size: 24px;
    font-weight: 700;
    color: #16a34a;
}

.mw-fee-card-note {
    margin-top: 10px;
    font-size: 12px;
    color: #94a3b8;
}

/* Fee List Layout */
.mw-fee-list {
    padding: 20px;
}

.mw-fee-list-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.mw-fee-list-name {
    font-weight: 500;
    color: #1e293b;
}

.mw-fee-popular-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
    margin-left: 6px;
}

.mw-fee-list-dots {
    flex: 1;
    border-bottom: 2px dotted #e2e8f0;
    margin: 0 15px;
}

.mw-fee-list-amount {
    font-weight: 600;
    color: #16a34a;
}

/* ==========================================================================
   24. GARBAGE/RECYCLING SCHEDULE
   ========================================================================== */
.mw-garbage-container {
    padding: 0;
}

.mw-garbage-title {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
}

.mw-garbage-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
}

.mw-garbage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mw-garbage-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid var(--service-color, #64748b);
}

.mw-garbage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    font-size: 28px;
}

.mw-garbage-service-name {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.mw-garbage-schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.mw-garbage-frequency {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
}

.mw-garbage-days,
.mw-garbage-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: #1e293b;
}

.mw-garbage-days i,
.mw-garbage-time i {
    color: #94a3b8;
}

.mw-garbage-notes {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 13px;
    color: #64748b;
    text-align: left;
}

.mw-garbage-notes i {
    color: #3b82f6;
    margin-top: 2px;
}

.mw-garbage-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 15px;
}

.mw-garbage-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.mw-garbage-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}

.mw-garbage-download:hover {
    background: #2563eb;
    color: #fff;
}

/* ==========================================================================
   ADDITIONAL RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .mw-quicklinks-grid,
    .mw-news-grid,
    .mw-emergency-grid,
    .mw-testimonials-grid,
    .mw-parks-grid,
    .mw-fee-cards,
    .mw-garbage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mw-quicklinks-grid,
    .mw-news-grid,
    .mw-emergency-grid,
    .mw-testimonials-grid,
    .mw-jobs-grid,
    .mw-parks-grid,
    .mw-projects-grid,
    .mw-fee-cards,
    .mw-garbage-grid {
        grid-template-columns: 1fr;
    }
    
    .mw-official-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .mw-official-photo {
        margin: 0 auto 20px;
    }
    
    .mw-official-meta,
    .mw-official-contact,
    .mw-official-social {
        justify-content: center;
    }
    
    .mw-service-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mw-service-actions {
        justify-content: center;
    }
    
    .mw-newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mw-newsletter-form-row {
        flex-direction: column;
    }
    
    .mw-newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .mw-job-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mw-job-apply {
        width: 100%;
        justify-content: center;
    }
    
    .mw-jobs-header {
        flex-direction: column;
    }
    
    .mw-fee-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .mw-garbage-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .mw-garbage-download {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   25. BID/RFP LISTINGS
   ========================================================================== */
.mw-bids-container {
    padding: 0;
}

.mw-bids-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: #1e40af;
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.mw-bids-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.mw-bids-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}

.mw-bids-intro {
    padding: 15px 20px;
    margin: 0;
    background: #f8fafc;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.mw-bids-filter {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.mw-bids-filter-btn {
    padding: 6px 14px;
    background: #f1f5f9;
    border: none;
    border-radius: 15px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.mw-bids-filter-btn:hover,
.mw-bids-filter-btn.active {
    background: #2563eb;
    color: #fff;
}

.mw-bids-table {
    width: 100%;
    border-collapse: collapse;
}

.mw-bids-table th,
.mw-bids-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.mw-bids-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
    font-size: 13px;
}

.mw-bid-number {
    font-family: monospace;
    font-weight: 600;
    color: #1e40af;
}

.mw-bid-title-cell strong {
    display: block;
    color: #1e293b;
}

.mw-bid-dept {
    font-size: 12px;
    color: #64748b;
}

.mw-bid-type {
    display: inline-block;
    padding: 3px 10px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
}

.mw-bid-status {
    display: inline-block;
    padding: 4px 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}

.mw-bid-docs-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.mw-bids-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.mw-bid-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.mw-bid-header {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.mw-bid-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #1e293b;
}

.mw-bid-description {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #64748b;
}

.mw-bid-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #64748b;
}

.mw-bid-meta i {
    width: 16px;
    color: #94a3b8;
}

.mw-bid-due.is-urgent {
    color: #dc2626;
    font-weight: 600;
}

.mw-bid-contact {
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    font-size: 13px;
    color: #64748b;
}

/* ==========================================================================
   26. PUBLIC NOTICES
   ========================================================================== */
.mw-notices-container {
    padding: 0;
}

.mw-notices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mw-notices-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mw-notices-title i {
    color: #dc2626;
}

.mw-notices-archive {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.mw-notices-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.mw-notice-filter-btn {
    padding: 6px 12px;
    background: #f1f5f9;
    border: none;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
}

.mw-notice-filter-btn.active {
    background: #1e293b;
    color: #fff;
}

.mw-notices-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mw-notice-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--type-color, #64748b);
    border-radius: 8px;
    padding: 20px;
}

.mw-notice-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
}

.mw-notice-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.mw-notice-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.mw-notice-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mw-notice-description.is-truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mw-notice-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
}

.mw-notice-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mw-notice-meta i {
    color: #94a3b8;
}

.mw-notice-deadline {
    color: #dc2626 !important;
}

.mw-notice-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

/* ==========================================================================
   27. UTILITY RATES
   ========================================================================== */
.mw-utility-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mw-utility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #0891b2;
    color: #fff;
}

.mw-utility-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mw-utility-effective {
    font-size: 13px;
    opacity: 0.9;
}

.mw-utility-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.mw-utility-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    transition: all 0.2s;
}

.mw-utility-tab:hover {
    color: #0891b2;
}

.mw-utility-tab.active {
    color: #0891b2;
    border-bottom-color: #0891b2;
    background: #fff;
}

.mw-utility-panel {
    display: none;
    padding: 20px;
}

.mw-utility-panel.active {
    display: block;
}

.mw-utility-panel-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mw-utility-table {
    width: 100%;
    border-collapse: collapse;
}

.mw-utility-table th,
.mw-utility-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.mw-utility-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #374151;
    font-size: 13px;
}

.mw-utility-rate {
    font-weight: 600;
    color: #059669;
}

.mw-utility-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 13px;
    color: #64748b;
}

.mw-utility-calculator {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.mw-utility-calc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #0891b2;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.mw-utility-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 20px;
    background: #f8fafc;
    font-size: 13px;
    color: #64748b;
}

/* ==========================================================================
   28. ELECTED OFFICIALS GRID
   ========================================================================== */
.mw-officials-container {
    padding: 0;
}

.mw-officials-header {
    text-align: center;
    margin-bottom: 30px;
}

.mw-officials-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
}

.mw-officials-description {
    margin: 0;
    color: #64748b;
}

.mw-officials-featured {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.mw-officials-featured .mw-official-card {
    max-width: 400px;
}

.mw-officials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mw-official-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw-official-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mw-official-card.is-leadership {
    border-top: 4px solid #f59e0b;
}

.mw-official-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
}

.mw-photo-square .mw-official-photo {
    border-radius: 8px;
}

.mw-photo-rounded .mw-official-photo {
    border-radius: 16px;
}

.mw-official-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-official-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #cbd5e1;
}

.mw-official-name {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.mw-official-title {
    font-size: 14px;
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 8px;
}

.mw-official-district {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.mw-official-term {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.mw-official-contact {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mw-official-email,
.mw-official-phone {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s;
}

.mw-official-email:hover,
.mw-official-phone:hover {
    background: #3b82f6;
    color: #fff;
}

.mw-official-bio-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================================================
   29. PERMIT STATUS TRACKER
   ========================================================================== */
.mw-permit-tracker {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mw-permit-header {
    text-align: center;
    margin-bottom: 25px;
}

.mw-permit-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mw-permit-title i {
    color: #2563eb;
}

.mw-permit-description {
    margin: 0;
    color: #64748b;
}

.mw-permit-search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.mw-permit-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
}

.mw-permit-input:focus {
    border-color: #2563eb;
    outline: none;
}

.mw-permit-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 25px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.mw-permit-result {
    background: #f8fafc;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.mw-permit-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.mw-permit-number .mw-permit-label {
    font-size: 13px;
    color: #64748b;
    display: block;
}

.mw-permit-number .mw-permit-value {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    font-family: monospace;
}

.mw-permit-status-badge {
    padding: 8px 16px;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
}

.mw-permit-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.mw-permit-detail {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mw-permit-detail .mw-permit-label {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mw-permit-detail .mw-permit-value {
    font-weight: 500;
    color: #1e293b;
}

.mw-permit-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.mw-permit-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #e2e8f0;
}

.mw-permit-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mw-permit-step-marker {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 8px;
}

.mw-permit-step.is-completed .mw-permit-step-marker {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.mw-permit-step.is-current .mw-permit-step-marker {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.mw-permit-step-label {
    font-size: 11px;
    color: #64748b;
    text-align: center;
}

.mw-permit-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
}

.mw-permit-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    text-decoration: none;
}

/* ==========================================================================
   30. COMMUNITY POLL
   ========================================================================== */
.mw-poll-container {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mw-poll-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.mw-poll-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    font-size: 24px;
    flex-shrink: 0;
}

.mw-poll-label {
    display: block;
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.mw-poll-question {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.mw-poll-closed-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.mw-poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.mw-poll-option {
    display: block;
    padding: 15px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.mw-poll-option:hover {
    background: #f1f5f9;
}

.mw-poll-option.is-selected {
    background: #eff6ff;
    border-color: #3b82f6;
}

.mw-poll-option input {
    display: none;
}

.mw-poll-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mw-poll-option-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    color: #64748b;
}

.mw-poll-option-text {
    flex: 1;
    font-weight: 500;
    color: #1e293b;
}

.mw-poll-option-percent {
    font-weight: 600;
    color: #3b82f6;
}

.mw-poll-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.mw-poll-progress-fill {
    height: 100%;
    background: #3b82f6;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.mw-poll-option-votes {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #94a3b8;
    text-align: right;
}

.mw-poll-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.mw-poll-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    font-size: 13px;
    color: #64748b;
}

.mw-poll-total,
.mw-poll-deadline {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mw-poll-all-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

/* ==========================================================================
   31. IMAGE GALLERY
   ========================================================================== */
.mw-gallery-container {
    padding: 0;
}

.mw-gallery-header {
    text-align: center;
    margin-bottom: 25px;
}

.mw-gallery-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
}

.mw-gallery-description {
    margin: 0;
    color: #64748b;
}

.mw-gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.mw-gallery-filter-btn {
    padding: 8px 16px;
    background: #f1f5f9;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
}

.mw-gallery-filter-btn.active {
    background: #1e293b;
    color: #fff;
}

.mw-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mw-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.mw-gallery-item-inner {
    position: relative;
}

.mw-ratio-1-1 .mw-gallery-item-inner {
    padding-bottom: 100%;
}

.mw-ratio-4-3 .mw-gallery-item-inner {
    padding-bottom: 75%;
}

.mw-ratio-3-4 .mw-gallery-item-inner {
    padding-bottom: 133%;
}

.mw-ratio-16-9 .mw-gallery-item-inner {
    padding-bottom: 56.25%;
}

.mw-gallery-item-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mw-gallery-item:hover img {
    transform: scale(1.05);
}

.mw-gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.mw-gallery-item:hover .mw-gallery-item-overlay {
    opacity: 1;
}

.mw-gallery-zoom {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
}

.mw-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 13px;
}

.mw-gallery-caption-below {
    padding: 10px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
}

/* ==========================================================================
   32. MAP EMBED
   ========================================================================== */
.mw-map-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mw-map-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
}

.mw-map-wrapper {
    position: relative;
    height: 400px;
}

.mw-map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.mw-map-info {
    padding: 20px;
}

.mw-map-info-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.mw-map-location-name {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mw-map-location-name i {
    color: #dc2626;
}

.mw-map-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.mw-map-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

.mw-map-detail i {
    color: #94a3b8;
    margin-top: 3px;
}

.mw-map-detail a {
    color: #2563eb;
    text-decoration: none;
}

.mw-map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* ==========================================================================
   33. ACCESSIBILITY TOOLS
   ========================================================================== */
.mw-a11y-wrapper {
    position: relative;
}

.mw-a11y-floating {
    position: fixed;
    z-index: 9999;
}

.mw-a11y-bottom-right {
    bottom: 20px;
    right: 20px;
}

.mw-a11y-bottom-left {
    bottom: 20px;
    left: 20px;
}

.mw-a11y-trigger {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.mw-a11y-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    display: none;
}

.mw-a11y-wrapper.is-open .mw-a11y-popup {
    display: block;
}

.mw-a11y-container {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.mw-a11y-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.mw-a11y-header i {
    font-size: 20px;
    color: #2563eb;
}

.mw-a11y-title {
    font-weight: 600;
    color: #1e293b;
}

.mw-a11y-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mw-a11y-horizontal .mw-a11y-tools {
    flex-direction: row;
}

.mw-a11y-vertical .mw-a11y-tools {
    flex-direction: column;
}

.mw-a11y-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f1f5f9;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: all 0.2s;
}

.mw-a11y-btn:hover {
    background: #e2e8f0;
}

.mw-a11y-btn.is-active {
    background: #2563eb;
    color: #fff;
}

.mw-a11y-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mw-a11y-group-label {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mw-a11y-group-btns {
    display: flex;
    gap: 4px;
}

.mw-a11y-group-btns .mw-a11y-btn {
    padding: 8px 12px;
}

.mw-a11y-footer {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.mw-a11y-statement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 13px;
}

/* ==========================================================================
   34. PAYMENT OPTIONS
   ========================================================================== */
.mw-payments-container {
    padding: 0;
}

.mw-payments-header {
    text-align: center;
    margin-bottom: 30px;
}

.mw-payments-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mw-payments-title i {
    color: #2563eb;
}

.mw-payments-description {
    margin: 0;
    color: #64748b;
}

.mw-payments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mw-payment-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw-payment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mw-payment-card.is-popular {
    border: 2px solid var(--accent-color);
}

.mw-payment-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--accent-color);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
}

.mw-payment-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    font-size: 30px;
}

.mw-payment-type {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.mw-payment-desc {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #64748b;
}

.mw-payment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.mw-payment-btn:hover {
    opacity: 0.9;
    color: #fff;
}

.mw-payments-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.mw-methods-label {
    font-size: 13px;
    color: #64748b;
}

.mw-methods-icons {
    display: flex;
    gap: 10px;
}

.mw-method-icon {
    font-size: 28px;
    color: #64748b;
}

.mw-method-echeck {
    font-size: 20px;
    padding: 4px 8px;
    background: #f1f5f9;
    border-radius: 4px;
}

.mw-payments-fee-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 13px;
    color: #64748b;
}

.mw-payments-fee-note i {
    color: #f59e0b;
}

/* ==========================================================================
   RESPONSIVE - WIDGETS 25-34
   ========================================================================== */
@media (max-width: 1024px) {
    .mw-bids-grid,
    .mw-officials-grid,
    .mw-payments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mw-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mw-map-with-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mw-bids-grid,
    .mw-officials-grid,
    .mw-payments-grid,
    .mw-gallery-grid,
    .mw-permit-details {
        grid-template-columns: 1fr;
    }
    
    .mw-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mw-bids-header,
    .mw-notices-header,
    .mw-permit-search-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .mw-utility-tabs {
        flex-wrap: wrap;
    }
    
    .mw-utility-tab {
        flex: 1 1 calc(50% - 5px);
    }
    
    .mw-permit-timeline {
        flex-direction: column;
        gap: 15px;
    }
    
    .mw-permit-timeline::before {
        display: none;
    }
    
    .mw-permit-step {
        flex-direction: row;
        gap: 15px;
    }
    
    .mw-poll-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .mw-payments-methods {
        flex-direction: column;
    }
    
    .mw-a11y-horizontal .mw-a11y-tools {
        flex-direction: column;
    }
    
    .mw-a11y-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   LIGHTBOX STYLES
   ========================================================================== */
.mw-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mw-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
}

.mw-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.mw-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.mw-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    opacity: 0.8;
}

.mw-lightbox-close:hover {
    opacity: 1;
}

/* ==========================================================================
   ACCESSIBILITY BODY CLASSES
   ========================================================================== */
body.mw-high-contrast {
    filter: contrast(1.25);
}

body.mw-high-contrast * {
    border-color: #000 !important;
}

body.mw-dyslexia-font,
body.mw-dyslexia-font * {
    font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif !important;
    letter-spacing: 0.05em;
    word-spacing: 0.1em;
}

body.mw-underline-links a {
    text-decoration: underline !important;
}

body.mw-large-cursor,
body.mw-large-cursor * {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path fill="%23000" d="M0 0l12 28 4-12 12-4z"/></svg>'), auto !important;
}

/* ==========================================================================
   GALLERY CAROUSEL STYLES
   ========================================================================== */
.mw-gallery-carousel {
    position: relative;
    overflow: hidden;
}

.mw-gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.mw-gallery-slide {
    flex: 0 0 33.333%;
    padding: 0 5px;
}

.mw-gallery-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.mw-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s;
}

.mw-gallery-arrow:hover {
    background: #f1f5f9;
}

.mw-gallery-prev {
    left: 15px;
}

.mw-gallery-next {
    right: 15px;
}

.mw-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.mw-gallery-dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.mw-gallery-dot.active {
    background: #3b82f6;
}
