*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;
    --primary-100: #dbeafe;
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-warm: #fefce8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 8px;
    line-height: 1.4;
    letter-spacing: 0.01em;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-vcard { background: #6366f1; color: #fff; }
.btn-vcard:hover { background: #4f46e5; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }
.btn-danger { background: #ef4444; color: #fff; }
.btn-danger:hover { background: #dc2626; }

.navbar {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: var(--transition);
}
.navbar.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(37, 99, 235, 0.1);
}
.navbar.scrolled .nav-brand { color: #f57c00; }
.navbar.scrolled .nav-brand i { background: var(--primary); color: #fff; }
.navbar.scrolled .nav-links > a { color: var(--text); }
.navbar.scrolled .nav-links > a:hover { color: var(--primary); background: var(--primary-light); }
.navbar.scrolled .nav-toggle span { background: var(--text); }
.navbar.scrolled .btn-nav-admin { border-color: var(--primary); color: var(--primary); }
.navbar.scrolled .btn-nav-admin:hover { background: var(--primary); color: #fff; }
.navbar.no-hero {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(37, 99, 235, 0.1);
}
.navbar.no-hero .nav-brand { color: #f57c00; }
.navbar.no-hero .nav-brand i { background: var(--primary); color: #fff; }
.navbar.no-hero .nav-links > a { color: var(--text); }
.navbar.no-hero .nav-links > a:hover { color: var(--primary); background: var(--primary-light); }
.navbar.no-hero .nav-toggle span { background: var(--text); }
.navbar.no-hero .btn-nav-admin { border-color: var(--primary); color: var(--primary); }
.navbar.no-hero .btn-nav-admin:hover { background: var(--primary); color: #fff; }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}
.nav-brand i {
    font-size: 20px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    backdrop-filter: blur(8px);
}
.nav-brand:hover { text-decoration: none; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links > a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links > a:hover { color: #fff; text-decoration: none; background: rgba(255,255,255,0.15); }
.nav-links > a i { font-size: 14px; }
.nav-dropdown-toggle {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
}
.nav-dropdown-toggle:hover { color: #fff; text-decoration: none; background: rgba(255,255,255,0.15); }
.nav-dropdown-toggle i { font-size: 14px; }
.navbar.scrolled .nav-dropdown-toggle,
.navbar.no-hero .nav-dropdown-toggle { color: var(--text); }
.navbar.scrolled .nav-dropdown-toggle:hover,
.navbar.no-hero .nav-dropdown-toggle:hover { color: var(--primary); background: var(--primary-light); }
.btn-nav-admin {
    border: 2px solid rgba(255,255,255,0.4) !important;
    color: #fff !important;
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(8px);
}
.btn-nav-admin:hover { background: rgba(255,255,255,0.25) !important; border-color: rgba(255,255,255,0.6) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-arrow {
    font-size: 10px !important;
    margin-left: 2px;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 230px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
    padding: 10px 0;
    z-index: 9999;
    border: 1px solid #e5e7eb;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 0;
}
.nav-dropdown:hover > .nav-dropdown-menu {
    display: block;
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
    background: none;
    line-height: 1.5;
}
.nav-dropdown-menu a:hover {
    background: #eff6ff;
    color: #2563eb;
    text-decoration: none;
}
.nav-dropdown-viewall {
    border-top: 1px solid #e2e8f0;
    margin-top: 6px;
    padding-top: 12px;
    color: #2563eb;
    font-weight: 600;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #081d45 0%, #0f2e6b 30%, #1a4fad 60%, #0f2e6b 100%);
    padding: 140px 20px 90px;
    text-align: center;
    overflow: hidden;
    margin-top: -70px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.25;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern-bg.png') center/400px repeat;
    opacity: 0.03;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}
.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.search-form {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    gap: 8px;
}
.search-wrapper {
    flex: 1;
    position: relative;
}
.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
}
.search-input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    background: rgba(255,255,255,0.95);
    color: var(--text);
}
.search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.15); }
.btn-hero-search {
    background: #22c55e;
    color: #fff;
    font-weight: 600;
}
.btn-hero-search:hover {
    background: #16a34a;
    text-decoration: none;
}
.search-page-form .search-wrapper .search-icon { color: var(--text-muted); }
.search-page-form { margin-bottom: 32px; }
.search-page-form .search-input {
    border-color: var(--border);
    background: var(--bg);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
}
.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}
.hero-stat i {
    color: #ffffff;
    font-size: 16px;
}
.hero-cta {
    margin-top: 28px;
}
.hero-cta .btn {
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.section {
    padding: 72px 0;
    position: relative;
}
.section-alt {
    background: var(--bg-alt);
}
.section-cities {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: var(--text);
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.page-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.grid {
    display: grid;
    gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }

.category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--text);
    border: 1px solid var(--border-light);
}
.category-card:hover {
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-100);
}
.category-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}
.category-card:hover .category-icon { transform: scale(1.1); }
.category-info { flex: 1; }
.category-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.category-count { font-size: 13px; color: var(--text-muted); }
.category-arrow { color: var(--text-light); font-size: 14px; transition: var(--transition); }
.category-card:hover .category-arrow { color: var(--primary); transform: translateX(4px); }

.city-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
    display: block;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.city-card:hover {
    text-decoration: none;
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.city-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.city-card:hover .city-image img { transform: scale(1.08); }
.city-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.0) 100%);
}
.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: #fff;
    z-index: 2;
}
.city-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.city-info h3 i { font-size: 14px; color: #fbbf24; }
.city-info span {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.card {
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-100);
}
.card-link { display: block; color: var(--text); }
.card-link:hover { text-decoration: none; }

.card-body { padding: 16px; display: flex; flex-direction: column; flex-grow: 1; }
.card-body.text-center { text-align: center; }
.card-body h3 { font-size: 16px; margin-bottom: 4px; }

.card-image {
    position: relative;
    width: 100%;
    background: var(--bg-alt);
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.card:hover .card-image img { transform: scale(1.05); }
.card-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}
.badge-default { background: var(--bg-alt); color: var(--text-muted); }

.card-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.3; }
.card-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
.tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 10px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}
.tag-city { background: #f0fdf4; color: #16a34a; }
a.tag:hover { background: var(--primary-100); text-decoration: none; }
.card-locality { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.card-locality i { font-size: 10px; }
.card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.card-actions-wrap {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.card-actions-row {
    display: flex;
    gap: 6px;
    justify-content: center;
}
.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 8px;
}
.card-view-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
}

.text-muted { color: var(--text-muted); font-size: 14px; }
.text-center { text-align: center; }

.cta-section {
    padding: 40px 0 80px;
}
.cta-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-card::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.cta-content p {
    color: #bfdbfe;
    font-size: 16px;
    max-width: 480px;
}
.cta-card .btn {
    position: relative;
    z-index: 2;
    background: #fff;
    color: var(--primary);
    font-size: 16px;
    padding: 16px 32px;
    flex-shrink: 0;
}
.cta-card .btn:hover { background: #f8fafc; transform: translateY(-2px); }

.profile-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}
.profile-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
    box-shadow: var(--shadow-md);
}
.profile-image img { width: 100%; height: 100%; object-fit: cover; }
.profile-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: var(--primary);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}
.profile-info h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.profile-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 24px; }
.profile-desc { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 28px; }
.profile-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.filter-form { margin-bottom: 20px; }
.filter-select {
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    background: var(--bg);
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}
.filter-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }

.results-count { color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.page-link:hover { background: var(--primary-light); text-decoration: none; border-color: var(--primary-100); }
.page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.empty-state { text-align: center; padding: 80px 20px; }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; font-size: 16px; }

.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #94a3b8;
    padding: 64px 0 32px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #334155, transparent);
}
.footer h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer h3 i {
    color: var(--primary);
}
.footer p {
    line-height: 1.8;
    font-size: 14px;
    max-width: 360px;
}
.footer h4 {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer ul a {
    color: #94a3b8;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer ul a i { font-size: 10px; color: #475569; }
.footer ul a:hover { color: #fff; text-decoration: none; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 1200px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
    .container { padding: 0 20px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
    .search-form { flex-direction: column; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .cta-card { flex-direction: column; text-align: center; padding: 40px 24px; }
    .cta-content h2 { justify-content: center; }
    .profile-layout { grid-template-columns: 1fr; gap: 24px; }
    .profile-image { max-width: 300px; margin: 0 auto; }
    .section-header-row { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); padding: 20px; box-shadow: var(--shadow-lg); gap: 4px; }
    .nav-links.active { display: flex; }
    .nav-links > a, .nav-dropdown-toggle { color: var(--text) !important; padding: 12px 16px !important; }
    .nav-links > a:hover, .nav-dropdown-toggle:hover { background: var(--primary-light) !important; color: var(--primary) !important; }
    .nav-toggle { display: flex; }
    .btn-nav-admin { border-color: var(--primary) !important; color: var(--primary) !important; background: transparent !important; }
    .nav-dropdown { flex-direction: column; align-items: stretch; }
    .nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: none; padding: 0 0 0 20px; min-width: 100%; display: none; margin-top: 0; background: transparent; }
    .nav-dropdown:hover > .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu a { padding: 8px 16px; font-size: 13px; color: var(--text-muted); }
    .nav-dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }
    .section { padding: 48px 0; }
    .section-title { font-size: 26px; }
    .hero { padding: 120px 16px 60px; }
}

@media (max-width: 600px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .hero-stats { flex-direction: column; align-items: center; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .city-card { height: 180px; }
}

.category-listing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--text);
    border: 1px solid var(--border-light);
}
.category-listing-card:hover {
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-100);
}
.category-listing-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}
.category-listing-card:hover .category-listing-icon {
    background: var(--primary);
    color: #fff;
}
.category-listing-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.category-listing-count {
    font-size: 14px;
    color: var(--text-muted);
}

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.section-header-row .section-text {
    flex: 1;
}
.btn-view-all {
    background: var(--primary-light);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-view-all:hover {
    text-decoration: none;
    background: var(--primary);
    color: #fff;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}
.product-price i {
    font-size: 14px;
    margin-right: 4px;
}
.product-card .card-body {
    text-align: center;
}
.product-card .card-title {
    font-size: 16px;
    font-weight: 600;
}
.product-whatsapp-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
}

.vcard-promo {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.vcard-promo-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--primary);
}
.vcard-promo h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}
.vcard-promo-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}
.vcard-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.vcard-option-card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.vcard-option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.vcard-option-highlight {
    border-color: #f59e0b;
    background: #fffbeb;
}
.vcard-price-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 16px;
    border-radius: 50px;
}
.vcard-option-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}
.vcard-option-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.vcard-option-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.vcard-cta-btn {
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
@media (max-width: 600px) {
    .vcard-options { grid-template-columns: 1fr; }
    .vcard-promo h2 { font-size: 24px; }
}
.listing-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid var(--border-light);
}
.listing-form-wrap h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg);
    color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}
.char-counter {
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 4px;
}
.listing-success {
    text-align: center;
    padding: 40px;
}
.listing-success i {
    font-size: 64px;
    color: var(--whatsapp);
    margin-bottom: 20px;
}
.listing-success h2 {
    font-size: 28px;
    margin-bottom: 12px;
}
.listing-success p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}
