/* ==========================================================================
   latviatravel.lv — Main Stylesheet
   ==========================================================================
   Modern, clean, professional design.
   Mobile-first responsive (Bootstrap 5 breakpoints).
   No inline styles — everything lives here.
   Separate travel.css and business.css for section-specific theming.
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    --color-primary: #0d6efd;
    --color-primary-dark: #0a58ca;
    --color-primary-light: #6ea8fe;
    --color-secondary: #6c757d;
    --color-success: #198754;
    --color-danger: #dc3545;
    --color-warning: #ffc107;
    --color-info: #0dcaf0;
    --color-dark: #212529;
    --color-light: #f8f9fa;
    --color-muted: #6c757d;
    --color-border: #dee2e6;
    --color-body-bg: #f4f6f9;
    --color-white: #ffffff;

    --font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-h1: 2.25rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.375rem;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    --transition: all 0.2s ease;
    --transition-slow: all 0.35s ease;

    --header-height: 72px;
}

/* --------------------------------------------------------------------------
   Base & Typography
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    background-color: var(--color-body-bg);
    color: var(--color-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 3rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary) !important;
    letter-spacing: -0.5px;
}

.navbar-brand img {
    height: 36px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
    background-color: rgba(13, 110, 253, 0.06);
}

.navbar-nav .nav-link.btn-primary {
    color: var(--color-white) !important;
    padding: 0.4rem 1.2rem;
    margin-left: 0.5rem;
}

/* Language switcher */
.language-switcher .dropdown-toggle {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.75rem;
    font-size: var(--font-size-sm);
    color: var(--color-muted);
}

.language-switcher .dropdown-menu {
    min-width: 80px;
}

/* Search bar in navbar */
.navbar-search {
    position: relative;
    max-width: 320px;
}

.navbar-search .form-control {
    border-radius: var(--radius-lg);
    padding-left: 2.5rem;
    border-color: var(--color-border);
    background-color: var(--color-light);
}

.navbar-search .search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Hero Section (Homepage) — Modern layered animated background
   -------------------------------------------------------------------------- */
.hero-section {
    background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6b 35%, #0d6efd 70%, #0d1b3e 100%);
    background-size: 300% 300%;
    animation: heroGradient 14s ease infinite;
    color: var(--color-white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@keyframes heroGradient {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 100% 0%; }
    50%  { background-position: 100% 100%; }
    75%  { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Large blurred orb — top right glowing circle */
.hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 140, 255, 0.18) 0%, rgba(13, 110, 253, 0.06) 40%, transparent 70%);
    animation: heroOrbFloat 18s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-40px, 30px) scale(1.08); }
    66%      { transform: translate(20px, -20px) scale(0.95); }
}

/* Bottom-left smaller glowing orb */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 180, 255, 0.12) 0%, rgba(13, 110, 253, 0.04) 40%, transparent 70%);
    animation: heroOrbFloat2 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(30px, -25px) scale(1.1); }
}

/* Geometric diamond ring ornament */
.hero-diamond {
    position: absolute;
    top: 30px;
    right: 15%;
    width: 180px;
    height: 180px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transform: rotate(45deg);
    animation: heroRotate 35s linear infinite;
    pointer-events: none;
}

@keyframes heroRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Floating dot pattern overlay */
.hero-dots {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(circle at 75% 40%, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 40% 70%, rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(circle at 85% 80%, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 55% 15%, rgba(255,255,255,0.06) 2px, transparent 2px),
        radial-gradient(circle at 20% 85%, rgba(255,255,255,0.03) 1.5px, transparent 1.5px);
    background-size: 100px 100px, 130px 130px, 90px 90px, 110px 110px, 150px 150px, 120px 120px;
    animation: heroDotsDrift 9s linear infinite;
    pointer-events: none;
}

@keyframes heroDotsDrift {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Diagonal accent stripe panel */
.hero-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.06) 40%, rgba(255,255,255,0.01) 100%);
    transform: skewX(-15deg) translateX(-80px);
    animation: heroSway 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroSway {
    0%, 100% { transform: skewX(-15deg) translateX(-80px); }
    50%      { transform: skewX(-15deg) translateX(-20px); }
}

/* Small floating accent orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orbs::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 8%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    animation: heroOrbSmall 5s ease-in-out infinite;
}

.hero-orbs::after {
    content: '';
    position: absolute;
    top: 65%;
    right: 12%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: heroOrbSmall 4s ease-in-out infinite 1.5s;
}

@keyframes heroOrbSmall {
    0%, 100% { transform: translateY(0); opacity: 0.25; }
    50%      { transform: translateY(-15px); opacity: 0.6; }
}

.hero-title {
    font-size: var(--font-size-h1);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-search {
    max-width: 600px;
}

.hero-search .form-control {
    height: 3.2rem;
    border-radius: var(--radius-lg);
    border: none;
    padding-left: 1.25rem;
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-lg);
}

.hero-search .btn {
    height: 3.2rem;
    border-radius: var(--radius-lg);
    padding-left: 2rem;
    padding-right: 2rem;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-weight: 700;
    font-size: var(--font-size-h2);
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.section-header p {
    color: var(--color-muted);
    font-size: var(--font-size-lg);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Category Cards
   -------------------------------------------------------------------------- */
.category-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-dark);
    display: block;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
    text-decoration: none;
    color: var(--color-dark);
}

.category-card .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

.category-card .icon-wrapper.travel {
    background-color: #e0f7fa;
    color: #00838f;
}

.category-card .icon-wrapper.business {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.category-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card .count-badge {
    font-size: var(--font-size-sm);
    color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   Subcategory Cards
   -------------------------------------------------------------------------- */
.subcategory-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    height: 100%;
}

.subcategory-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.subcategory-card a {
    font-weight: 600;
    font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Business Card Grid (separated stylized cards, no images)
   -------------------------------------------------------------------------- */
.business-card-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.business-card-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.15rem 1.5rem;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.business-card-item:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-primary-dark);
    transform: translateX(3px);
}

.business-card-item .business-info {
    flex: 1;
    min-width: 0;
}

.business-card-item .business-info h5 {
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 0 0.2rem;
}

.business-card-item .business-info h5 a {
    color: var(--color-dark);
}

.business-card-item .business-info h5 a:hover {
    color: var(--color-primary);
}

.business-card-item .business-info .category-path {
    font-size: var(--font-size-sm);
    color: var(--color-muted);
    margin: 0;
}

.business-card-item .business-meta {
    display: flex;
    gap: 1.2rem;
    font-size: var(--font-size-sm);
    color: var(--color-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.business-card-item .business-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.business-card-item .business-actions {
    flex-shrink: 0;
}

.business-card-item .featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-warning), #ff8f00);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Travel theme accent */
.travel-section .business-card-item,
body.travel-section .business-card-item {
    border-left-color: var(--travel-primary, #00838f);
}

.travel-section .business-card-item:hover,
body.travel-section .business-card-item:hover {
    border-left-color: var(--travel-primary-dark, #006064);
    box-shadow: 0 6px 18px rgba(0, 131, 143, 0.12);
}

/* Business theme accent */
.business-section .business-card-item,
body.business-section .business-card-item {
    border-left-color: var(--business-primary, #1a237e);
}

.business-section .business-card-item:hover,
body.business-section .business-card-item:hover {
    border-left-color: var(--business-primary-dark, #0d1453);
    box-shadow: 0 6px 18px rgba(26, 35, 126, 0.1);
}

/* Responsive: stack on mobile */
@media (max-width: 767.98px) {
    .business-card-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .business-card-item .business-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .business-card-item .business-actions {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Business Detail Page
   -------------------------------------------------------------------------- */
.business-detail-header {
    position: relative;
    background-color: #000;
    color: var(--color-white);
    margin-top: -1.5rem;
    overflow: hidden;
}

.business-detail-header .head-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.8;
}

/* --- Head image fallback: gradient placeholder with ornaments --- */
.business-detail-header.no-image {
    background: linear-gradient(135deg, #1a237e 0%, #283593 40%, #3949ab 70%, #1a237e 100%);
    background-size: 400% 400%;
    animation: heroGradientShift 12s ease infinite;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

@keyframes heroGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ornament: large decorative circles */
.business-detail-header.no-image::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 40%, transparent 70%);
    pointer-events: none;
}

.business-detail-header.no-image::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.05);
    pointer-events: none;
}

/* Ornament: dot pattern overlay */
.business-detail-header.no-image .ornament-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 65% 75%, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.05) 2px, transparent 2px),
        radial-gradient(circle at 15% 80%, rgba(255,255,255,0.03) 2px, transparent 2px);
    background-size: 80px 80px, 100px 100px, 120px 120px, 90px 90px;
    pointer-events: none;
}

/* Diagonal stripe ornament */
.business-detail-header.no-image .ornament-stripes {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(255,255,255,0.03) 8px,
        rgba(255,255,255,0.03) 10px
    );
    pointer-events: none;
}

/* Travel theme override for no-image hero */
.travel-section .business-detail-header.no-image,
body.travel-section .business-detail-header.no-image {
    background: linear-gradient(135deg, #006064 0%, #00838f 40%, #00acc1 70%, #006064 100%);
    background-size: 400% 400%;
    animation: heroGradientShiftTravel 12s ease infinite;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

@keyframes heroGradientShiftTravel {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Business theme override for no-image hero (default navy, kept explicit) */
.business-section .business-detail-header.no-image,
body.business-section .business-detail-header.no-image {
    background: linear-gradient(135deg, #1a237e 0%, #283593 40%, #3949ab 70%, #1a237e 100%);
    background-size: 400% 400%;
    animation: heroGradientShift 12s ease infinite;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

.business-detail-header .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.business-detail-header .overlay h1 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.business-detail-header .overlay .category-path {
    opacity: 0.9;
}

.business-detail-content {
    padding-top: 2rem;
}

.business-detail-content .info-block {
    margin-bottom: 2rem;
}

.business-detail-content .info-block h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list .icon {
    color: var(--color-primary);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Map container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    background-color: #e9ecef;
}

.map-container .leaflet-container {
    height: 100%;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Gallery (Lightbox areas)
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4 / 3;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-thumb .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: var(--font-size-sm);
}

/* --------------------------------------------------------------------------
   Search Page
   -------------------------------------------------------------------------- */
.search-filters {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.search-filters h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.results-count {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   Submit Form
   -------------------------------------------------------------------------- */
.submit-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.submit-form-wrapper .card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.submit-form-wrapper .card-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    padding: 2rem;
}

.submit-form-wrapper .card-body {
    padding: 2rem;
}

/* --------------------------------------------------------------------------
   Cookie Consent Banner
   -------------------------------------------------------------------------- */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.25rem 0;
    box-shadow: var(--shadow-xl);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-banner p {
    margin-bottom: 0;
    font-size: var(--font-size-sm);
}

.cookie-consent-banner .btn-outline-light {
    border-color: rgba(255,255,255,0.5);
}

.cookie-consent-details {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cookie-consent-details.show {
    display: block;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem 0 1.5rem;
    margin-top: auto;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
    color: var(--color-white);
    text-decoration: none;
}

.site-footer h6 {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: 0.5rem;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    margin-top: 2rem;
    font-size: var(--font-size-sm);
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-sm);
}

.breadcrumb-item a {
    color: var(--color-muted);
}

.breadcrumb-item.active {
    color: var(--color-dark);
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.pagination .page-link {
    border-radius: var(--radius-sm);
    margin: 0 2px;
    color: var(--color-primary);
    border-color: var(--color-border);
}

.pagination .page-item.active .page-link {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.pagination .page-item.disabled .page-link {
    color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   Empty State / No Results
   -------------------------------------------------------------------------- */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state .icon {
    font-size: 3rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.empty-state h4 {
    font-weight: 600;
    color: var(--color-dark);
}

.empty-state p {
    color: var(--color-muted);
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.bg-soft-primary {
    background-color: rgba(13, 110, 253, 0.08);
}

.text-muted-2 {
    color: #8c98a4;
}

.cursor-pointer {
    cursor: pointer;
}

.object-fit-cover {
    object-fit: cover;
}

.min-h-300 {
    min-height: 300px;
}

/* --------------------------------------------------------------------------
   Responsive Tweaks
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
    :root {
        --font-size-h1: 1.75rem;
        --font-size-h2: 1.35rem;
        --header-height: 60px;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-search .form-control {
        height: 2.8rem;
        font-size: 1rem;
    }

    .hero-search .btn {
        height: 2.8rem;
    }

    .business-detail-header .head-image {
        height: 150px;
    }

    .business-detail-header .overlay h1 {
        font-size: 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-search {
        max-width: 100%;
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        padding: 1rem;
    }

    .category-card .icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}