/**
 * 7net Business Directory - Modern Redesign
 * "Tel Aviv Modern" — warm, clean, punchy
 * @version 3.0
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --primary: #E8A838;
    --primary-dark: #D4922A;
    --primary-darker: #B87A1E;
    --primary-light: #FFF0D4;
    --primary-lighter: #FFF8EB;

    --secondary: #1C1C2E;
    --secondary-dark: #14142A;
    --secondary-light: #2A2A42;

    --accent: #d4af37;
    --accent-light: #e8d48a;

    --white: #ffffff;
    --black: #1a1a1a;
    --neutral-50: #FAFAF7;
    --neutral-100: #F3F3EE;
    --neutral-200: #E8E8E2;
    --neutral-300: #D4D4CC;
    --neutral-400: #A3A39B;
    --neutral-500: #737370;
    --neutral-600: #525250;
    --neutral-700: #3D3D3B;
    --neutral-800: #262625;
    --neutral-900: #171716;

    --success: #16a34a;
    --success-light: #dcfce7;
    --error: #dc2626;
    --error-light: #fee2e2;
    --warning: #d97706;
    --warning-light: #fef3c7;
    --info: #0284c7;
    --info-light: #e0f2fe;
    --danger: #dc2626;

    --shadow-sm: 0 1px 3px rgba(28,28,46,0.04);
    --shadow-md: 0 4px 20px rgba(28,28,46,0.06);
    --shadow-lg: 0 8px 30px rgba(28,28,46,0.08);
    --shadow-xl: 0 16px 50px rgba(28,28,46,0.10);
    --shadow-gold: 0 4px 20px rgba(232,168,56,0.25);
    --shadow-warm: 0 8px 30px rgba(232,168,56,0.12);
    --shadow-card-hover: 0 20px 60px rgba(28,28,46,0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --font-family: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-height: 80px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-800);
    background: var(--neutral-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--primary); }

::selection {
    background: var(--primary);
    color: white;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   Header — Glassmorphism
   ======================================== */
.header {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(28,28,46,0.06);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all 0.3s ease;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    gap: 2rem;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
}

.header__logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, #F0C060 100%);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.header__logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header__nav-link {
    padding: 0.55rem 1rem;
    color: var(--neutral-600);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.header__nav-link:hover {
    color: var(--primary-dark);
    background: var(--primary-lighter);
}

.header__nav-link--active {
    color: var(--white);
    background: var(--secondary);
    font-weight: 600;
}

.header__nav-link--active:hover {
    color: var(--white);
    background: var(--secondary-light);
}

/* Header Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__mobile-actions {
    display: none !important;
}

.header__toggle {
    display: none;
    background: var(--secondary);
    border: none;
    font-size: 1.15rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.55rem 0.7rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.header__toggle:hover {
    background: var(--secondary-light);
    transform: scale(1.05);
}

/* ========================================
   Header Mobile
   ======================================== */
@media (max-width: 900px) {
    :root { --header-height: 60px; }

    .header { background: rgba(255,255,255,0.92); }

    .site-logo-img { max-height: 46px; max-width: 130px; }

    .header__actions { display: none !important; }

    .header__nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0; right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        z-index: 999;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .header__nav.active {
        display: flex !important;
        animation: navSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes navSlideIn {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .header__nav-link {
        width: 100%;
        text-align: center;
        padding: 0.9rem;
        color: rgba(255,255,255,0.85);
        border-radius: var(--radius-md);
        margin: 0.15rem 0;
        font-size: 1rem;
    }

    .header__nav-link:hover {
        background: rgba(232,168,56,0.15);
        color: var(--primary);
    }

    .header__nav-link--active {
        background: var(--primary);
        color: var(--secondary);
        font-weight: 600;
    }

    .header__nav.active .header__mobile-actions {
        display: flex !important;
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 0.75rem;
        margin-top: 0.75rem;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .header__mobile-actions .btn {
        width: 100%;
        justify-content: center;
        color: #fff !important;
        border-color: rgba(255,255,255,0.3) !important;
        background: transparent !important;
    }

    .header__mobile-actions .btn--primary {
        background: var(--primary) !important;
        color: var(--secondary) !important;
        border-color: var(--primary) !important;
    }

    .header__mobile-actions .btn:hover {
        background: var(--primary) !important;
        color: var(--secondary) !important;
        border-color: var(--primary) !important;
    }

    .header__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root { --header-height: 55px; }
    .header__inner { padding: 0.4rem 0; }
    .site-logo-img { max-height: 40px; max-width: 110px; }
}

/* ========================================
   Buttons — Pill-shaped
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn--primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,168,56,0.35);
    color: var(--secondary);
}

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

.btn--secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--secondary);
    border-color: var(--neutral-300);
}

.btn--outline:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

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

.btn--white:hover { background: var(--neutral-100); }

.btn--ghost {
    background: transparent;
    color: var(--neutral-700);
    border-color: var(--neutral-200);
}

.btn--ghost:hover { background: var(--neutral-100); }

.btn--sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ========================================
   Forms
   ======================================== */
.form__group { margin-bottom: 1.25rem; }

.form__label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--neutral-700);
    font-size: 0.9rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--neutral-800);
    background: var(--white);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form__input:hover,
.form__select:hover,
.form__textarea:hover {
    border-color: var(--neutral-300);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,168,56,0.15);
}

.form__input::placeholder { color: var(--neutral-400); }

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23737370'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 1.25rem;
    padding-left: 2.5rem;
}

.form__hint { margin-top: 0.5rem; font-size: 0.85rem; color: var(--neutral-500); }
.form__error { margin-top: 0.5rem; font-size: 0.85rem; color: var(--error); }

/* ========================================
   Search Box — Glass
   ======================================== */
.search-box {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    box-shadow: 0 8px 40px rgba(28,28,46,0.12);
    border: 1px solid rgba(255,255,255,0.5);
}

.search-box__form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.search-box__group {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-box__input {
    width: 100%;
    padding: 0.9rem 1.15rem;
    padding-right: 2.75rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--transition-fast);
    background: var(--white);
}

.search-box__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,168,56,0.15);
}

.search-box__icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-400);
}

.search-box__select {
    min-width: 165px;
    padding: 0.9rem 1.15rem;
    padding-left: 2.5rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    background: var(--white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23737370'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 1.15rem;
    cursor: pointer;
    outline: none;
    transition: all var(--transition-fast);
}

.search-box__select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,168,56,0.15);
}

.search-box__btn {
    padding: 0.9rem 1.75rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.search-box__btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28,28,46,0.2);
}

@media (max-width: 768px) {
    .search-box__form { flex-direction: column; }
    .search-box__group, .search-box__select { width: 100%; min-width: auto; }
    .search-box__btn { width: 100%; justify-content: center; }
}

/* Search Input Group */
.search-box__input-group {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-box__input-group .search-box__input {
    width: 100%;
    padding: 0.9rem 1.15rem;
    padding-right: 2.75rem;
}

.search-box__input-group .search-box__icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-400);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .search-box__input-group { width: 100%; min-width: auto; }
}

/* ========================================
   Nearby Button
   ======================================== */
.nearby-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--secondary);
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.75rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 25px rgba(28,28,46,0.12);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.5);
}

.nearby-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232,168,56,0.15), transparent);
    transition: left 0.6s ease;
}

.nearby-btn:hover::before { left: 100%; }

.nearby-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(28,28,46,0.18);
    color: var(--secondary);
    background: var(--white);
}

.nearby-btn i:first-child {
    font-size: 1.2rem;
    color: var(--primary-dark);
    animation: pulse-icon 2.5s ease-in-out infinite;
}

.nearby-btn i:last-child {
    font-size: 0.8rem;
    transition: transform 0.3s;
    opacity: 0.6;
}

.nearby-btn:hover i:last-child {
    transform: translateX(-5px);
    opacity: 1;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.hero__search {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__search .search-box { width: 100%; }

@media (max-width: 768px) {
    .nearby-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
}

/* ========================================
   Hero — Mesh Gradient + Dot Pattern
   ======================================== */
.hero {
    background: var(--secondary);
    color: var(--white);
    padding: 5rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}

/* Slideshow backgrounds */
.hero--slideshow {
    background: #1a1a2e;
}

.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero__slide--active {
    opacity: 1;
}

.hero__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26,26,46,0.85) 0%,
        rgba(26,26,46,0.65) 40%,
        rgba(26,26,46,0.80) 100%
    );
}

/* Fallback gradient when no slideshow */
.hero:not(.hero--slideshow)::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(232,168,56,0.18) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(240,192,96,0.10) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 50% 80%, rgba(232,168,56,0.07) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.75; }
    100% { opacity: 1; }
}

.hero:not(.hero--slideshow)::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.035;
    background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
    background-size: 24px 24px;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,168,56,0.15);
    color: var(--primary);
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(232,168,56,0.25);
    backdrop-filter: blur(8px);
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.hero__title span {
    color: var(--primary);
    position: relative;
}

.hero__subtitle {
    font-size: 1.15rem;
    opacity: 0.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero__search {
    max-width: 700px;
    margin: 0 auto;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.hero__stat { text-align: center; }

.hero__stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}

.hero__stat-label {
    font-size: 0.85rem;
    opacity: 0.55;
    font-weight: 400;
    margin-top: 0.15rem;
}

/* Hero responsive */
@media (max-width: 768px) {
    .hero { padding: 3rem 0 3.5rem; }
    .hero__badge { font-size: 0.75rem; padding: 0.4rem 0.85rem; margin-bottom: 1.25rem; }
    .hero__title { font-size: 1.6rem !important; margin-bottom: 0.75rem; line-height: 1.3; }
    .hero__subtitle { font-size: 0.95rem; margin-bottom: 1.75rem; padding: 0 0.5rem; line-height: 1.5; }
    .hero__search { padding: 0 0.5rem; }
    .hero__stats { margin-top: 2.5rem; gap: 2rem; }
    .hero__stat-value { font-size: 1.8rem; }
    .hero__stat-label { font-size: 0.8rem; }
    .search-box { margin-top: 0.5rem; }
    .search-box__form { flex-direction: column; gap: 0.75rem; }
    .search-box__input { font-size: 0.95rem; }
    .search-box__select { width: 100%; }
    .search-box__btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hero { padding: 2rem 0 2.5rem; }
    .hero__badge { font-size: 0.7rem; padding: 0.35rem 0.7rem; margin-bottom: 1rem; }
    .hero__title { font-size: 1.35rem !important; }
    .hero__subtitle { font-size: 0.85rem; margin-bottom: 1.25rem; }
    .hero__stats { flex-direction: row; justify-content: space-around; }
    .hero__stat-value { font-size: 1.5rem; }
}

@media (min-width: 992px) {
    .search-box { max-width: 950px; margin: 0 auto; }
    .search-box__form { flex-wrap: nowrap; gap: 0.6rem; }
    .search-box__input-group { flex: 1 1 180px; min-width: 150px; }
    .search-box__select { flex: 0 0 auto; min-width: 130px; }
    .search-box__btn { flex-shrink: 0; padding: 0.9rem 1.5rem; }
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: var(--secondary);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(232,168,56,0.10) 0%, transparent 60%);
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.page-header__content { position: relative; z-index: 1; }

.page-header__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.page-header__subtitle {
    font-size: 1.05rem;
    opacity: 0.65;
    font-weight: 400;
}

/* ========================================
   Sections
   ======================================== */
.section { padding: 4.5rem 0; }
.section--gray { background: var(--neutral-100); }
.section--gold { background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--white) 100%); }

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.section__title span { color: var(--primary-dark); }

.section__subtitle {
    font-size: 1.05rem;
    color: var(--neutral-500);
    font-weight: 400;
}

/* ========================================
   Business Cards — Image zoom on hover
   ======================================== */
.business-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.business-card { display: flex; }

.business-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px);
    border-color: rgba(232,168,56,0.12);
}

.business-card__image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    overflow: hidden;
}

.business-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.business-card:hover .business-card__image img {
    transform: scale(1.06);
}

.business-card__badges {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.4rem;
}

.business-card__badge {
    padding: 0.3rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
}

.business-card__badge--featured {
    background: rgba(232,168,56,0.9);
    color: var(--secondary);
}

.business-card__badge--verified {
    background: rgba(22,163,74,0.9);
    color: var(--white);
}

.business-card__logo {
    position: absolute;
    bottom: -26px;
    right: 1.25rem;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid var(--white);
}

.business-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-card__body {
    padding: 2.25rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.business-card__category {
    font-size: 0.72rem;
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.5rem;
}

.business-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}

.business-card__title a { color: inherit; text-decoration: none; }
.business-card__title a:hover { color: var(--primary-dark); }

.business-card__desc {
    font-size: 0.88rem;
    color: var(--neutral-500);
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.business-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--neutral-500);
    padding-top: 0.9rem;
    border-top: 1px solid var(--neutral-100);
}

.business-card__meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.business-card__meta i { color: var(--primary); font-size: 0.8rem; }

.business-card__rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary);
}

/* ========================================
   Category Cards — Animated icon
   ======================================== */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem 1rem;
    background: var(--white);
    border: 1.5px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-warm);
    transform: translateY(-5px);
}

.category-card__icon {
    width: 64px;
    height: 64px;
    background: var(--neutral-100);
    color: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    transition: all var(--transition-spring);
}

.category-card:hover .category-card__icon {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.1) rotate(-3deg);
    box-shadow: var(--shadow-gold);
}

.category-card__name {
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.2rem;
    text-align: center;
    font-size: 0.95rem;
}

.category-card__count {
    font-size: 0.82rem;
    color: var(--neutral-400);
}

/* Category Large */
.category-card-large {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1.5px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

.category-card-large:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-warm);
    transform: translateY(-3px);
}

.category-card-large__icon {
    width: 56px;
    height: 56px;
    background: var(--neutral-100);
    color: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.category-card-large:hover .category-card-large__icon {
    background: var(--primary);
    color: var(--secondary);
}

.category-card-large__content { flex: 1; }

.category-card-large__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.2rem;
}

.category-card-large__desc {
    font-size: 0.88rem;
    color: var(--neutral-500);
    margin-bottom: 0.4rem;
}

.category-card-large__count {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.category-card-large__arrow {
    color: var(--neutral-300);
    font-size: 1.15rem;
    transition: all var(--transition-fast);
}

.category-card-large:hover .category-card-large__arrow {
    color: var(--primary);
    transform: translateX(-5px);
}

/* ========================================
   Grids
   ======================================== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.category-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem;
}

@media (max-width: 1024px) { .category-grid { grid-template-columns: repeat(3, 1fr) !important; } }

@media (max-width: 768px) { .category-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; } }

@media (max-width: 480px) {
    .category-grid { gap: 0.6rem; }
    .category-card { padding: 1rem 0.5rem; }
    .category-card__icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 0.6rem; }
    .category-card__name { font-size: 0.85rem; }
    .category-card__count { font-size: 0.75rem; }
}

.categories-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
}

@media (max-width: 640px) {
    .business-grid, .categories-page-grid { grid-template-columns: 1fr; }
}

/* ========================================
   Filters
   ======================================== */
.filters-section {
    background: var(--white);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--neutral-100);
    box-shadow: var(--shadow-sm);
}

.filters-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.filters-form .form__input,
.filters-form .form__select {
    flex: 1;
    min-width: 160px;
}

@media (max-width: 768px) {
    .filters-form { flex-direction: column; }
    .filters-form .form__input,
    .filters-form .form__select,
    .filters-form .btn { width: 100%; }
}

/* ========================================
   Alerts
   ======================================== */
.alert {
    padding: 0.9rem 1.15rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert--success { background: var(--success-light); color: #166534; border: 1px solid #86efac; }
.alert--error { background: var(--error-light); color: #991b1b; border: 1px solid #fca5a5; }
.alert--warning { background: var(--warning-light); color: #854d0e; border: 1px solid #fde047; }
.alert--info { background: var(--info-light); color: #075985; border: 1px solid #7dd3fc; }

/* ========================================
   Badges
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge--primary { background: var(--primary-light); color: var(--primary-dark); }
.badge--success { background: var(--success-light); color: var(--success); }
.badge--warning { background: var(--warning-light); color: var(--warning); }
.badge--error { background: var(--error-light); color: var(--error); }

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.status-badge--active { background: var(--success-light); color: var(--success); }
.status-badge--pending { background: var(--warning-light); color: var(--warning); }
.status-badge--inactive { background: var(--error-light); color: var(--error); }

/* ========================================
   Pagination
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2.5rem;
}

.pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--neutral-600);
    background: var(--white);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.pagination__item:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    background: var(--primary-lighter);
}

.pagination__item--active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 4.5rem 0 0;
    margin-top: auto;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, var(--primary) 50%, transparent 90%);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.footer__logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo-text {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--white);
}

.footer__desc {
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer__social {
    display: flex;
    gap: 0.6rem;
}

.footer__social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.footer__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
    letter-spacing: -0.2px;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.65rem; }

.footer__links a {
    color: rgba(255,255,255,0.4);
    transition: all var(--transition-fast);
    font-size: 0.92rem;
}

.footer__links a:hover {
    color: var(--primary);
    padding-right: 4px;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Footer Share */
.footer__share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer__share span { color: rgba(255,255,255,0.35); font-size: 0.85rem; }

.footer__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer__share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    color: white;
}

.footer__share-btn--facebook { background: #1877f2; }
.footer__share-btn--facebook:hover { background: #0d65d9; }
.footer__share-btn--whatsapp { background: #25d366; }
.footer__share-btn--whatsapp:hover { background: #1da851; }

@media (max-width: 480px) {
    .footer__share { flex-wrap: wrap; }
    .footer__share-btn { width: 34px; height: 34px; font-size: 0.9rem; }
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--neutral-100);
}

.contact-item:last-child { border-bottom: none; }

.contact-item__icon {
    width: 48px;
    height: 48px;
    background: var(--neutral-100);
    color: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-item__content h4 { font-weight: 600; color: var(--neutral-800); margin-bottom: 0.25rem; }
.contact-item__content a { color: var(--primary-dark); }
.contact-item__content p { color: var(--neutral-500); font-size: 0.92rem; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ========================================
   Auth Pages
   ======================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    padding: 2rem;
    padding-top: calc(2rem + var(--header-height));
    position: relative;
}

.auth-page::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(232,168,56,0.1) 0%, transparent 60%);
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    position: relative;
}

.auth-card__header {
    background: var(--secondary);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.auth-card__header::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
}

.auth-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.auth-card__logo-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card__logo-text { font-size: 2.25rem; font-weight: 700; }

.auth-card__title { font-size: 1.05rem; font-weight: 400; opacity: 0.65; }

.auth-card__body { padding: 2rem; }

/* ========================================
   Empty State
   ======================================== */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state i { font-size: 3.5rem; color: var(--neutral-300); margin-bottom: 1rem; display: block; }
.empty-state h3 { font-size: 1.2rem; font-weight: 600; color: var(--neutral-700); margin-bottom: 0.5rem; }
.empty-state p { color: var(--neutral-500); margin-bottom: 1.5rem; }

/* ========================================
   Rating Stars
   ======================================== */
.rating {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    color: var(--primary);
}

/* ========================================
   Utilities
   ======================================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary-dark); }
.text-muted { color: var(--neutral-500); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.w-100 { width: 100%; }

/* ========================================
   Logo Images
   ======================================== */
.site-logo-img {
    max-height: 52px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .site-logo-img { max-height: 40px; max-width: 120px; }
    .footer-logo-img { max-height: 50px; max-width: 140px; }
}

@media (max-width: 480px) {
    .site-logo-img { max-height: 35px; max-width: 100px; }
    .footer-logo-img { max-height: 45px; max-width: 120px; }
}

/* ========================================
   Form Input Wrapper
   ======================================== */
.form__input-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.form__input-wrapper .form__input {
    width: 100%;
    padding-right: 2.75rem;
}

.form__input-wrapper .form__input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-400);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .filters-form .form__input-wrapper,
    .filters-form .form__select,
    .filters-form .btn { width: 100%; min-width: auto; }
    .form__input-wrapper { width: 100%; min-width: auto; }
}

/* ========================================
   Hero Entry Animations
   ======================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__badge    { animation: fadeUp 0.5s ease-out 0.1s both; }
.hero__title    { animation: fadeUp 0.5s ease-out 0.2s both; }
.hero__subtitle { animation: fadeUp 0.5s ease-out 0.3s both; }
.hero__search   { animation: fadeUp 0.5s ease-out 0.4s both; }
.hero__stats    { animation: fadeUp 0.5s ease-out 0.55s both; }