:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #f97316;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray: #64748b;
    --light-gray: #e2e8f0;
}
.pb-60 {padding-bottom: 60px !important;}
.bg-gradient-1 {
    background: linear-gradient(135deg, #00A896, var(--primary)) !important;
}

.text-green-1 {
    color: #00A896 !important;
}
.sub-heading {
    display: inline-block;
    font-size: 1.15rem; /* Responsive, modern sizing */
    font-weight: 600;
    color: var(--primary, #00A896) !important;
    border-bottom: 2.5px solid #00A896 !important;
    padding-bottom: 2px;
    margin-bottom: 0.5em;
    letter-spacing: 0.01em;
    line-height: 1.2;
    background: linear-gradient(90deg, #00A896 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.filter_scroll{overflow-x: hidden;overflow-y: scroll;height:300px;position: relative;}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.category-card {
    background: var(--light);
    border-radius: 1rem;
    padding: 2rem 1.4rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00A896, var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.category-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Modern Business Listing Card Styles */
.modern-listing-card {
    background: var(--light);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    margin-bottom: 2rem;
    border: 1px solid var(--light-gray);
}
.modern-listing-card:hover {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.16);
    border-color: var(--primary);
}
.mlc-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/2;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mlc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.8rem 0.8rem 0 0;
    display: block;
}
.mlc-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--light);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.mlc-status-open { background: #e0fbe0; color: #22c55e; }
.mlc-status-close, .mlc-status-closed { background: #fee2e2; color: #ef4444; }
.mlc-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.mlc-rating i { color: #ffd700; margin-right: 0.2rem; }
.mlc-reviews { color: #f8fafc; font-size: 0.85em; margin-left: 0.2em; }
.mlc-content {
    padding: 1.3rem 1.3rem 1rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.mlc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}
.mlc-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--dark);
    flex: 1 1 auto;
    line-height: 1.2;
}
.mlc-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}
.mlc-title a:hover { color: var(--primary); }
.mlc-author-avatar {
    margin-left: 0.8rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: box-shadow 0.2s;
}
.mlc-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.mlc-location {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.mlc-location i { color: var(--primary); }
.mlc-description {
    color: var(--gray);
    font-size: 0.97rem;
    margin-bottom: 1.1rem;
    min-height: 1.5em;
}
.mlc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--light-gray);
    padding-top: 0.8rem;
    margin-top: auto;
}
.mlc-category {
    display: inline-flex;
    align-items: center;
    background: var(--secondary);
    color: #fff;
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 0.93rem;
    font-weight: 500;
    gap: 0.5rem;
    width: auto !important;
    max-width: 100%;
}
.mlc-category i { font-size: 1.1em; }
.mlc-actions {
    display: flex;
    gap: 0.5rem;
}
.mlc-action-btn {
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    position: relative;
}
.mlc-action-btn:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 600px) {
    .modern-listing-card {
        border-radius: 0.7rem;
        padding: 0;
    }
    .mlc-content {
        padding: 1rem 0.7rem 0.7rem 0.7rem;
    }
    .mlc-title {
        font-size: 1rem;
    }
    .mlc-category {
        font-size: 0.9rem;
        padding: 0.2rem 0.7rem;
    }
    .mlc-action-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

.how-it-works-row {
    gap: 2rem 0;
}
.how-step-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    padding: 2.2rem 1.2rem 1.7rem 1.2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.how-step-card:hover {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.16);
    transform: translateY(-10px);
}
.how-step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00A896, var(--primary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.10);
}
.how-step-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--dark);
}
.how-step-desc {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Modern Filter Sidebar (Offcanvas/Sticky) */
.modern-filter-sidebar {
    background: #fff;
    border-radius: 1.2rem 0 0 1.2rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    min-width: 320px;
    max-width: 350px;
    padding: 0;
    border: none;
}
@media (max-width: 991.98px) {
    .modern-filter-sidebar {
        border-radius: 1.2rem 1.2rem 0 0;
        min-width: 0;
        max-width: 100vw;
        box-shadow: 0 -2px 24px rgba(15, 23, 42, 0.12);
    }
}
.sticky-lg-top {
    position: sticky;
    top: 2rem;
    z-index: 2;
}
.filter-fab {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1050;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.12);
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
@media (min-width: 992px) {
    .filter-fab { display: none !important; }
}
/* Filter Sidebar Content */
.modern-filter-sidebar .form-check-input {
    width: 1.2em;
    height: 1.2em;
    border-radius: 0.4em;
    border: 1.5px solid var(--light-gray, #e2e8f0);
    margin-top: 0.1em;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.modern-filter-sidebar .form-check-input:checked {
    background-color: var(--primary, #2563eb);
    border-color: var(--primary, #2563eb);
}
.modern-filter-sidebar .form-check-label {
    font-size: 1rem;
    color: var(--dark, #0f172a);
    margin-left: 0.5em;
    cursor: pointer;
}
.modern-filter-sidebar h6 {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--primary, #2563eb);
}
.modern-filter-sidebar hr {
    margin: 1.2rem 0;
    border-top: 1.5px solid var(--light-gray, #e2e8f0);
}
.modern-filter-sidebar .btn-primary {
    border-radius: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
.modern-filter-sidebar .btn-link {
    color: var(--primary, #2563eb);
    text-decoration: underline;
    font-weight: 500;
}
/* Offcanvas overrides for smooth slide-in */
.offcanvas.offcanvas-end.modern-filter-sidebar {
    border-left: none;
    border-radius: 1.2rem 0 0 1.2rem;
    box-shadow: -4px 0 24px rgba(15, 23, 42, 0.12);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

/* Mobile Sidebar Footer Enhancements */
.mobile-sidebar-footer {
    position: relative;
    overflow: hidden;
}

.mobile-sidebar-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 150, 0.3) 50%, transparent 100%);
}

.contact-icon-wrapper {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-wrapper {
    background: rgba(0, 168, 150, 0.2) !important;
    transform: scale(1.05);
}

.social-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px; /* or your preferred spacing */
    width: 100%;
}
  
.social-icon-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    /* keep your background, color, etc. */
}

.social-icon-link {
    transition: all 0.3s ease !important;
}

.social-icon-link:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.mobile-sidebar-footer .contact-item {
    transition: all 0.3s ease;
}

.mobile-sidebar-footer .contact-item:hover {
    transform: translateX(5px);
}

/* === Business Hero Banner === */
.business-hero-banner {
  position: relative;
  min-height: 260px;
  max-height: 420px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.business-hero-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .business-hero-img { height: 420px; }
}
.business-hero-overlay {
  background: linear-gradient(135deg, rgba(0,168,150,0.85) 0%, rgba(37,99,235,0.85) 100%);
  color: #fff;
  border-radius: 1rem;
  left: 0; bottom: 0;
  padding-bottom: 2rem;
}
.business-hero-overlay h1,
.business-hero-overlay .badge,
.business-hero-overlay .btn {
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.business-hero-overlay .badge {
  font-size: 1rem;
  padding: 0.5em 0.9em;
  border-radius: 1em;
}
.business-hero-overlay .btn {
  font-weight: 500;
  border-radius: 2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
.business-hero-overlay .btn i {
  margin-right: 0.4em;
}

/* === Gallery Carousel === */
.business-gallery-carousel {
  margin-bottom: 2rem;
}
.business-gallery-carousel .featured-gallery-slide {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.business-gallery-img {
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  width: 180px;
  height: 120px;
  object-fit: cover;
  transition: transform 0.2s;
}
.business-gallery-img:hover {
  transform: scale(1.04);
}
@media (min-width: 768px) {
  .business-gallery-img { width: 260px; height: 180px; }
}

/* === Video Embed === */
.business-video-embed iframe {
  border-radius: 0.75rem;
  min-height: 180px;
  max-height: 340px;
  background: #000;
}

/* === Offers Section === */
.business-offers-section {
  margin-bottom: 2rem;
}
.offer-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  background: #f8fafc;
  transition: box-shadow 0.2s, transform 0.2s;
}
.offer-card:hover {
  box-shadow: 0 6px 24px rgba(0,168,150,0.12);
  transform: translateY(-2px) scale(1.02);
}
.offer-card .badge {
  font-size: 0.95em;
  margin-top: 0.5em;
  border-radius: 1em;
}

/* === Reviews Section === */
.business-reviews-section {
  margin-bottom: 2rem;
}
.business-reviews-section .card {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  background: #fff;
}
.business-reviews-section .card-body {
  padding: 1.25rem 1.5rem;
}
.business-reviews-section .rounded-circle {
  border: 2px solid #e0e7ef;
}
.business-reviews-section .fw-bold {
  font-weight: 600 !important;
}
.business-reviews-section .fa-star {
  font-size: 1.1em;
}
.business-reviews-section .fa-star.text-warning {
  color: #fbbf24 !important;
}

