﻿:root {
    --primary: #1e3a8a;
    --primary-light: #dbeafe;
    --primary-dark: #1e3060;
    --secondary: #6d28d9;
    --secondary-dark: #4c1d95;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --success: #22c55e;
    --text: #0f172a;
    --text-secondary: #64748b;
    --bg: #f8fafc;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.07);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
    --radius: 10px;
    --radius-sm: 8px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --whatsapp: #25D366;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    margin: 0 auto 16px;
}

.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    background: var(--bg-card);
}

.btn-custom {
    background: var(--accent);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: var(--radius);
    padding: 12px 28px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
}

    .btn-custom:hover {
        background: var(--accent-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(249,115,22,0.4);
        color: white;
    }

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.offer-ticker {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 10px 0;
    position: relative;
}

.offer-ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 18s linear infinite;
}

.offer-ticker-text {
    flex-shrink: 0;
    padding: 0 60px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sticky-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    /*background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);*/
    z-index: 1050;
    padding: 0;
}

.sticky-bottom-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
}

    .sticky-bottom-btn i {
        font-size: 1.3rem;
    }

    .sticky-bottom-btn:hover,
    .sticky-bottom-btn:focus {
        color: var(--primary);
        background: var(--primary-light);
        text-decoration: none;
    }

@media (min-width: 768px) {
    .sticky-bottom-nav {
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 16px 16px 0 0;
    }
}

.businessDescription {
    border-left: 1px solid #e2e8f0;
}

.hero-card {
    border: 1px solid rgba(30,58,138,0.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.hero-img {
    border-radius: var(--radius);
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    /*box-shadow: 0 8px 30px rgba(0,0,0,0.1);*/
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.hero-desc {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.hero-info {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

    .hero-info i {
        color: var(--primary);
        margin-right: 8px;
        font-size: 1rem;
    }

.hero-gst {
    display: inline-block;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.social-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.social-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 14px;
    border-radius: var(--radius);
}

    .social-tile:hover {
        transform: translateY(-6px);
        background: var(--bg);
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }

    .social-tile .tile-icon {
        width: 64px;
        height: 64px;
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: white;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        transition: box-shadow 0.3s;
    }

    .social-tile:hover .tile-icon {
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

    .social-tile .tile-label {
        margin-top: 10px;
        font-size: 13px;
        font-weight: 600;
        color: #475569;
    }

.tile-email {
    background: #EA4335;
}

.tile-whatsapp {
    background: #25D366;
}

.tile-location {
    background: #4285F4;
}

.tile-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tile-facebook {
    background: #1877F2;
}

.tile-youtube {
    background: #FF0000;
}

.tile-twitter {
    background: #000000;
}

.tile-linkedin {
    background: #0A66C2;
}

.gallery-section {
    border-radius: var(--radius);
    padding: 50px 30px;
    overflow: hidden;
}

    .gallery-section .section-title,
    .gallery-section .section-subtitle {
        color: #000000;
    }

    .gallery-section .section-subtitle {
        color: #94a3b8;
    }

.carousel-item {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-img {
    height: 400px;
    object-fit: contain;
    border-radius: var(--radius);
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    background: rgba(30,58,138,0.85);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: background 0.3s;
}

.carousel-control-prev:hover .carousel-nav-btn,
.carousel-control-next:hover .carousel-nav-btn {
    background: var(--primary);
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
    border: none;
    margin: 0 5px;
}

.carousel-indicators .active {
    background: var(--primary);
}

.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: var(--radius);
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

    .product-card img {
        height: 220px;
        width: 100%;
        object-fit: contain;
    }

    .product-card .card-body {
        padding: 20px;
    }

        .product-card .card-body h5 {
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }

        .product-card .card-body p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

.banner {
    background: linear-gradient(135deg, #0f172a 0%, var(--primary) 50%, var(--secondary) 100%);
    border-radius: var(--radius);
    padding: 60px 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(109,40,217,0.2), transparent 70%);
        border-radius: 50%;
    }

    .banner h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .banner p {
        color: #cbd5e1;
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .banner img {
        border-radius: var(--radius);
        box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--bg-card);
}

    .video-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }

    .video-card iframe {
        width: 100%;
        height: 260px;
        border: none;
        display: block;
    }

.biz-ticker {
    --biz-gap: 24px;
    --biz-visible: 3;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.biz-ticker-track {
    display: flex;
    width: max-content;
    gap: var(--biz-gap);
    animation: biz-ticker-scroll 30s linear infinite;
}

    .biz-ticker-track:hover {
        animation-play-state: paused;
    }

.biz-ticker-item {
    flex-shrink: 0;
    width: 350px;
    height: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .biz-ticker-item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .biz-ticker-item img {
        height: 180px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        border-radius: var(--radius-sm);
    }

    .biz-ticker-item span {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text);
        text-align: center;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

@keyframes biz-ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sub-wrapper {
    position: relative;
}

.sub-card {
    position: sticky;
    top: 100px;
    margin-bottom: 80px;
    padding: 30px 35px;
    background: white;
    border-radius: var(--radius);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

    .sub-card h4 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        color: var(--text);
    }

    .sub-card p {
        color: var(--text-secondary);
        line-height: 1.8;
    }

    .sub-card.past {
        transform: scale(0.92);
        opacity: 0.3;
        filter: blur(2px);
    }

    .sub-card.active {
        transform: scale(1.03);
        z-index: 10;
        box-shadow: 0 20px 60px rgba(30,58,138,0.15);
        border: 2px solid var(--primary);
    }

    .sub-card.future {
        opacity: 0.7;
    }

.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

    .site-footer .footer-brand {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
    }

    .site-footer a {
        color: var(--accent);
        text-decoration: none;
    }

        .site-footer a:hover {
            text-decoration: underline;
        }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: #fff;
        text-decoration: none;
        transition: background 0.3s, transform 0.3s;
    }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
            text-decoration: none;
        }

.navbar-directory {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}

    .navbar-directory .navbar-inner {
        max-width: 1280px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
    }

    .navbar-directory .navbar-brand {
        font-weight: 700;
        font-size: 1.25rem;
        color: var(--primary);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

        .navbar-directory .navbar-brand svg {
            flex-shrink: 0;
        }

    .navbar-directory .navbar-links {
        display: flex;
        gap: 1.5rem;
        list-style: none;
    }

        .navbar-directory .navbar-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: .9rem;
            font-weight: 500;
            transition: color var(--transition);
            padding: .25rem 0;
        }

            .navbar-directory .navbar-links a:hover,
            .navbar-directory .navbar-links a.active {
                color: var(--primary);
            }

.page-header {
    padding: 3rem 0 2rem;
    background: linear-gradient(170deg, #ede9fe 0%, var(--bg) 100%);
}

    .page-header h1 {
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: .5rem;
    }

    .page-header p {
        color: var(--text-secondary);
        font-size: 1.1rem;
        max-width: 600px;
    }

.filter-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: -1rem 0 2rem;
    box-shadow: var(--shadow-sm);
}

.filter-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    flex: 1;
    min-width: 180px;
}

    .filter-group label {
        font-size: .78rem;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

.filter-input, .filter-select {
    padding: .65rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: all var(--transition);
    outline: none;
}

    .filter-input:focus, .filter-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(30,58,138,.12);
    }

    .filter-input::placeholder {
        color: #94a3b8;
    }

.filter-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    padding-right: 2.5rem;
}

.filter-clear {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    font-family: inherit;
    border: 1px solid var(--border);
    cursor: pointer;
    background: var(--bg-card);
    color: var(--text-secondary);
    transition: all var(--transition);
    text-decoration: none;
}

    .filter-clear:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: .75rem;
}

.results-info {
    font-size: .9rem;
    color: var(--text-secondary);
}

    .results-info strong {
        color: var(--text);
        font-weight: 700;
    }

.results-page-info {
    font-size: .85rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: .35rem .9rem;
    border-radius: 999px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.business-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

    .business-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.card-category-ribbon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: .3rem .85rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .03em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    backdrop-filter: blur(8px);
}

.card-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-image-wrap img {
        width: 100%;
        /*height: 100%;*/
        max-height: 240px;
        object-fit: cover;
        transition: transform .5s ease;
    }

.business-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-image-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-image-placeholder svg {
        width: 32px;
        height: 32px;
        stroke: var(--primary);
    }

.business-card .card-body {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.business-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .4rem;
    line-height: 1.3;
    color: var(--text);
}

.card-description {
    color: var(--text-secondary);
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-location {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--text-secondary);
    font-size: .82rem;
    margin-bottom: 1rem;
}

    .card-location svg {
        width: 14px;
        height: 14px;
        stroke: var(--primary);
        flex-shrink: 0;
    }

.business-card .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.card-phone {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--text-secondary);
    font-size: .82rem;
}

    .card-phone svg {
        width: 14px;
        height: 14px;
        stroke: var(--text-secondary);
    }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--whatsapp);
    color: #fff;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(37,211,102,.3);
}

    .whatsapp-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(37,211,102,.45);
    }

    .whatsapp-btn svg {
        width: 16px;
        height: 16px;
    }

.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 2rem 0 3rem;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 .75rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
    font-family: inherit;
}

    .page-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: var(--primary-light);
    }

    .page-btn.active {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: #fff;
        border-color: transparent;
        box-shadow: 0 4px 12px rgba(30,58,138,.3);
    }

    .page-btn:disabled {
        opacity: .4;
        pointer-events: none;
    }

    .page-btn svg {
        width: 16px;
        height: 16px;
    }

.page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: var(--text-secondary);
    font-size: .9rem;
}

.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-secondary);
}

    .empty-state svg {
        width: 80px;
        height: 80px;
        stroke: var(--border);
        margin-bottom: 1.5rem;
    }

    .empty-state h3 {
        font-size: 1.25rem;
        color: var(--text);
        margin-bottom: .5rem;
    }

    .empty-state p {
        font-size: .95rem;
        max-width: 400px;
        margin: 0 auto;
    }

.footer-directory {
    background: #0f172a;
    color: rgba(255,255,255,.7);
    padding: 2rem 0;
    text-align: center;
    font-size: .85rem;
}

@media (max-width: 768px) {
    .businessDescription {
        border-left: unset;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .filter-group {
        min-width: 100%;
    }

    .results-bar {
        flex-direction: column;
        align-items: flex-start;
    }


    .hero-name {
        font-size: 1.6rem;
    }

    /*.hero-img {
        height: 240px;
    }*/

    .social-grid {
        gap: 18px;
    }

    .banner {
        padding: 30px 20px;
    }

    .carousel-img {
        max-height: 280px;
        object-fit: cover;
        width: 100%;
    }

    .section {
        padding: 50px 0;
    }

    .biz-ticker-item {
        width: 300px;
        height: 320px;
    }

        .biz-ticker-item img {
            height: 220px;
        }
}

.sticky-bottom-nav {
    position: sticky;
    bottom: 10px;
    z-index: 1040;
    display: flex;
    justify-content: center;
    justify-self: center;
    border-radius: 15px;
    gap: 20px;
    padding: 10px 40px;
    /*background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 -2px 12px rgba(0,0,0,.1);*/
}

.sticky-bottom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 24px;
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    text-decoration: none;
    background: var(--primary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

    .sticky-bottom-btn:hover {
        background: var(--primary-dark);
        color: #fff;
        box-shadow: var(--shadow-md);
        transform: translateY(-1px);
    }

    .sticky-bottom-btn:active {
        transform: scale(.97);
    }

    .sticky-bottom-btn i {
        font-size: 1rem;
    }

@media (max-width: 576px) {
    .sticky-bottom-nav {
        gap: 30px;
        padding: 10px 46px;
        bottom: 10px;
    }

    .sticky-bottom-btn {
        flex: 1;
        padding: 10px 12px;
        font-size: .82rem;
    }
}
