/* =====================================================
   BUSINESS INDEX - COMPREHENSIVE UI/UX DESIGN SYSTEM
   Classic, Royal, Unique + Liquid Glass + Premium Minimal
   
   Design System Specifications:
   - Colors: Navy #1E3A8A + Gold #CA8A04
   - Typography: Playfair Display (headings) + Poppins (body)
   - Style: Liquid Glass + Premium Minimal
   - Animations: Moderate (300ms ease-out)
   ===================================================== */

html {
    scroll-behavior: smooth;
}

/* =====================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ===================================================== */
:root {
    /* === COLORS === */
    /* Primary - Navy */
    --navy-primary: #1E3A8A;
    --navy-dark: #0f172a;
    --navy-light: #1E40AF;
    --navy-50: #EFF6FF;
    --navy-100: #DBEAFE;

    /* Secondary - Royal Blue */
    --blue-royal: #3B82F6;
    --blue-light: #60A5FA;
    --blue-50: #EFF6FF;

    /* Accent - Gold */
    --gold: #CA8A04;
    --gold-light: #EAB308;
    --gold-dark: #A16207;
    --gold-50: #FEFCE8;

    /* Neutrals */
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #0F172A;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Text */
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --text-muted: #9CA3AF;
    --text-inverse: #FFFFFF;

    /* Status Colors */
    --success: #059669;
    --success-light: #D1FAE5;
    --warning: #D97706;
    --warning-light: #FEF3C7;
    --danger: #DC2626;
    --danger-light: #FEE2E2;
    --info: #0EA5E9;
    --info-light: #E0F2FE;

    /* === GRADIENTS === */
    --gradient-primary: linear-gradient(135deg, var(--navy-primary), var(--blue-royal));
    --gradient-dark: linear-gradient(135deg, var(--navy-dark), #292524);
    --gradient-gold: linear-gradient(135deg, var(--gold), var(--gold-light));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));

    /* === SHADOWS === */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 4px 20px rgba(202, 138, 4, 0.3);
    --shadow-glow: 0 0 30px rgba(202, 138, 4, 0.2);
    --shadow-glass: 0 8px 32px rgba(30, 58, 138, 0.12);

    /* === TYPOGRAPHY === */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* === SPACING === */
    --space-0: 0;
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */

    /* === LAYOUT === */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
    --container-full: 100%;

    --header-height: 72px;
    --sidebar-width: 260px;
    --footer-height: auto;

    /* === BORDER RADIUS === */
    --radius-none: 0;
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* === TRANSITIONS === */
    --transition-fast: 150ms ease;
    --transition: 300ms ease-out;
    --transition-slow: 500ms ease-out;

    /* === Z-INDEX === */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;

    /* === PREMIUM ADDITIONS === */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --premium-glow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* Premium Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(202, 138, 4, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(202, 138, 4, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(202, 138, 4, 0);
    }
}

/* Premium Utility Classes */
.premium-glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.premium-shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hover-premium {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.bg-premium-dark {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
}

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background-color: var(--bg-light);
    min-height: 100vh;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--navy-primary);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

a {
    color: var(--navy-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

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

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.container-sm {
    max-width: var(--container-sm);
}

.container-md {
    max-width: var(--container-md);
}

.container-lg {
    max-width: var(--container-lg);
}

.container-xl {
    max-width: var(--container-xl);
}

.container-full {
    max-width: var(--container-full);
}

/* === SECTION SPACING === */
.section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.section-sm {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.section-md {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.section-lg {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}

/* =====================================================
   NAVIGATION - STICKY HEADER
   ===================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: linear-gradient(135deg, var(--navy-dark), #292524);
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 var(--space-4);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--white);
}

.navbar-brand:hover {
    color: var(--gold-light);
}

.logo {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-lg);
    box-shadow: var(--shadow-gold);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.nav-link {
    position: relative;
    padding: var(--space-2) var(--space-4);
    color: rgba(255, 255, 255, 0.85);
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(202, 138, 4, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: var(--radius-full);
}


/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
}

.btn-icon-sm {
    width: 32px;
    height: 32px;
}

.btn-icon-lg {
    width: 48px;
    height: 48px;
    font-size: var(--text-lg);
}

/* Primary Button - Gold */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

.btn-gold:active:not(:disabled) {
    transform: translateY(0);
}

/* Secondary Button */
.btn-outline {
    background: transparent;
    color: var(--navy-primary);
    border-color: var(--gray-300);
}

.btn-outline:hover:not(:disabled) {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: transparent;
}

.btn-ghost:hover:not(:disabled) {
    background: var(--gray-100);
    color: var(--navy-primary);
}

/* White Button */
.btn-white {
    background: var(--white);
    color: var(--navy-primary);
    border-color: var(--white);
}

.btn-white:hover:not(:disabled) {
    background: var(--gray-100);
    color: var(--navy-primary);
}

/* Link Button */
.btn-link {
    background: transparent;
    color: var(--navy-primary);
    border-color: transparent;
    padding: 0;
}

.btn-link:hover:not(:disabled) {
    color: var(--gold);
    text-decoration: underline;
}

/* =====================================================
   CARDS - GLASSMORPHISM
   ===================================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

/* Glass Card */
.card-glass {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-glass:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glass);
    border-color: var(--gold);
}

/* Business Card */
.business-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border-radius: var(--radius-xl);
    /* Increased to 24px for friendlier look */
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(30, 58, 138, 0.12);
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    z-index: 10;
    opacity: 0.8;
}

.business-card:hover::before {
    background: var(--gradient-gold);
    opacity: 1;
}

.business-card-image {
    position: relative;
    height: 200px;
    /* Increased height for better visibility */
    background: var(--gray-50);
    overflow: hidden;
}

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

.business-card:hover .business-card-image img {
    transform: scale(1.08);
}

.business-card-image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--text-4xl);
    color: var(--gray-400);
}

.business-card-body {
    padding: var(--space-4);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.business-card-category {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
}

.business-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--navy-primary);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.business-card-title a {
    color: inherit;
}

.business-card-title a:hover {
    color: var(--gold);
}

.business-card-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
}

.business-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid var(--gray-200);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: auto;
}

/* Badge on Card */
.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: auto;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 50px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.badge-featured {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(59, 130, 246, 0.9));
    color: white;
}

.badge-premium {
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.95), rgba(234, 179, 8, 0.9));
    color: white;
}

.badge-verified {
    background: rgba(16, 185, 129, 0.95);
    color: white;
}

/* =====================================================
   CATEGORY CARDS
   ===================================================== */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}



.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-light);
}



.category-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    font-size: var(--text-2xl);
    color: var(--white);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--gradient-gold);
    transform: rotate(8deg);
}

.category-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--navy-primary);
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form-label-required::after {
    content: '*';
    color: var(--danger);
    margin-left: var(--space-1);
}

.form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:disabled {
    background: var(--gray-100);
    cursor: not-allowed;
}

/* Form Select */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* Form Textarea */
.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form Checkbox & Radio */
.form-check {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
}

.form-check-input {
    width: 18px;
    height: 18px;
    accent-color: var(--navy-primary);
    cursor: pointer;
}

/* Input Group */
.input-group {
    display: flex;
}

.input-group .form-control {
    flex: 1;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0 var(--space-4);
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-left: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-muted);
}

/* Form Validation */
.form-control.is-valid {
    border-color: var(--success);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.form-feedback {
    font-size: var(--text-sm);
    margin-top: var(--space-1);
}

.form-feedback-valid {
    color: var(--success);
}

.form-feedback-invalid {
    color: var(--danger);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    padding: var(--space-20) 0;
    background: var(--gradient-dark);
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-8);
}

/* Search Box - Glassmorphism */
.search-box {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.search-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.search-box .form-control,
.search-box .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: var(--space-4);
    font-size: var(--text-base);
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.search-box .btn {
    height: 100%;
    padding: var(--space-4) var(--space-8);
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--navy-primary);
    margin-bottom: var(--space-3);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-top: var(--space-4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--gold-light, #FDE68A), var(--gold, #CA8A04));
    padding: var(--space-16) 0;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.6;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: var(--font-bold);
    color: #0F172A;
    margin-bottom: var(--space-4);
    position: relative;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    animation: ctaFadeInUp 0.8s ease-out forwards;
}

.cta-text {
    font-size: 1.25rem;
    color: #1E293B;
    margin-bottom: var(--space-10, 3rem);
    position: relative;
    font-weight: 600;
    opacity: 0;
    animation: ctaFadeInUp 0.8s ease-out 0.2s forwards;
}

@keyframes ctaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding-top: var(--space-16);
    border-top: 3px solid var(--gold);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gold-light);
    margin-bottom: var(--space-4);
}

.footer .navbar-brand span {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: var(--space-2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-6) 0;
    margin-top: var(--space-12);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links .social-link:hover {
    background: var(--gold) !important;
    color: #1c1917 !important;
    transform: translateY(-3px);
}

.social-links .social-link:hover i,
.social-links .social-link:hover svg {
    color: #1c1917 !important;
    fill: #1c1917 !important;
}

/* =====================================================
   DASHBOARD LAYOUT
   ===================================================== */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.dashboard-sidebar {
    width: var(--sidebar-width);
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: var(--z-fixed);
    transition: var(--transition);
}

.dashboard-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: var(--space-6);
    background: var(--bg-light);
}

@media (max-width: 1024px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
    }

    .dashboard-sidebar.active {
        transform: translateX(0);
    }

    .dashboard-main {
        margin-left: 0;
    }
}

/* Sidebar Nav */
.sidebar-nav {
    padding: var(--space-4);
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    color: var(--text-secondary);
    border-radius: var(--radius);
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    transition: var(--transition);
    margin-bottom: var(--space-1);
}

.sidebar-menu-item:hover {
    background: var(--gold-50);
    color: var(--gold);
}

.sidebar-menu-item.active {
    background: var(--navy-primary);
    color: var(--white);
}

.sidebar-menu-item i {
    width: 20px;
    text-align: center;
}

/* Bottom Nav (Mobile) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: var(--space-2);
    z-index: var(--z-fixed);
}

@media (max-width: 1024px) {
    .bottom-nav {
        display: flex;
        justify-content: space-around;
    }

    .dashboard-main {
        padding-bottom: 80px;
    }
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2);
    color: var(--text-muted);
    font-size: var(--text-xs);
    text-align: center;
}

.bottom-nav-item.active {
    color: var(--gold);
}

/* =====================================================
   STATS CARDS
   ===================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
}

.stat-icon-primary {
    background: var(--navy-50);
    color: var(--navy-primary);
}

.stat-icon-success {
    background: var(--success-light);
    color: var(--success);
}

.stat-icon-warning {
    background: var(--warning-light);
    color: var(--warning);
}

.stat-icon-danger {
    background: var(--danger-light);
    color: var(--danger);
}

.stat-value {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--navy-primary);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

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

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

/* =====================================================
   QUICK ACTIONS
   ===================================================== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy-primary);
}

.action-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: var(--navy-primary);
    transition: var(--transition);
}

.action-card:hover .action-icon {
    background: var(--navy-primary);
    color: var(--white);
}

.action-label {
    font-weight: var(--font-medium);
    color: var(--navy-primary);
    font-size: var(--text-sm);
}

.action-desc {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* =====================================================
   AUTH PAGES - SPLIT LAYOUT
   ===================================================== */
.auth-layout {
    display: flex;
    min-height: 100vh;
}

.auth-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    background: var(--bg-light);
}

.auth-illustration-section {
    flex: 1;
    display: none;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .auth-illustration-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.auth-form {
    width: 100%;
    max-width: 400px;
}

.auth-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--space-8);
}

/* Social Login */
.social-login {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-weight: var(--font-medium);
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--text-primary);
    background: var(--gray-50);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin: var(--space-6) 0;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

/* =====================================================
   WIZARD / MULTI-STEP FORM
   ===================================================== */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-8);
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.wizard-step-number {
    width: 36px;
    height: 36px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-semibold);
    color: var(--text-muted);
    transition: var(--transition);
}

.wizard-step.active .wizard-step-number {
    background: var(--navy-primary);
    color: var(--white);
}

.wizard-step.completed .wizard-step-number {
    background: var(--success);
    color: var(--white);
}

.wizard-step-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    display: none;
}

@media (min-width: 768px) {
    .wizard-step-label {
        display: block;
    }
}

.wizard-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 var(--space-2);
}

.wizard-connector.active {
    background: var(--navy-primary);
}

.wizard-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

/* =====================================================
   REVIEWS
   ===================================================== */
.review-card {
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    margin-bottom: var(--space-4);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.review-author-name {
    font-weight: var(--font-semibold);
    color: var(--navy-primary);
}

.review-date {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: var(--space-1);
    color: var(--gold);
}

.review-body {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* Rating Input */
.rating-input {
    display: flex;
    gap: var(--space-2);
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: var(--text-2xl);
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.rating-input label:hover,
.rating-input label:hover~label,
.rating-input input:checked~label {
    color: var(--gold);
}

.rating-input:hover label {
    color: var(--gold);
}

/* =====================================================
   CUSTOM MODALS (Removed to prevent Bootstrap conflict)
   ===================================================== */

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.page-item:hover {
    border-color: var(--navy-primary);
    color: var(--navy-primary);
}

.page-item.active {
    background: var(--navy-primary);
    border-color: var(--navy-primary);
    color: var(--white);
}

/* =====================================================
   EMPTY STATE
   ===================================================== */
.empty-state {
    text-align: center;
    padding: var(--space-16);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: var(--space-4);
}

.empty-state h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}

/* =====================================================
   LOADER / SKELETON
   ===================================================== */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1em;
    margin-bottom: var(--space-2);
}

.skeleton-title {
    height: 1.5em;
    width: 60%;
    margin-bottom: var(--space-4);
}

.skeleton-image {
    height: 180px;
}

/* =====================================================
   ALERTS
   ===================================================== */
.alert {
    padding: var(--space-4);
    border-radius: var(--radius);
    border: 1px solid transparent;
    margin-bottom: var(--space-4);
}

.alert-success {
    background: var(--success-light);
    border-color: var(--success);
    color: var(--success);
}

.alert-warning {
    background: var(--warning-light);
    border-color: var(--warning);
    color: var(--warning);
}

.alert-danger {
    background: var(--danger-light);
    border-color: var(--danger);
    color: var(--danger);
}

.alert-info {
    background: var(--info-light);
    border-color: var(--info);
    color: var(--info);
}

/* =====================================================
   BADGES
   ===================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
}

.badge-primary {
    background: var(--navy-50);
    color: var(--navy-primary);
}

.badge-success {
    background: var(--success-light);
    color: var(--success);
}

.badge-warning {
    background: var(--warning-light);
    color: var(--warning);
}

.badge-danger {
    background: var(--danger-light);
    color: var(--danger);
}

/* =====================================================
   TABLES
   ===================================================== */
.table-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.table th,
.table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.table th {
    background: var(--gray-50);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

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

.table tr:hover td {
    background: var(--gray-50);
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

/* Display */
.hidden {
    display: none !important;
}

.block {
    display: block;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

/* Flex */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.gap-1 {
    gap: var(--space-1);
}

.gap-2 {
    gap: var(--space-2);
}

.gap-3 {
    gap: var(--space-3);
}

.gap-4 {
    gap: var(--space-4);
}

.gap-6 {
    gap: var(--space-6);
}

/* Grid */
.grid {
    display: grid;
}

.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);
}

/* Spacing */
.m-0 {
    margin: 0;
}

.m-auto {
    margin: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-2 {
    margin-top: var(--space-2);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.p-0 {
    padding: 0;
}

.p-2 {
    padding: var(--space-2);
}

.p-4 {
    padding: var(--space-4);
}

.p-6 {
    padding: var(--space-6);
}

.p-8 {
    padding: var(--space-8);
}

.py-2 {
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
}

.py-4 {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.py-8 {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.px-4 {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.px-6 {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

/* Text */
.text-center {
    text-align: center;
}

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

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

.text-xs {
    font-size: var(--text-xs);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-lg {
    font-size: var(--text-lg);
}

.text-xl {
    font-size: var(--text-xl);
}

.text-2xl {
    font-size: var(--text-2xl);
}

.font-medium {
    font-weight: var(--font-medium);
}

.font-semibold {
    font-weight: var(--font-semibold);
}

.font-bold {
    font-weight: var(--font-bold);
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.text-white {
    color: var(--white);
}

.text-gold {
    color: var(--gold);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

/* Background */
.bg-white {
    background: var(--white);
}

.bg-light {
    background: var(--bg-light);
}

.bg-primary {
    background: var(--navy-primary);
}

.bg-gold {
    background: var(--gold);
}

/* Border */
.rounded {
    border-radius: var(--radius);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-full {
    border-radius: var(--radius-full);
}

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

.border-t {
    border-top: 1px solid var(--gray-200);
}

.border-b {
    border-bottom: 1px solid var(--gray-200);
}

/* Shadow */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

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

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

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

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* Mobile: < 640px */
@media (max-width: 640px) {
    :root {
        --header-height: 60px;
    }

    h1 {
        font-size: var(--text-3xl);
    }

    h2 {
        font-size: var(--text-2xl);
    }

    h3 {
        font-size: var(--text-xl);
    }

    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    .section {
        padding-top: var(--space-10);
        padding-bottom: var(--space-10);
    }

    .hero {
        padding: var(--space-12) 0;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .search-box {
        padding: var(--space-3);
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet: 640px - 1024px */
@media (min-width: 641px) and (max-width: 1024px) {
    :root {
        --header-height: 64px;
    }

    h1 {
        font-size: var(--text-4xl);
    }
}

/* Desktop: > 1024px */
@media (min-width: 1025px) {
    .container {
        padding-left: var(--space-6);
        padding-right: var(--space-6);
    }
}

/* =====================================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ===================================================== */

/* Extra Small (Mobile < 375px) */
@media (max-width: 375px) {
    :root {
        --container-full: 100%;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero {
        padding: 40px 0;
    }

    .search-box {
        padding: 12px;
    }

    .search-box .row {
        gap: 8px !important;
    }

    .search-box .form-control,
    search-box .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-search {
        padding: 10px 16px;
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .business-card-image {
        height: 140px;
    }

    .card-body-royal {
        padding: 12px;
    }

    .card-title {
        font-size: 1rem;
    }

    .footer {
        padding: 32px 0 20px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }

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

    .footer-bottom p {
        font-size: 12px;
    }

    .newsletter-section {
        padding: 24px 16px;
    }

    .newsletter-title {
        font-size: 1.25rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .quick-actions {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .action-card {
        padding: 16px;
    }

    .action-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .stat-card {
        padding: 12px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .stat-value {
        font-size: 18px;
    }

    .wizard-progress {
        flex-wrap: wrap;
    }

    .wizard-step-label {
        display: none;
    }

    .menu-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .auth-form-section {
        padding: 24px 16px;
    }

    .toast {
        min-width: 250px;
        max-width: calc(100% - 24px);
        right: 12px;
    }

}

/* Small Mobile (375px - 639px) */
@media (min-width: 376px) and (max-width: 639px) {
    :root {
        --container-full: 100%;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero {
        padding: 48px 0;
    }

    .search-box {
        padding: 16px;
    }

    .business-card-image {
        height: 160px;
    }

    .card-body-royal {
        padding: 16px;
    }

    .stat-card {
        padding: 16px;
    }

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (640px - 1023px) */
@media (min-width: 640px) and (max-width: 1023px) {
    :root {
        --header-height: 64px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero {
        padding: 60px 0;
    }

    .search-box {
        padding: 20px;
    }

    .business-card-image {
        height: 180px;
    }

    .business-card-royal .card-body-royal {
        padding: 20px;
    }

    :root {
        --sidebar-width: 240px;
    }
}

/* Desktop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* =====================================================
   LANDSCAPE MOBILE FIXES
   ===================================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 32px 0;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .search-box {
        padding: 8px;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .button,
    .btn {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print styles */
@media print {

    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: none;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    @page {
        margin: 2cm;
    }

    .header,
    .footer,
    .navbar,
    .btn,
    .breadcrumb,
    .pagination,
    .no-print {
        display: none !important;
    }

    body {
        padding: 0;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

/* =====================================================
   ACCESSIBLE RESPONSIVE
   ===================================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .skeleton-animate {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --gray-200: #000;
        --gray-300: #000;
        --text-muted: #333;
    }

    .business-card,
    .card,
    .stat-card,
    .action-card {
        border-width: 2px;
    }

    .btn-outline,
    .form-control,
    .form-select {
        border-width: 2px;
    }
}


/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Slide Up */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.4s ease-out forwards;
}

/* Pulse */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Spin (for loader) */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
}


/* =====================================================
   ENHANCED UI/UX COMPONENTS
   ===================================================== */

/* === TOAST NOTIFICATIONS === */
.toast-container {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.3s ease-out;
    border-left: 4px solid;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-color: var(--success);
}

.toast-success .toast-icon {
    color: var(--success);
    background: var(--success-light);
}

.toast-error {
    border-color: var(--danger);
}

.toast-error .toast-icon {
    color: var(--danger);
    background: var(--danger-light);
}

.toast-warning {
    border-color: var(--warning);
}

.toast-warning .toast-icon {
    color: var(--warning);
    background: var(--warning-light);
}

.toast-info {
    border-color: var(--info);
}

.toast-info .toast-icon {
    color: var(--info);
    background: var(--info-light);
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.toast-message {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: var(--transition);
}

.toast-close:hover {
    opacity: 1;
}

/* === LOADING SPINNER === */
.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-12);
    gap: var(--space-4);
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-lg {
    width: 64px;
    height: 64px;
    border-width: 5px;
}

.spinner-sm {
    width: 24px;
    height: 24px;
    border-width: 3px;
}

.spinner-text {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* === SKELETON LOADERS === */
.skeleton-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.skeleton-card {
    padding: var(--space-5);
}

.skeleton-line {
    height: 16px;
    background: var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: var(--space-3);
}

.skeleton-line:last-child {
    margin-bottom: 0;
}

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gray-200);
}

.skeleton-image {
    height: 180px;
    background: var(--gray-200);
}

.skeleton-title {
    height: 24px;
    width: 60%;
    background: var(--gray-200);
    margin-bottom: var(--space-3);
}

.skeleton-text {
    height: 16px;
    width: 80%;
    background: var(--gray-200);
}

/* Animated skeleton */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton-animate {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* === EMPTY STATES === */
.empty-state {
    text-align: center;
    padding: var(--space-16) var(--space-8);
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: 2rem;
    color: var(--gray-400);
}

.empty-state-title {
    font-size: var(--text-xl);
    color: var(--navy-primary);
    margin-bottom: var(--space-2);
}

.empty-state-text {
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto var(--space-5);
}

.empty-state-actions {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
}

/* === NEWSLETTER SECTION === */
.newsletter-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--white);
    margin-bottom: var(--space-3);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-6);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: var(--space-3);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border: none;
}

.newsletter-form .btn {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* === PREMIUM BREADCRUMB === */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--navy-primary);
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-separator {
    color: var(--gray-400);
}

/* === PREMIUM TABS === */
.tabs {
    display: flex;
    gap: var(--space-1);
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--space-6);
}

.tab {
    padding: var(--space-3) var(--space-5);
    font-weight: var(--font-medium);
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    position: relative;
}

.tab:hover {
    color: var(--navy-primary);
}

.tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* === PREMIUM ACCORDION === */
.accordion {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

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

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-title {
    font-weight: var(--font-semibold);
    color: var(--navy-primary);
}

.accordion-icon {
    transition: var(--transition);
    color: var(--text-muted);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 var(--space-5);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
    padding: var(--space-4) var(--space-5);
    max-height: 500px;
}

/* === PREMIUM CALLOUT === */
.callout {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
}

.callout-info {
    background: var(--info-light);
    border-left: 4px solid var(--info);
}

.callout-success {
    background: var(--success-light);
    border-left: 4px solid var(--success);
}

.callout-warning {
    background: var(--warning-light);
    border-left: 4px solid var(--warning);
}

.callout-danger {
    background: var(--danger-light);
    border-left: 4px solid var(--danger);
}

.callout-icon {
    width: 24px;
    flex-shrink: 0;
}

.callout-title {
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-1);
}

.callout-content {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* === PREMIUM DROPDOWN MENU === */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    color: var(--text-secondary);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--navy-primary);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: var(--space-2) 0;
}

/* === IMAGE GALLERY GRID === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-3);
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: var(--text-xl);
}

/* === PREMIUM PROGRESSBAR === */
.progress {
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
}

.progress-label span:first-child {
    color: var(--text-primary);
    font-weight: var(--font-medium);
}

.progress-label span:last-child {
    color: var(--text-muted);
}

/* === MEDIA QUERY: REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .skeleton-animate {
        animation: none;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {

    .header,
    .footer,
    .btn,
    .no-print {
        display: none !important;
    }

    body {
        background: white;
    }

    .container {
        max-width: 100%;
    }
}

/* =====================================================
   COMPREHENSIVE RESPONSIVE DESIGN (MOBILE-FIRST)
   Breakpoints: 320px, 375px, 425px, 768px, 1024px+
   ===================================================== */

/* --- Base Responsiveness --- */
@media (max-width: 1200px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 64px;
        --space-16: 3rem;
        --space-20: 4rem;
        --space-24: 5rem;
    }

    .section {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12);
    }
}

@media (max-width: 768px) {
    :root {
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
    }

    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.25rem !important;
        line-height: 1.2;
    }

    .hero-subtitle-display {
        font-size: 1rem !important;
    }

    /* Grid Adjustments */
    .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    /* Responsive Tables */
    .table-responsive {
        overflow-x: auto;
        margin-bottom: 1rem;
        border-radius: var(--radius);
    }

    /* Cards Mobile */
    .business-card-image {
        height: 160px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --text-base: 0.9375rem;
    }

    .btn {
        padding: var(--space-2) var(--space-4);
        width: 100%;
    }

    .btn-sm {
        width: auto;
    }

    .hero-section {
        padding: var(--space-20) 0;
        min-height: unset;
    }

    /* Search Box Mobile */
    .search-box {
        padding: 1rem !important;
        border-radius: 12px;
    }

    .search-bar {
        flex-direction: column !important;
        gap: 10px !important;
        border-radius: 15px !important;
        padding: 10px !important;
    }

    .search-field {
        width: 100% !important;
        border-radius: 10px !important;
    }

    .search-btn {
        width: 100% !important;
        border-radius: 10px !important;
        height: 50px !important;
    }
}

/* --- Specific Component Fixes --- */

/* Fix Horizontal Scrolling */
body,
html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Touch-friendly UI */
button,
a,
input,
select,
textarea {
    min-height: 44px;
}

.btn,
.nav-link,
.category-card,
.business-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Responsive Images & Videos */
img,
video {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Modal Responsiveness */
.modal-dialog {
    margin: 1rem;
    max-width: calc(100% - 2rem);
}

@media (min-width: 576px) {
    .modal-dialog {
        margin: 1.75rem auto;
        max-width: 500px;
    }
}

/* Sidebar for Dashboards */
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px !important;
        position: fixed !important;
        z-index: 1050;
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    .admin-main,
    .dashboard-main {
        margin-left: 0 !important;
        width: 100% !important;
    }
}

/* High Precision Breakpoints */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem !important;
    }

    .stat-card {
        padding: 1rem !important;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Admin Specific Fixes */
.admin-content {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.stat-card {
    height: 100%;
}

/* Table Scroll Hint */
.table-responsive::after {
    content: '← Scroll to see more →';
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-400);
    padding: 5px;
}

@media (min-width: 769px) {
    .table-responsive::after {
        display: none;
    }
}
/* Product Card CSS extracted from listing.php */
        .products-section .section-title { margin-bottom: 1.5rem; }

        /* Product Card = Service Card */
        .product-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(202, 138, 4, 0.3);
        }
        .product-card-img-wrap {
            position: relative;
            height: 220px;
            overflow: hidden;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .product-card:hover .product-card-img-wrap img { transform: scale(1.1); }
        .product-card-img-wrap > i {
            font-size: 3.5rem;
            color: var(--primary);
            opacity: 0.15;
            transition: all 0.5s ease;
        }
        .product-card:hover .product-card-img-wrap > i {
            transform: scale(1.1);
            color: var(--accent);
            opacity: 0.8;
        }
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            border: 1px solid rgba(255,255,255,0.5);
            z-index: 2;
        }
        .product-card-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .product-card-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }
        .product-card-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 600;
            flex-wrap: wrap;
        }
        .product-card-meta i { color: var(--accent); margin-right: 4px; }
        .product-card-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
            overflow: hidden;
            max-height: 3.2em;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            line-height: 1.6;
        }
        .product-card-desc.expanded {
            max-height: 2000px;
        }
        .product-card-desc-full {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            display: block;
            transition: opacity 0.3s ease 0.1s, max-height 0.4s ease;
        }
        .product-card-desc.expanded .product-card-desc-full {
            opacity: 1;
            max-height: 2000px;
        }
        .product-card-desc.expanded::before {
            content: '';
            display: block;
            margin-top: 8px;
        }
        .expand-prod-btn {
            font-size: 0.8rem;
            color: var(--accent);
            cursor: pointer;
            border: none;
            background: none;
            padding: 0;
            font-weight: 600;
            margin-top: -8px;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        .expand-prod-btn:hover { color: var(--primary); }
        .product-card-footer {
            padding-top: 1.25rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }
        .product-card-price {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
        }
        .product-card-price .old-price {
            font-size: 0.85rem;
            color: #94a3b8;
            text-decoration: line-through;
            font-weight: 400;
            margin-left: 6px;
        }
        .product-card-actions { display: flex; align-items: center; gap: 8px; }

        /* Product Attributes */
        .product-attrs {
            margin-top: 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-top: 12px;
            border-top: 1px solid #F1F5F9;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.4s ease, opacity 0.3s ease, padding-top 0.3s ease, margin-top 0.3s ease;
            padding-top: 0;
            margin-top: 0;
            border-top: none;
        }
        .product-card-desc.expanded ~ .expand-prod-btn + .product-card-body-footer .product-attrs,
        .product-card-body.show-attrs .product-attrs {
            max-height: 500px;
            opacity: 1;
            padding-top: 16px;
            margin-top: 20px;
            border-top: 1px solid #F1F5F9;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.05s, padding-top 0.4s ease 0.05s, margin-top 0.4s ease 0.05s;
        }
        .product-attr {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .attr-label {
            font-size: 0.75rem;
            font-weight: 700;
            color: #1E293B;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            min-width: 70px;
        }
        .attr-label i { font-size: 0.78rem; color: var(--accent); }
        .attr-tags {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .attr-tag {
            padding: 3px 10px;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: 600;
            background: #F8FAFC;
            color: #334155;
            border: 1.5px solid #E2E8F0;
            line-height: 1.3;
            transition: all 0.2s;
        }
        .attr-tag:hover {
            background: #F1F5F9;
            border-color: #CBD5E1;
            transform: translateY(-1px);
        }
        .attr-tag-payment {
            background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
            color: #047857;
            border-color: #A7F3D0;
            font-weight: 700;
        }
        .attr-tag-payment:hover {
            background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
            border-color: #6EE7B7;
        }
        .attr-tag-payment i {
            margin-right: 3px;
            font-size: 0.68rem;
        }
        .attr-colour-item {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 3px 10px 3px 6px;
            border-radius: 20px;
            background: #F8FAFC;
            border: 1.5px solid #E2E8F0;
            transition: all 0.2s;
            cursor: default;
        }
        .attr-colour-item:hover {
            background: #F1F5F9;
            border-color: #CBD5E1;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .attr-colour-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--dot-color);
            border: 2px solid rgba(0,0,0,0.06);
            flex-shrink: 0;
            box-shadow: inset 0 -1px 2px rgba(0,0,0,0.08);
        }
        .attr-colour-dot.white-dot { border-color: #D1D5DB; }
        .attr-colour-name {
            font-size: 0.7rem;
            font-weight: 600;
            color: #334155;
            line-height: 1;
        }

        /* Chat Button */
        .btn-chat-wa {
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.82rem;
            border: 1px solid rgba(37, 211, 102, 0.3);
            background: rgba(37, 211, 102, 0.08);
            color: #25D366;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            white-space: nowrap;
        }
        .btn-chat-wa:hover {
            background: #25D366;
            color: white;
            border-color: #25D366;
        }
        .btn-chat-wa i { font-size: 0.95rem; }

        /* Order Now Button - Like Book Now but smaller */
        .order-this-prod {
            padding: 7px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.82rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: linear-gradient(135deg, var(--accent), #D97706);
            color: white;
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
            white-space: nowrap;
        }
        .order-this-prod:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
            color: white;
        }
        .order-this-prod:disabled {
            background: #e2e8f0;
            color: #94a3b8;
            cursor: not-allowed;
            box-shadow: none;
            transform: none;
        }
        .order-this-prod .spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255,255,255,0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }
        .order-this-prod.loading .spinner { display: inline-block; }
        .order-this-prod.loading .btn-text { display: none; }
        @keyframes spin { to { transform: rotate(360deg); } }

