/* shadcn-inspired system layer for VizesizGez.com
   Maps the PHP/Bootstrap views to a neutral, component-first UI language. */
:root {
    --background: #ffffff;
    --foreground: #020817;
    --card: #ffffff;
    --card-foreground: #020817;
    --popover: #ffffff;
    --popover-foreground: #020817;
    --primary: #0f172a;
    --primary-foreground: #f8fafc;
    --secondary: #f8fafc;
    --secondary-foreground: #0f172a;
    --muted: #f8fafc;
    --muted-foreground: #64748b;
    --accent: #f1f5f9;
    --accent-foreground: #0f172a;
    --destructive: #ef4444;
    --destructive-foreground: #fef2f2;
    --border: #e2e8f0;
    --input: #e2e8f0;
    --ring: #0f172a;
    --radius: 0.5rem;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 48px rgba(15, 23, 42, 0.10);
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "Fira Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(15, 23, 42, 0.04), transparent 26rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    color: var(--foreground) !important;
    font-family: var(--font-sans) !important;
    letter-spacing: 0 !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(to right, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 58%);
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 4px; }
a:hover { color: var(--foreground); }
::selection { background: #dbeafe; color: #0f172a; }

.container, .container-fluid {
    --bs-gutter-x: 1.5rem;
}
.main-content {
    background: transparent !important;
    min-height: 62vh;
}
.main-content > .container.py-4 {
    padding-top: 2rem !important;
    padding-bottom: 3rem !important;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2000;
    transform: translateY(-140%);
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius);
    padding: 0.625rem 0.875rem;
    box-shadow: var(--shadow-md);
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, h4, h5, h6,
.page-title, .section-title, .hero-title, .display-1, .display-2, .display-3, .display-4 {
    color: var(--foreground) !important;
    font-family: var(--font-sans) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.1 !important;
}
p, .lead, .text-muted, .muted, .card-text, .hero-subtitle, .section-subtitle {
    color: var(--muted-foreground) !important;
}
code, pre, kbd { font-family: var(--font-mono) !important; }

/* shadcn primitives */
.card,
.admin-card,
.stat-card,
.dashboard-card,
.content-card,
.info-card,
.feature-card,
.blog-card,
.country-card,
.city-card,
.hotel-card,
.restaurant-card,
.tour-card,
.review-card,
.media-card,
.gallery-card,
.contact-card,
.auth-card,
.login-card,
.profile-card,
.newsletter-form-wrapper,
.newsletter-sidebar,
.filter-sidebar,
.search-card,
.pagination-wrapper,
.table-container,
.settings-card,
.form-card,
.widget,
.panel,
.box {
    background: var(--card) !important;
    color: var(--card-foreground) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm) !important;
    overflow: hidden;
}
.card:hover,
.feature-card:hover,
.blog-card:hover,
.country-card:hover,
.city-card:hover,
.hotel-card:hover,
.restaurant-card:hover,
.tour-card:hover {
    box-shadow: var(--shadow-md) !important;
    transform: translateY(-2px);
}
.card-header,
.card-footer,
.admin-card-header,
.table-header,
.modal-header,
.modal-footer {
    background: var(--muted) !important;
    border-color: var(--border) !important;
    color: var(--foreground) !important;
}
.card-body { color: var(--foreground); }

.badge,
.tag,
.status-badge,
.category-badge,
.continent-badge,
.visa-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border: 1px solid var(--border) !important;
    border-radius: 999px !important;
    background: var(--secondary) !important;
    color: var(--secondary-foreground) !important;
    font-weight: 600 !important;
    line-height: 1;
}
.badge.bg-primary,
.badge.bg-success,
.badge.bg-info,
.badge.bg-warning,
.badge.bg-danger {
    background: var(--primary) !important;
    color: var(--primary-foreground) !important;
}

.btn,
button,
[type="button"],
[type="submit"],
[type="reset"] {
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 150ms ease !important;
}
.btn:not(.btn-link),
button:not(.btn-link) {
    min-height: 2.5rem;
}
.btn-primary,
.btn-login,
.btn-dark,
.btn-success,
.btn-info,
.btn-gradient,
.search-btn,
.newsletter-form button[type="submit"] {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--primary-foreground) !important;
    box-shadow: var(--shadow-sm) !important;
}
.btn-primary:hover,
.btn-login:hover,
.btn-dark:hover,
.btn-success:hover,
.btn-info:hover,
.btn-gradient:hover,
.search-btn:hover,
.newsletter-form button[type="submit"]:hover {
    background: #1e293b !important;
    border-color: #1e293b !important;
    color: #fff !important;
    transform: translateY(-1px);
}
.btn-outline-primary,
.btn-outline-secondary,
.btn-light,
.btn-secondary {
    background: var(--background) !important;
    border-color: var(--border) !important;
    color: var(--foreground) !important;
}
.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-light:hover,
.btn-secondary:hover {
    background: var(--accent) !important;
    border-color: var(--border) !important;
    color: var(--accent-foreground) !important;
}
.btn-danger,
.btn-outline-danger:hover {
    background: var(--destructive) !important;
    border-color: var(--destructive) !important;
    color: var(--destructive-foreground) !important;
}
.btn-link { color: var(--foreground) !important; text-decoration: none !important; }

.form-control,
.form-select,
.form-check-input,
.input-group-text,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="url"],
input[type="tel"] {
    background: var(--background) !important;
    color: var(--foreground) !important;
    border: 1px solid var(--input) !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
}
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
textarea:focus,
input:focus,
select:focus,
button:focus-visible,
a:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible {
    border-color: var(--ring) !important;
    outline: 2px solid transparent !important;
    box-shadow: 0 0 0 2px var(--background), 0 0 0 4px rgba(15, 23, 42, 0.22) !important;
}
.form-label, label { color: var(--foreground) !important; font-weight: 600; }
.form-text, small { color: var(--muted-foreground) !important; }
.input-group > * { min-height: 2.5rem; }

.dropdown-menu,
.popover,
.tooltip-inner,
.modal-content,
.toast {
    background: var(--popover) !important;
    color: var(--popover-foreground) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-lg) !important;
}
.dropdown-item {
    border-radius: calc(var(--radius) - 2px) !important;
    color: var(--foreground) !important;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    background: var(--accent) !important;
    color: var(--accent-foreground) !important;
    transform: none !important;
}
.dropdown-divider { border-color: var(--border) !important; }

.alert {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    background: var(--card) !important;
    color: var(--foreground) !important;
    box-shadow: var(--shadow-sm) !important;
}
.alert-success { border-color: #bbf7d0 !important; }
.alert-danger, .alert-error { border-color: #fecaca !important; }
.alert-warning { border-color: #fde68a !important; }
.alert-info { border-color: #bfdbfe !important; }

.table,
.dataTable {
    color: var(--foreground) !important;
    border-color: var(--border) !important;
    vertical-align: middle;
}
.table > :not(caption) > * > *,
.dataTable > :not(caption) > * > * {
    background: transparent !important;
    border-bottom-color: var(--border) !important;
    color: var(--foreground) !important;
}
.table thead th,
.dataTable thead th {
    background: var(--muted) !important;
    color: var(--muted-foreground) !important;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em !important;
}
.table tbody tr:hover { background: var(--muted) !important; }

.nav-tabs, .nav-pills { gap: .35rem; border-color: var(--border) !important; }
.nav-tabs .nav-link,
.nav-pills .nav-link,
.segmented-control .btn {
    border-radius: var(--radius) !important;
    color: var(--muted-foreground) !important;
    border: 1px solid transparent !important;
}
.nav-tabs .nav-link.active,
.nav-pills .nav-link.active,
.segmented-control .active {
    background: var(--background) !important;
    border-color: var(--border) !important;
    color: var(--foreground) !important;
    box-shadow: var(--shadow-sm) !important;
}

/* Header */
.modern-header,
.shadcn-header {
    position: sticky !important;
    top: 0;
    z-index: 1030;
    width: 100%;
    background: rgba(255, 255, 255, 0.86) !important;
    color: var(--foreground) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: none !important;
    backdrop-filter: blur(18px) saturate(180%);
    padding: .75rem 0 !important;
}
.modern-header .navbar-brand,
.shadcn-header .navbar-brand {
    color: var(--foreground) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    gap: .65rem;
}
.brand-mark,
.modern-header .brand-icon,
.footer-brand-icon,
.sidebar-brand i {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius) !important;
    background: var(--primary) !important;
    color: var(--primary-foreground) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 0 !important;
}
.brand-logo { max-height: 2.25rem; width: auto; }
.modern-header .nav-link,
.shadcn-header .nav-link {
    color: var(--muted-foreground) !important;
    border-radius: var(--radius) !important;
    padding: .55rem .75rem !important;
    margin: 0 .1rem !important;
    font-size: .92rem !important;
    font-weight: 600 !important;
}
.modern-header .nav-link:hover,
.modern-header .nav-link.active,
.shadcn-header .nav-link:hover,
.shadcn-header .nav-link.active {
    background: var(--accent) !important;
    color: var(--foreground) !important;
}
.modern-header .btn-login,
.shadcn-header .btn-login {
    border: 1px solid var(--primary) !important;
    padding: .55rem .9rem !important;
}
.modern-header .navbar-toggler,
.shadcn-header .navbar-toggler {
    background: var(--background) !important;
    border: 1px solid var(--border) !important;
    box-shadow: none !important;
}
.modern-header .navbar-toggler-icon,
.shadcn-header .navbar-toggler-icon {
    filter: invert(1);
}
.user-avatar,
.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 999px !important;
    background: var(--primary) !important;
    color: var(--primary-foreground) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.admin-badge { border-radius: 999px; background: var(--muted); color: var(--foreground); padding: .2rem .45rem; font-size: .68rem; }

/* Footer */
.modern-footer,
.shadcn-footer {
    background: var(--background) !important;
    color: var(--foreground) !important;
    border-top: 1px solid var(--border) !important;
    padding: 3rem 0 1.25rem !important;
    margin-top: 3rem !important;
}
.modern-footer::before,
.modern-footer::after { display: none !important; }
.footer-brand-text,
.footer-section-title,
.modern-footer h1,
.modern-footer h2,
.modern-footer h3,
.modern-footer h4,
.modern-footer h5 {
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    color: var(--foreground) !important;
}
.footer-section-title::after { display: none !important; }
.footer-links a,
.footer-bottom-links a,
.footer-contact-item,
.modern-footer p,
.modern-footer small {
    color: var(--muted-foreground) !important;
}
.footer-links a:hover,
.footer-bottom-links a:hover { color: var(--foreground) !important; transform: none !important; }
.social-link,
.footer-contact-icon,
#scrollToTop,
.back-to-top {
    border: 1px solid var(--border) !important;
    background: var(--background) !important;
    color: var(--foreground) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm) !important;
}
.social-link:hover,
#scrollToTop:hover,
.back-to-top:hover {
    background: var(--accent) !important;
    color: var(--foreground) !important;
    transform: translateY(-1px) !important;
}

/* Hero and page sections */
.hero-section,
.hero,
.page-hero,
.blog-hero,
.country-hero,
.city-hero,
.hotel-hero,
.restaurant-hero,
.tour-hero,
.search-hero,
.contact-hero,
.about-hero,
.faq-hero,
.newsletter-section,
.cta-section,
.section-gradient,
.banner,
.jumbotron,
[class*="hero-"] {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    color: var(--foreground) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.hero-section::before,
.hero-section::after,
.page-hero::before,
.page-hero::after,
[class*="hero"]::before,
[class*="hero"]::after {
    opacity: .18 !important;
}
.hero-title,
.hero h1,
.page-hero h1,
[class*="hero"] h1 {
    color: var(--foreground) !important;
    text-shadow: none !important;
}
.hero-subtitle,
.hero p,
.page-hero p,
[class*="hero"] p {
    color: var(--muted-foreground) !important;
    text-shadow: none !important;
}
.hero-image,
.featured-image,
.cover-image,
.card-img-top,
.blog-image,
.country-image,
.city-image,
.hotel-image,
.restaurant-image,
.tour-image {
    border-radius: var(--radius) !important;
    box-shadow: none !important;
    border: 1px solid var(--border);
    overflow: hidden;
}

section,
.page-section,
.content-section,
.featured-section,
.popular-section,
.blog-section,
.countries-section,
.cities-section,
.hotels-section,
.restaurants-section {
    background-color: transparent !important;
}
.section-header,
.page-header:not(.top-header .page-header) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

/* Auth */
.auth-wrapper,
.auth-page,
.login-page,
.register-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%) !important;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
}
.auth-card,
.login-card {
    width: min(100%, 28rem);
    padding: 1.5rem !important;
}

/* Admin */
.sidebar {
    background: var(--background) !important;
    border-right: 1px solid var(--border) !important;
    box-shadow: none !important;
}
.sidebar-header,
.sidebar-footer {
    border-color: var(--border) !important;
    background: var(--background) !important;
}
.sidebar-brand,
.sidebar .nav-link,
.sidebar .user-name { color: var(--foreground) !important; }
.sidebar .nav-link {
    border-radius: var(--radius) !important;
    margin: .15rem .75rem !important;
    padding: .62rem .75rem !important;
    color: var(--muted-foreground) !important;
    border: 1px solid transparent !important;
}
.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background: var(--accent) !important;
    color: var(--foreground) !important;
    border-color: var(--border) !important;
    transform: none !important;
}
.sidebar .nav-section-title {
    color: var(--muted-foreground) !important;
    font-size: .68rem !important;
    letter-spacing: .08em !important;
    text-transform: uppercase;
    padding: 1rem 1.5rem .35rem !important;
}
.top-header {
    background: rgba(255,255,255,.88) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: none !important;
    backdrop-filter: blur(16px);
}
.main-content.sidebar-open,
.main-content { background: transparent !important; }
.page-wrapper { background: transparent !important; padding-top: 1.5rem !important; }
.page-title { font-size: clamp(1.5rem, 2vw, 2rem) !important; }
.search-bar {
    background: var(--background) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
}
.header-icon-btn,
.toggle-sidebar-btn {
    background: var(--background) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    color: var(--foreground) !important;
    box-shadow: var(--shadow-sm) !important;
}
.header-icon-btn:hover,
.toggle-sidebar-btn:hover { background: var(--accent) !important; }

/* Pagination */
.pagination .page-link,
.page-item .page-link {
    background: var(--background) !important;
    color: var(--foreground) !important;
    border-color: var(--border) !important;
    border-radius: var(--radius) !important;
    margin: 0 .125rem;
}
.pagination .page-item.active .page-link,
.page-item.active .page-link {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--primary-foreground) !important;
}

/* Utilities and hard overrides for legacy inline-heavy pages */
.bg-primary,
.bg-gradient,
.bg-success,
.bg-info,
.bg-warning,
.bg-danger {
    background-color: var(--primary) !important;
    background-image: none !important;
}
.text-primary,
.text-info,
.text-success { color: var(--foreground) !important; }
.text-danger { color: var(--destructive) !important; }
.shadow,
.shadow-sm,
.shadow-lg,
.shadow-xl { box-shadow: var(--shadow-sm) !important; }
.rounded,
.rounded-1,
.rounded-2,
.rounded-3,
.rounded-4,
.rounded-pill { border-radius: var(--radius) !important; }
.border { border-color: var(--border) !important; }

[style*="linear-gradient"],
[style*="radial-gradient"] {
    background-image: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}
[style*="box-shadow"] { box-shadow: var(--shadow-sm) !important; }
[style*="border-radius"] { border-radius: var(--radius) !important; }

/* Datatables */
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: .45rem .65rem !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: var(--radius) !important;
    border: 1px solid var(--border) !important;
    background: var(--background) !important;
    color: var(--foreground) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--primary) !important;
    color: var(--primary-foreground) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .modern-header .navbar-collapse,
    .shadcn-header .navbar-collapse {
        margin-top: .75rem;
        background: var(--popover) !important;
        border: 1px solid var(--border) !important;
        border-radius: var(--radius) !important;
        box-shadow: var(--shadow-lg) !important;
        padding: .75rem !important;
    }
    .modern-header .nav-link,
    .shadcn-header .nav-link { color: var(--foreground) !important; }
    .sidebar { transform: translateX(-100%); transition: transform 180ms ease; }
    .sidebar.show { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
/* Legacy page token takeover: keeps late inline/page styles on the shadcn scale. */
:root {
    --primary-gradient: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    --secondary-gradient: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    --primary-color: #0f172a !important;
    --primary-rgb: 15, 23, 42 !important;
    --secondary-color: #64748b !important;
    --accent-color: #f1f5f9 !important;
    --text-main: #020817 !important;
    --text-dark: #020817 !important;
    --text-muted: #64748b !important;
    --border-color: #e2e8f0 !important;
    --card-shadow: var(--shadow-sm) !important;
    --shadow-soft: var(--shadow-sm) !important;
    --shadow-hover: var(--shadow-md) !important;
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
    --shadow-lg: 0 18px 48px rgba(15, 23, 42, 0.10) !important;
    --border-radius-xl: var(--radius) !important;
    --border-radius-lg: var(--radius) !important;
    --border-radius-md: var(--radius) !important;
}

.bg-gradient-primary,
.bg-gradient-dark,
.bg-gradient-overlay,
.bg-gradient-to-t,
.primary-gradient,
.gradient-bg,
.hero-overlay,
.overlay-gradient {
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.96)) !important;
    color: var(--foreground) !important;
}

.hero-section img.object-fit-cover,
[class*="hero"] img.object-fit-cover {
    filter: none !important;
    opacity: .14 !important;
}

.glass-badge,
.glass-card,
.floating-card,
.stat-box,
.info-box,
.maintenance-box,
.feature-item,
.timeline-item,
.content-box {
    background: var(--card) !important;
    border: 1px solid var(--border) !important;
    color: var(--foreground) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm) !important;
    backdrop-filter: none !important;
}

.back-to-top,
#scrollToTop {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1050;
}
.back-to-top.show,
#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-section.card,
.newsletter-inline.card,
.newsletter-sidebar.card {
    margin: 2rem 0;
}
.newsletter-form .input-group {
    gap: .5rem;
}
.newsletter-form .input-group > .form-control,
.newsletter-form .input-group > .input-group-text,
.newsletter-form .input-group > .btn {
    border-radius: var(--radius) !important;
}

@media (max-width: 575.98px) {
    .newsletter-form .input-group {
        display: grid;
    }
    .newsletter-form .input-group > * {
        width: 100% !important;
    }
}

/* Context fixes for legacy utility classes on light shadcn surfaces. */
.hero .text-white,
.hero-section .text-white,
.page-hero .text-white,
.country-hero .text-white,
.city-hero .text-white,
.hotel-hero .text-white,
.restaurant-hero .text-white,
.tour-hero .text-white,
.blog-hero .text-white,
[class*="hero"] .text-white,
.newsletter-section .text-white,
.bg-gradient-primary.text-white,
.bg-gradient-dark.text-white {
    color: var(--foreground) !important;
}

.hero .btn-primary,
.hero-section .btn-primary,
[class*="hero"] .btn-primary {
    color: var(--primary-foreground) !important;
}

.bg-dark,
.card.bg-dark,
.admin-shell .bg-dark {
    background: var(--card) !important;
    color: var(--foreground) !important;
    border: 1px solid var(--border) !important;
}
.bg-dark .text-white,
.card.bg-dark .text-white,
.admin-shell .bg-dark .text-white {
    color: var(--foreground) !important;
}
