/* DijigoMap Modern Design System v2.3 - Enhanced & Spacious */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Renk Paleti */
    --primary: #000000;       /* Black */
    --primary-hover: #333333; /* Dark Gray */
    --secondary: #64748b;     /* Slate 500 */
    --accent: #2563eb;        /* Blue 600 */
    --accent-hover: #1d4ed8;  /* Blue 700 */
    
    --bg-body: #f8f9fa;       /* Very Light Gray */
    --bg-card: #ffffff;
    
    --text-main: #111111;     /* Nearly Black */
    --text-muted: #666666;    /* Gray */
    --text-light: #9ca3af;    /* Gray 400 */
    
    --border: #eeeeee;        /* Very Light Border */
    
    /* Radius */
    --radius: 12px;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.03);
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-body);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }

/* Layout Utilities */
.page-container {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.flex-wrap { flex-wrap: wrap; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }

.pt-3 { padding-top: 0.75rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }

/* Utilities */
.w-full { width: 100%; }

/* Custom Utilities for Interactions */
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:text-accent:hover { color: var(--accent); }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.duration-300 { transition-duration: 300ms; }

.transform { transform: translateZ(0); }

/* Group Hover Utilities */
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-main { color: var(--text-main); }

/* Custom Dimensions */
.h-title { height: 2.8em; overflow: hidden; }

.h-full { height: 100%; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-32 { width: 8rem; }
.h-32 { height: 8rem; }
.w-auto { width: auto; }

.min-w-0 { min-width: 0; }
.max-w-half { max-width: 50%; }

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }

.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.flex-1 { flex: 1 1 0%; }

.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.bg-white { background-color: white; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-red-50 { background-color: #fef2f2; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-purple-50 { background-color: #faf5ff; }

.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }
.text-purple-600 { color: #9333ea; }
.text-yellow-400 { color: #facc15; }
.text-gray-700 { color: #374151; }

.border-green-100 { border-color: #dcfce7; }
.border-green-200 { border-color: #bbf7d0; }
.border-red-100 { border-color: #fee2e2; }
.border-red-200 { border-color: #fecaca; }
.border-blue-100 { border-color: #dbeafe; }
.border-blue-200 { border-color: #bfdbfe; }
.border-amber-100 { border-color: #fef3c7; }
.border-gray-50 { border-color: #f9fafb; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-t { border-top-width: 1px; }

.p-1 { padding: 0.25rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-soft { box-shadow: var(--shadow-soft); }

.border { border: 1px solid var(--border); }

/* Grid System */
.grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

@media (min-width: 768px) {
    .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
    
    .col-span-1 { grid-column: span 1; }
    .col-span-3 { grid-column: span 3; }
    .col-span-4 { grid-column: span 4; }
    .col-span-5 { grid-column: span 5; }
    .col-span-8 { grid-column: span 8; }
    .col-span-9 { grid-column: span 9; }
    
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .md\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
    .md\:col-span-3 { grid-column: span 3; }
    .md\:col-span-4 { grid-column: span 4; }
    .md\:col-span-5 { grid-column: span 5; }
}

@media (min-width: 1024px) {
    .lg\:col-span-4 { grid-column: span 4; }
    .lg\:col-span-8 { grid-column: span 8; }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
}

/* Card System */
.card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Form System */
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-control, .form-select, .form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    color: var(--text-main);
    transition: all 0.2s;
    height: 46px;
}

.form-control:focus, .form-select:focus, .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background: white;
    border-color: var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Badge System */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.badge-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.badge-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.badge-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }


/* Typography */
.text-tiny { font-size: 0.5rem; }
.text-xs { font-size: 0.75rem; }
.text-xxs { font-size: 0.6rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #a1a1aa; }
.text-gray-500 { color: #737373; }
.text-gray-600 { color: #525252; }
.text-gray-900 { color: #171717; }
.text-white { color: #ffffff; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-main { color: var(--text-main); }

.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.7; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }

/* Navbar Specific */
.navbar {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    width: 32px;
    height: 32px;
    background-color: var(--accent);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background-color 0.2s;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-left: 10px;
}

.nav-link:hover .brand-logo {
    background-color: var(--accent-hover);
}

.nav-menu { display: flex; gap: 4px; }

.nav-item {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.nav-item:hover, .nav-item.active {
    background: #f1f5f9;
    color: var(--primary);
}

.nav-item.highlight {
    background: #eff6ff;
    color: var(--accent);
    font-weight: 600;
}

.nav-item.highlight:hover {
    background: var(--accent);
    color: white;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-icon.blue { background: #eff6ff; color: #3b82f6; }
.stat-icon.red { background: #fef2f2; color: #ef4444; }
.stat-icon.pink { background: #fdf2f8; color: #ec4899; }

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 2px;
}

.stat-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Filter Engine */
.filter-card {
    border-top: 4px solid var(--primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter-grid {
        grid-template-columns: 1.5fr 1.5fr 1fr 1fr auto;
    }
}

.filter-group {
    position: relative;
}

.filter-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.filter-input, .filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--bg-card);
    color: var(--text-main);
    transition: border-color 0.2s;
    height: 42px;
}

.filter-input:focus, .filter-select:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-filter {
    height: 42px;
    background: var(--primary);
    color: white;
    padding: 0 24px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    align-self: end;
}

.btn-filter:hover {
    background: var(--primary-hover);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--text-muted);
    user-select: none;
}

.checkbox-label:hover {
    color: var(--text-main);
}

/* Utilities */
.action-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.mr-2 { margin-right: 0.5rem; }

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-action:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.btn-excel {
    color: #107c41;
    border-color: #d1fae5;
    background: #ecfdf5;
}

.btn-excel:hover {
    background: #107c41;
    color: white;
    border-color: #107c41;
}

/* Table Column Widths */
.col-business { width: 30%; }
.col-category { width: 20%; }
.col-contact { width: 15%; }
.col-seo { width: 20%; }
.col-action { width: 15%; text-align: right; }

/* Modern Table Design - IMPROVED */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: white;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.modern-table thead th {
    background: #f8fafc;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.modern-table tbody tr {
    transition: background-color 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.modern-table tbody tr:last-child {
    border-bottom: none;
}

.modern-table tbody tr:hover {
    background-color: #f8fafc;
}

.modern-table td {
    padding: 12px 16px;
    color: var(--text-main);
    vertical-align: middle;
}

/* Table Content Styles */
.tbl-business-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
    display: block;
}

.tbl-business-url {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.tbl-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #f1f5f9;
    color: var(--text-muted);
}

.tbl-icon-group {
    display: flex;
    gap: 12px;
}

.tbl-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #f8fafc;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.2s;
}

.tbl-icon.active {
    background: white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.tbl-icon.email.active { color: #ea4335; border: 1px solid #fce8e6; background: #fef2f2; }
.tbl-icon.insta.active { color: #e1306c; border: 1px solid #fce7f3; background: #fdf2f8; }
.tbl-icon.phone.active { color: #16a34a; border: 1px solid #dcfce7; background: #f0fdf4; }
.tbl-icon.map.active { color: #2563eb; border: 1px solid #dbeafe; background: #eff6ff; }
.tbl-icon.web.active { color: #0891b2; border: 1px solid #cffafe; background: #ecfeff; }

.tbl-progress-track {
    width: 100px;
    height: 6px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
}

.tbl-progress-bar {
    height: 100%;
    border-radius: 99px;
}

.tbl-seo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tbl-seo-score {
    font-weight: 700;
    width: 35px;
    font-size: 0.9rem;
}

.tbl-empty-state {
    padding: 80px;
    text-align: center;
    color: var(--text-muted);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-link.disabled {
    border: none;
    background: transparent;
    cursor: default;
}

/* Footer */
.site-footer {
    background: white;
    border-top: 1px solid var(--border);
    margin-top: 60px;
    padding-top: 60px;
}

.site-footer .page-container {
    margin-top: 0;
    margin-bottom: 0;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.footer-heading {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    background: #f8fafc;
    border-top: 1px solid var(--border);
    padding: 24px 0;
    margin-top: 60px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--text-main);
}

/* Custom Utilities for Interactions */
.transform { transform: translate(0, 0); }
.transition-transform { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-main { color: var(--accent); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:text-accent:hover { color: var(--accent); }
.duration-300 { transition-duration: 300ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.h-title { height: 2.5em; }
