/*
Theme Name: ThriveConsort Clean
Version: 1.0.0
*/

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

/* Variables */
:root {
    --primary: #4f46e5;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --text: #1e293b;
    --muted: #64748b;
    --white: #ffffff;
    --action-green: #28a745;
    --action-green-hover: #1e7e34;
}

/* ==========================================================================
   CONSOLIDATED BUTTON SYSTEM
   ========================================================================== */

/* Base Button Class */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    white-space: nowrap;
    gap: 0.5rem;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}

.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Primary Button (Green) */
.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* Outline Button (Green Border) */
.btn-outline {
    background: transparent;
    color: var(--action-green);
    border-color: var(--action-green);
}

.btn-outline:hover {
    background: var(--action-green);
    color: var(--white);
    transform: translateY(-1px);
}

/* Secondary Button (Gray) */
.btn-secondary {
    background: var(--muted);
    color: var(--white);
    border-color: var(--muted);
}

.btn-secondary:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-1px);
}

/* Small Button Variant */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* Large Button Variant */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
}

/* Full Width Button */
.btn-block {
    width: 100%;
}

/* Navigation Button (Header/Footer) */
.btn-nav {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* Mobile Navigation Button */
.btn-nav-mobile {
    width: 100%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-nav-mobile:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* Search Button (Replaces .search-button and .control-button) */
.btn-search {
    background: var(--action-green);
    color: var(--white);
    border-color: var(--action-green);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    height: 56px;
}

.btn-search:hover {
    background: var(--action-green-hover);
    border-color: var(--action-green-hover);
    transform: translateY(-2px);
}

/* Action Button (Light, for cards and lists) */
.btn-action {
    background: #f8f9fa;
    color: var(--action-green);
    border-color: #e9ecef;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

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

/* White Button (for dark backgrounds) */
.btn-white {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

.btn-white:hover {
    background: #f8f9fa;
    border-color: #f8f9fa;
    transform: translateY(-1px);
}

/* White Outline Button (for dark backgrounds) */
.btn-white-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

/* Responsive Button Adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
    }
    
    .btn-search {
        width: 100%;
        padding: 0.8rem 1.5rem;
        height: 48px;
    }
}

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: modalEnter 0.3s ease-out;
}

@keyframes modalEnter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.modal-header.error {
    /* Error styling handled by icon color */
}

.modal-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark);
}

.modal-body {
    padding: 0 2rem 1rem;
    text-align: center;
}

.modal-body p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.modal-footer .btn {
    min-width: 120px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Full width container for header */
.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Featured Businesses Section - Reduced spacing */
.featured-businesses {
    padding: 2rem 0;
}

.section-title {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

.site-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(90deg, #59782e, #0d3ba3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.main-navigation a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.main-navigation a:hover {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
}




/* Navigation CTA Button */
.nav-cta .btn-nav {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}

.nav-cta .btn-nav:hover {
    background: linear-gradient(135deg, #16a34a, #15803d) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    color: white !important;
}

/* Mobile Navigation CTA Button */
.mobile-nav-cta {
    margin-top: 1rem;
    text-align: center;
}

.mobile-nav-cta .btn-nav-mobile {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
    width: 100%;
    text-align: center;
}

.mobile-nav-cta .btn-nav-mobile:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #06b6d4 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 0.5rem 0 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

/* Minimal hero for other pages - ultra compact */
.hero-section-minimal {
    padding: 1.5rem 0 !important;
    min-height: auto !important;
}

.hero-section-minimal .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.hero-section-minimal .hero-title {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    font-size: 3rem !important;
}

.hero-section-minimal .hero-subtitle {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
}

/* Smaller hero for Add Business page */
body.page-template-add-business .hero-section {
    padding: 2rem 0;
}

body.page-template-add-business .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

body.page-template-add-business .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Search */
.search-container {
    max-width: 900px;
    margin: 0 auto;
}

.search-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.search-form.advanced-search .search-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr auto;
    gap: 1rem;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-input,
.search-select {
    border: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    outline: none;
    border-radius: 0.75rem;
    color: var(--text);
    background: var(--white);
    width: 100%;
    transition: all 0.3s ease;
}

.search-input:focus,
.search-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}


@media (max-width: 768px) {
    .search-form.advanced-search .search-row {
        grid-template-columns: 1fr;
    }
    
    .btn-search {
        width: 100%;
        padding: 0.8rem 1.5rem;
        height: 48px;
    }
}

/* Categories */
.categories-section {
    padding: 2rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header .section-title,
.section-inner .section-title {
    display: inline-block;
    margin: 0;
    position: relative;
    white-space: nowrap;
}

.section-header .section-title::after,
.section-inner .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #06b6d4 100%);
}

.section-title {
    margin: 0;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #06b6d4 100%);
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    left: 0;
    border-radius: 2px;
}

.see-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.see-all-link:hover {
    text-decoration: none;
}

.see-all-link:hover::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 1.5rem); /* Exclude icon width and gap */
    height: 1px;
    background-color: var(--primary);
}

/* Featured Events Section */
.featured-events {
    padding: 2rem 0;
    background: #f8f9fa;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.event-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 1.25rem;
}

.event-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.event-title a {
    color: var(--text);
    text-decoration: none;
}

.event-title a:hover {
    color: var(--primary);
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.event-date i {
    color: var(--primary);
}

.event-excerpt {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-business {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

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

.event-business a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.event-business a:hover {
    text-decoration: underline;
}

.event-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.event-address i {
    color: var(--primary);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.no-events-message {
    color: var(--muted);
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-events {
        padding: 1.5rem 0;
    }
}

/* Events Page Styling */
.events-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.event-listing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.event-listing-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.event-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-listing-image-placeholder {
    position: relative;
    width: 100%;
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 3rem;
}

.event-date-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-width: 60px;
}

.event-month-day {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.event-day-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.event-listing-content {
    padding: 1.25rem;
}

.event-listing-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.event-listing-title a {
    color: var(--text);
    text-decoration: none;
}

.event-listing-title a:hover {
    color: var(--primary);
}

.event-listing-datetime {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.event-listing-datetime i {
    color: var(--primary);
    flex-shrink: 0;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

.event-listing-excerpt {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-listing-business {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.event-listing-business i {
    color: var(--primary);
    font-size: 0.9rem;
}

.event-listing-business a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.event-listing-business a:hover {
    text-decoration: underline;
}

.event-listing-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.event-listing-address i {
    color: var(--primary);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Responsive adjustments for events page */
@media (max-width: 768px) {
    .events-listings-grid {
        grid-template-columns: 1fr;
    }
    
    .event-listing-image,
    .event-listing-image-placeholder {
        height: 160px;
    }
}

/* Single Event Page Styling */
.event-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    border-bottom: 1px solid #dee2e6;
}

.event-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.event-date-large {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.event-month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.25rem 0;
}

.event-year {
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-title-section {
    flex: 1;
}

.event-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--dark);
}

.event-business-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.business-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vip-badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

.premium-badge {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
}

.free-badge {
    background: #e5e7eb;
    color: #374151;
}

.business-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-link:hover {
    text-decoration: underline;
}

.event-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.event-content {
    padding: 3rem 0;
}

.event-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.event-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.event-details-grid {
    display: grid;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Simplified detail items without gradient icons */
.event-details-grid .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon-simple {
    font-size: 1.5rem;
    color: #4b5563;
    margin-top: 0.25rem;
}

/* Subsection titles without gradient line */
.business-subsection-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    position: relative;
    padding-left: 0 !important;
}

.business-subsection-title::before,
.business-subsection-title::after {
    display: none !important;
    content: none !important;
}

/* Remove any gradient lines from detail items */
.detail-item::before,
.detail-item::after,
.detail-content::before,
.detail-content::after {
    display: none !important;
}

.detail-item,
.detail-content {
    border-left: none !important;
}

/* Business contact info within detail items */
.detail-content .business-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.detail-content .business-contact-item-sidebar {
    padding: 0;
    background: none;
    border: none;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.detail-primary {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--text);
}

.detail-secondary {
    margin: 0 0 0.5rem 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.detail-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.detail-link:hover {
    text-decoration: underline;
}

.event-description {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
}

/* Business Reviews Section */
.business-reviews {
    background: white;
}

.business-rating-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 24px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .fa-star.filled {
    color: #fbbf24;
}

.rating-stars .fa-star.empty {
    color: #e5e7eb;
}

.rating-text {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.review-count {
    color: #6b7280;
}

.business-review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.business-review-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .fa-star.filled {
    color: #fbbf24;
    font-size: 14px;
}

.review-rating .fa-star.empty {
    color: #e5e7eb;
    font-size: 14px;
}

.review-date {
    color: #6b7280;
    font-size: 14px;
}

.review-text {
    color: #374151;
    line-height: 1.6;
}

.business-reviews-more {
    text-align: center;
    margin-top: 24px;
}

/* Removed business-btn-outline - now uses consolidated .btn-outline */

/* Featured Images Upload */
.featured-images-upload {
    background: white;
    border-radius: 12px;
    padding: 24px;
}

.upload-instructions {
    margin-bottom: 20px;
    text-align: center;
}

.upload-instructions p {
    color: #6b7280;
    margin: 0;
    font-size: 14px;
}

.featured-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.featured-image-slot {
    position: relative;
    aspect-ratio: 4/3;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f9fafb;
}

.featured-image-slot:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.featured-image-slot.drag-over {
    border-color: #3b82f6;
    background: #dbeafe;
    transform: scale(1.02);
}

.featured-image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
}

.image-upload-placeholder i {
    font-size: 32px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.image-upload-placeholder p {
    color: #6b7280;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.remove-image-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
    z-index: 10;
}

.remove-image-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.upload-notes {
    text-align: center;
}

.upload-notes small {
    color: #9ca3af;
    font-size: 12px;
}

@media (max-width: 768px) {
    .featured-images-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .featured-image-slot {
        aspect-ratio: 16/9;
    }
}

/* Expandable Reviews Animation */
.business-review-list-additional {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.business-review-list-additional.expanding {
    opacity: 0;
    transform: translateY(-20px);
}

.business-review-list-additional.expanded {
    opacity: 1;
    transform: translateY(0);
}

.event-map {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.event-map iframe {
    display: block;
    width: 100%;
}

.map-footer {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.map-address i {
    color: var(--primary);
}

.map-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-link:hover {
    text-decoration: underline;
}

.business-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.business-info-header {
    margin-bottom: 1rem;
}

.business-info-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.business-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.business-description {
    margin: 1rem 0;
    color: var(--muted);
    line-height: 1.6;
}

.business-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.375rem;
    flex-wrap: wrap;
}


.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Removed - using consolidated .btn-action */

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

/* Removed - share buttons will use new consolidated system */

/* Event layout styling to match business layout */
.event-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

.event-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.event-sidebar .business-card {
    padding: 2rem;
    margin: 0 0 2rem 0;
}

.event-sidebar .business-card:last-child {
    margin-bottom: 0;
}

/* Event content margins to match business page layout */
.event-content[style*="padding-top: 0"] {
    padding: 30px 20px !important;
    background: #f8fafc !important;
}

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


/* Event hero with business hero styling but custom layout for date */
.business-hero .event-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.business-hero .event-date-large {
    background: white;
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 100px;
    max-width: 100px;
    flex-shrink: 0;
}

.business-hero .event-title-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.business-hero .hero-title {
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.business-hero .event-business-info {
    text-align: center;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.business-hero .event-business-info .business-link {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
}

.business-hero .event-business-info .business-link:hover {
    text-decoration: underline;
}

.business-hero .event-month {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.business-hero .event-day {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin: 0.125rem 0;
}

.business-hero .event-year {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    margin: 0;
}

/* Responsive design for single event page */
@media (max-width: 1024px) {
    .event-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .event-hero {
        padding: 2rem 0;
    }
    
    .event-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .event-date-large {
        align-self: center;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .event-content {
        padding: 2rem 0;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .business-actions {
        justify-content: center;
    }
}

/* Listings Page */
.directory-page,
.events-page {
    padding: 1rem 0 2rem;
}

/* SEO Content Sections */
.location-seo-content,
.category-seo-content {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.location-seo-content h2,
.category-seo-content h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-seo-content p,
.category-seo-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.location-seo-content p:last-child,
.category-seo-content p:last-child {
    margin-bottom: 0;
}

.directory-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.directory-controls {
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.results-summary {
    flex-shrink: 0;
}

.results-count {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
}

.no-results {
    color: var(--muted);
    font-style: italic;
    margin: 0;
}

.controls-form {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.controls-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.control-input,
.control-select {
    padding: 0.6rem 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.control-input {
    min-width: 160px;
}

.control-input-wide {
    padding: 0.6rem 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    min-width: 300px;
    transition: border-color 0.3s ease;
}

.control-input-wide:focus {
    outline: none;
    border-color: var(--primary);
}

.control-select {
    min-width: 120px;
}

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

/* Removed - using consolidated .btn-primary */

.clear-all {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.clear-all:hover {
    color: var(--primary);
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.no-directory-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.no-directory-message h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.no-directory-message p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.directory-pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.directory-pagination .page-numbers {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding: 0;
    align-items: center;
}

.directory-pagination .page-numbers li {
    margin: 0;
}

.directory-pagination .page-numbers a,
.directory-pagination .page-numbers span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.directory-pagination .page-numbers a:hover {
    border-color: var(--action-green);
    color: var(--action-green);
    background: #f8fafc;
    transform: translateY(-1px);
}

.directory-pagination .page-numbers .current {
    background: var(--action-green);
    border-color: var(--action-green);
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.directory-pagination .page-numbers .prev,
.directory-pagination .page-numbers .next {
    width: auto;
    padding: 0 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.pagination-info {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Plan Restriction Styling */
.plan-restriction-message {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted);
}

.plan-restriction-message i {
    font-size: 1.5rem;
    color: #6c757d;
    flex-shrink: 0;
}

.plan-restriction-message p {
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
}

.plan-restriction-message a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.plan-restriction-message a:hover {
    text-decoration: underline;
}

.business-contact-item-sidebar.plan-restricted {
    background: #f8f9fa;
    color: #9ca3af;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px dashed #dee2e6;
}

.business-contact-item-sidebar.plan-restricted:hover {
    background: #f8f9fa;
    transform: none;
    color: #9ca3af;
}

.business-contact-item-sidebar.plan-restricted i {
    color: #9ca3af;
}

.business-contact-item-sidebar.plan-restricted i.fa-lock {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.business-contact-item-sidebar.plan-restricted a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.business-contact-item-sidebar.plan-restricted a:hover {
    text-decoration: underline;
}

/* Grayscale locked section headers only */
.business-section.plan-locked .business-section-title {
    color: #9ca3af;
    filter: grayscale(1);
    opacity: 0.6;
}

/* Plan restricted sidebar cards */
.business-card.plan-restricted-card {
    background: #f8f9fa;
    border: 1px dashed #dee2e6;
    opacity: 0.8;
}

.business-card.plan-restricted-card .business-card-title {
    color: #9ca3af !important;
}

.business-card.plan-restricted-card .plan-restriction-message {
    background: transparent;
    border: none;
    padding: 1rem 0;
}

/* Plan restricted image placeholder */
.business-image-placeholder.plan-restricted {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.business-image-placeholder.plan-restricted i {
    font-size: 2rem;
    color: #6c757d;
}

.business-image-placeholder.plan-restricted p {
    margin: 0;
    font-size: 0.95rem;
}

.business-image-placeholder.plan-restricted a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.business-image-placeholder.plan-restricted a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .directory-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .results-summary {
        text-align: center;
    }
    
    .controls-form {
        justify-content: center;
    }
    
    .controls-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .control-input,
    .control-input-wide,
    .control-select {
        min-width: 140px;
    }
    
    .directory-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 320px));
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .controls-row {
        flex-direction: column;
        width: 100%;
    }
    
    .control-input,
    .control-input-wide,
    .control-select,
    .btn {
        width: 100%;
        min-width: auto;
    }
    
    .directory-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 320px));
        justify-content: center;
        gap: 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .directory-controls {
        padding: 1rem;
    }
    
    .directory-page {
        padding: 0.5rem 0 1rem;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Business Grid */
.featured-businesses {
    padding: 2rem 0;
    background: rgba(79, 70, 229, 0.02);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-content: stretch;
}

.business-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: none;
    width: 100%;
    margin: 0;
}

.business-card:hover {
    transform: translateY(-8px);
}

/* Free Business Cards */
.business-card:not(.premium-business):not(.vip-business):hover {
    border: 2px solid #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}


/* Premium Business Cards */
.business-card.premium-business:hover {
    border: 2px solid #c0c0c0;
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.15);
}

.premium-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.premium-badge:hover {
    background: linear-gradient(135deg, #d4d4d4, #b8b8b8);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* VIP Business Cards */
.business-card.vip-business:hover {
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.vip-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.vip-badge:hover {
    background: linear-gradient(135deg, #ffed4a, #fbbf24);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.premium-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.premium-badge:hover {
    background: linear-gradient(135deg, #e5e5e5, #c0c0c0);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(192, 192, 192, 0.4);
}

.free-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: none; /* Hide FREE badges on home page */
}

.free-badge:hover {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.business-image {
    height: 200px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-image {
    color: var(--muted);
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

/* Business card content */
.business-card .business-content {
    padding: 1rem 1rem 0.5rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.business-content-bottom {
    margin-top: 0.5rem;
}

/* Category Tags for Business Cards */
.business-card .business-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.business-category-tag {
    background: #3b82f6 !important;
    color: #ffffff !important;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    border: none !important;
    transition: all 0.2s ease;
    display: inline-block;
    text-transform: capitalize;
}

.business-category-tag:hover {
    background: #2563eb !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

/* Business Title */
.business-title {
    margin: 0 0 0.15rem 0;
    font-size: 1.1rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    margin-bottom: 0.15rem;
    line-height: 1;
}

.business-rating .stars {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.business-title a {
    color: inherit;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.business-category {
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #f59e0b;
}

.business-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 0.15rem;
    min-width: 0;
}

.business-address svg {
    flex-shrink: 0;
}

.business-address-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* Business Card Footer */
.business-card-footer {
    border-top: 1px solid #e5e7eb;
    background: #fafafa;
    height: 45px;
    min-height: 45px;
    max-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.business-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

/* Duplicate button styles removed - using consolidated system */

/* Removed - using consolidated button system */

/* Business card action buttons - green icons with no background */
.business-actions .btn {
    background: transparent !important;
    border: none !important;
    color: var(--action-green) !important;
    padding: 0.5rem !important;
    font-size: 1.25rem !important;
    min-width: auto !important;
}

.business-actions .btn:hover {
    background: transparent !important;
    color: var(--action-green-hover) !important;
    transform: scale(1.1);
}

/* Edit Business Styles */
.business-hero.edit-mode {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
}

/* Hours editing controls - make them look like original but editable */
.hours-edit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.closed-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.closed-checkbox:hover {
    opacity: 1;
}

.closed-checkbox input[type="checkbox"] {
    margin: 0;
    transform: scale(0.9);
}

.closed-text {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.time-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.open-time-input,
.close-time-input {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #374151;
    padding: 2px 4px;
    min-width: 70px;
    transition: all 0.3s ease;
}

.open-time-input:hover,
.close-time-input:hover {
    background: #f8fafc;
    border-color: #e5e7eb;
}

.open-time-input:focus,
.close-time-input:focus {
    outline: none;
    background: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.time-display .separator {
    margin: 0 8px;
    color: #9ca3af;
    font-weight: 500;
}

/* Match original closed styling exactly */
.business-hours-table .closed {
    color: #dc2626;
    font-weight: 600;
    background: #fef2f2;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
}

/* Today row special styling for edit mode */
.business-hours-table tr.today .open-time-input,
.business-hours-table tr.today .close-time-input {
    color: #92400e;
    font-weight: 600;
}

/* Disabled/closed day styling for edit mode */
.business-hours-table .open-time-input:disabled,
.business-hours-table .close-time-input:disabled {
    color: #9ca3af !important;
    cursor: not-allowed;
    background: transparent !important;
}

.business-hours-table .time-display.disabled {
    opacity: 0.6;
}

.business-hours-table .time-display.disabled .separator {
    color: #9ca3af !important;
}

.business-hours-table tr.today .open-time-input:hover,
.business-hours-table tr.today .close-time-input:hover {
    background: #fef3c7;
}

.business-hours-table tr.today .time-display .separator {
    color: #92400e;
}


/* Edit business image gallery */
.business-image-gallery {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Consolidated with the other business-main-image-container definition below */

.business-thumbnails-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow: hidden;
    flex: 1;
    transition: transform 0.3s ease;
}

.business-thumbnail {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.business-thumbnail:hover {
    border-color: var(--primary);
}

.business-thumbnail.active {
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

/* Responsive behavior for Quick Info */
.mobile-quick-info {
    display: none;
}

.desktop-quick-info {
    display: block;
}

@media (max-width: 768px) {
    .business-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mobile-quick-info {
        display: block;
        margin: 1rem 0;
    }
    
    .desktop-quick-info {
        display: none;
    }
    
    .business-sidebar {
        order: -1;
    }
}

/* Edit form styling */
.edit-field {
    margin: 0.5rem 0;
}

.edit-field input,
.edit-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.edit-field input:focus,
.edit-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.contact-input {
    background: transparent !important;
    border: 1px solid #e9ecef !important;
    border-radius: 6px !important;
    padding: 0.5rem !important;
}

.hero-title.editable-title {
    background: transparent;
    border: 2px dashed rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.hero-title.editable-title:focus {
    outline: none;
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
}

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

.edit-business-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

/* Footer Logo */
.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    background: white;
    border-radius: 12px;
    padding: 4px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
}

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

/* Company Section Styling */
.company-section {
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
}

.company-details {
    margin-top: 0.75rem;
}

.company-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.company-address i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 16px;
}

.company-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 16px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary);
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-section {
        border-left: none;
        border-top: 3px solid var(--primary);
        padding-left: 0;
        padding-top: 1.5rem;
        margin-top: 1rem;
    }
    
    .company-contact {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .contact-item {
        flex: 1;
        min-width: 200px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Page */
.pricing-hero {
    background: linear-gradient(90deg, #59782e, #0d3ba3);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.pricing-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.pricing-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--white);
}

.save-badge {
    background: var(--accent);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--accent);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-section {
    padding: 2rem 0;
    background: #fafafa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.plan-description {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--muted);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 4px;
}

.period {
    font-size: 1rem;
    color: var(--muted);
}

.price-note {
    font-size: 0.875rem;
    color: var(--muted);
}

.plan-features h4 {
    font-size: 1rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--dark);
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.features-list.included li {
    color: var(--text);
}

.features-list.not-included li {
    color: var(--muted);
    text-decoration: line-through;
}

.features-list.addons li {
    color: var(--text);
    justify-content: space-between;
}

.check-icon, .x-icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    flex-shrink: 0;
}

.check-icon {
    color: #10b981;
}

.x-icon {
    color: #ef4444;
}

.addon-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.75rem;
}

.plan-cta {
    text-align: center;
    margin-top: 2rem;
}

.free-plan .plan-name {
    color: #10b981;
}

.premium-plan .plan-name {
    color: #f59e0b;
}

.vip-plan .plan-name {
    background: linear-gradient(135deg, #9333ea, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--action-green);
    color: var(--action-green);
}

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

/* Business Detail Page Enhancements */
.business-header-premium,
.business-header-vip {
    position: relative;
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.business-header-vip {
    background: linear-gradient(135deg, #9333ea, #c084fc);
}

.vip-banner {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vip-text {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}

.business-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tier-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Gallery Styles */
.business-gallery {
    margin-bottom: 3rem;
}

.gallery-main {
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
}

.gallery-thumb {
    cursor: pointer;
    border-radius: 0.5rem;
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary);
}

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

/* Enhanced Description */
.enhanced-description {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary);
}

/* Services Grid */
.business-services {
    margin: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-price {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Special Offers */
.business-offers {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2rem;
    border-radius: 1rem;
    margin: 3rem 0;
}

.business-offers h2 {
    color: #d97706;
}

/* Enhanced Map */
.enhanced-map {
    margin: 3rem 0;
}

/* Video Section */
.business-video {
    margin: 3rem 0;
}

.business-video iframe {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Quick Contact Card */
.quick-contact-card {
    background: linear-gradient(135deg, #ede9fe, #e9d5ff);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.quick-contact-card h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-business-form .form-group {
    margin-bottom: 1rem;
}

.contact-business-form input,
.contact-business-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-business-form input:focus,
.contact-business-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-block {
    width: 100%;
}

/* Responsive */
/* Large screens - show 4 cards */
@media (min-width: 1600px) {
    .business-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

/* Medium-large screens - show 3 cards */
@media (min-width: 1200px) and (max-width: 1599px) {
    .business-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

/* Medium screens - show 2-3 cards */
@media (min-width: 768px) and (max-width: 1199px) {
    .business-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

/* Small screens - show 1-2 cards */
@media (min-width: 480px) and (max-width: 767px) {
    .business-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    /* Reduce container padding on small screens */
    .container {
        padding: 0 0.75rem;
    }
    
    .business-section {
        padding: 1.5rem 1rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
}

/* Mobile screens - show 1 card */
@media (max-width: 479px) {
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Reduce container padding on mobile */
    .container {
        padding: 0 0.5rem;
    }
    
    .business-section {
        padding: 1.25rem 0.75rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
}

/* Other responsive styles */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .search-form { flex-direction: column; }
    .main-navigation ul { flex-direction: column; gap: 1rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-toggle { flex-wrap: wrap; gap: 0.5rem; }
    .toggle-label { font-size: 0.875rem; }
}

/* Add Business Page Styles */

.add-business-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.add-business-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .add-business-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.business-form-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.business-form .form-section {
    display: block !important;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

#subcategory-group {
    margin-top: 1rem;
}

.business-form .form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.business-form .form-section h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #007cba;
    display: inline-block;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007cba;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.plan-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-option {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.plan-option:hover,
.plan-option.selected {
    border-color: #007cba;
    background: #f8fbff;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.plan-radio {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plan-radio input[type="radio"] {
    margin-top: 4px;
    width: auto;
}

.plan-radio label {
    margin: 0;
    cursor: pointer;
    flex-grow: 1;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    min-width: 200px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.info-card:last-child {
    margin-top: 40px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li:before {
    content: "✓";
    color: #4f46e5;
    font-weight: bold;
    margin-right: 8px;
}



/* Business Suggestions Dropdown */
.business-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #007cba;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background-color: #f8fbff;
}

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

.suggestion-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.suggestion-address {
    font-size: 0.9rem;
    color: #666;
}

.form-group {
    position: relative;
}

.business-suggestions::-webkit-scrollbar {
    width: 6px;
}

.business-suggestions::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.business-suggestions::-webkit-scrollbar-thumb {
    background: #007cba;
    border-radius: 3px;
}

/* Business Hours Styles */
.hours-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

/* Account Settings Styles */
.account-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.account-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.account-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.account-card-header h3 {
    margin: 0;
    color: var(--dark);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-info .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.account-info .info-row:last-child {
    border-bottom: none;
}

.account-info label {
    font-weight: 600;
    color: var(--muted);
    margin: 0;
}

.account-info span {
    color: var(--dark);
    font-weight: 500;
}

.account-edit-form .form-group {
    margin-bottom: 1.5rem;
}

.account-edit-form .form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.plan-badge-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    width: 100%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.plan-badge-large.free {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.plan-badge-large.premium {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: white;
}

.plan-badge-large.vip {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: white;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text);
}

.feature-list .fa-check {
    color: #10b981;
}

.feature-list .fa-times {
    color: #ef4444;
}

.upgrade-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.upgrade-section h4 {
    margin: 0 0 0.5rem 0;
    color: var(--dark);
}

.upgrade-section p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.upgrade-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upgrade-options .btn {
    border-radius: 25px;
    font-weight: 700;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 3.5rem;
}

/* Premium upgrade button styling (silver) */
.upgrade-options .btn-primary[href*="premium"] {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    border: none;
    color: white;
}

.upgrade-options .btn-primary[href*="premium"]:hover {
    background: linear-gradient(135deg, #d4d4d4, #b8b8b8);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.upgrade-options .btn-secondary {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    border: none;
    color: white;
}

.upgrade-options .btn-secondary:hover {
    background: linear-gradient(135deg, #ffe55c, #ffc400);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.upgrade-options .btn-free {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
}

.upgrade-options .btn-free:hover {
    background: linear-gradient(135deg, #34ce57, #17a2b8);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.vip-message {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f3e8ff, #faf5ff);
    border-radius: 8px;
    border: 1px solid #d8b4fe;
}

.vip-message p {
    margin: 0;
    color: #7c3aed;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.security-info p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .account-settings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .account-card {
        padding: 1.5rem;
    }
    
    .account-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .account-edit-form .form-actions {
        flex-direction: column;
    }
    
    .upgrade-options {
        gap: 0.75rem;
    }
}

.hours-row:last-child {
    border-bottom: none;
}

.day-label {
    font-weight: 600;
    color: #333;
}

.hours-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.closed-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-width: 80px;
    margin-left: 15px;
}

.closed-checkbox input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    margin: 0;
}

.time-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
    flex: 1;
}

.time-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time-group label {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.time-inputs input[type="time"] {
    padding: 8px 12px;
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    min-width: 120px;
}

.time-inputs input[type="time"]:focus {
    border-color: #007cba;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.time-inputs.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Form Help Text */
.form-help {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-top: 4px;
    font-style: italic;
}

/* File Input Styling */
.form-group input[type="file"] {
    padding: 8px 12px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: #007cba;
    background: #ffffff;
}

.form-group input[type="file"]:focus {
    border-color: #007cba;
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Acknowledgment Checkbox Styling */
.acknowledgment-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 16px;
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.acknowledgment-checkbox:hover {
    border-color: #007cba;
    background: #ffffff;
}

.acknowledgment-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
    cursor: pointer;
    transform: scale(1.2);
}

.acknowledgment-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* Form Actions Spacing */
.form-actions {
    margin-top: 5px;
    margin-bottom: 30px;
    text-align: center;
}

/* Remove extra spacing from acknowledgment section */
.acknowledgment-section {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
    border-bottom: none;
}

.acknowledgment-group {
    margin-bottom: 0;
    margin-top: 0;
}

.acknowledgment-checkbox {
    margin-bottom: 0;
    margin-top: 0;
}

/* Mobile Menu Styles */
.site-header .header-inner .mobile-menu-toggle {
    display: none !important;
    background: transparent !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    cursor: pointer !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1rem !important;
    z-index: 1001 !important;
    position: relative !important;
    box-sizing: border-box !important;
    color: #333 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    height: auto !important;
    width: auto !important;
}

.site-header .header-inner .mobile-menu-toggle:hover {
    background: rgba(0,0,0,0.05) !important;
    border: none !important;
    transform: translateY(-1px) !important;
}

.site-header .header-inner .mobile-menu-toggle i {
    font-size: 1rem !important;
    margin-right: 0.25rem !important;
}

.site-header .header-inner .mobile-menu-toggle .menu-text {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    max-width: 85vw;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 4rem 2rem 2rem 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0 0;
}

.mobile-nav-menu li {
    margin-bottom: 0.25rem;
}

.mobile-nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--primary);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}


.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Search Container - Reduced spacing */
.search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.search-row {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
}

.search-field {
    flex: 1;
}

.search-input {
    width: 100%;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    outline: none;
    border-radius: 0.75rem;
    background: transparent;
    color: #1e293b;
}

.search-input::placeholder {
    color: #64748b;
}

.search-select {
    width: 100%;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    outline: none;
    border-radius: 0.75rem;
    background: transparent;
    color: #1e293b;
    cursor: pointer;
}

/* Removed - using consolidated .btn-search */

/* Desktop - Hide mobile menu elements */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-nav-overlay {
        display: none !important;
    }
    
    .main-navigation {
        display: block !important;
    }
    
    .main-navigation ul {
        display: flex !important;
    }
}

/* Responsive - Tablets and Phones */
@media screen and (max-width: 1024px) {
    /* Mobile Menu Toggle - Force Display */
    .site-header .header-inner .mobile-menu-toggle,
    .header-inner .mobile-menu-toggle,
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important;
        border: none !important;
        border-radius: var(--radius-md) !important;
        color: #333 !important;
        padding: 0.75rem 1rem !important;
        gap: 0.5rem !important;
        font-size: 0.875rem !important;
        font-weight: 500 !important;
        transition: all 0.3s ease !important;
        height: auto !important;
        width: auto !important;
    }
    
    .site-header .header-inner .mobile-menu-toggle:hover,
    .header-inner .mobile-menu-toggle:hover,
    .mobile-menu-toggle:hover {
        background: rgba(0,0,0,0.05) !important;
        border: none !important;
        transform: translateY(-1px) !important;
    }
    
    /* Hide desktop navigation completely */
    .site-header .header-inner .main-navigation,
    .header-inner .main-navigation,
    .main-navigation {
        display: none !important;
        visibility: hidden !important;
    }
    
    .site-header .header-inner .main-navigation ul,
    .header-inner .main-navigation ul,
    .main-navigation ul,
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Container adjustments for mobile */
    .container {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    /* Header improvements */
    .header-inner {
        justify-content: space-between;
        align-items: center;
    }
    
    .site-header {
        padding: 1rem 0;
    }
    
    /* Responsive search form */
    .search-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-field {
        width: 100%;
    }
    
    .btn-search {
        width: 100%;
        padding: 1rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #06b6d4 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.about-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    opacity: 0.9;
    font-weight: 300;
    margin: 0;
}

.about-content {
    background: #f8fafc;
    padding: 4rem 0;
}

.about-section {
    margin-bottom: 1rem;
    padding: 2rem 1rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section:first-child {
    margin-top: 0;
}

.about-section .section-title {
    margin-bottom: 1rem !important;
}

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #06b6d4 100%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border-radius: 2px;
}

/* Name Meaning Section */
.meaning-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.name-breakdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.name-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.word-part {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.meaning {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    text-align: center;
}

.plus-sign, .equals-sign {
    font-size: 2rem;
    font-weight: 600;
    color: #4f46e5;
}

.name-result {
    background: radial-gradient(circle at center, #4f46e5, #06b6d4);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.95;
    text-align: center;
    line-height: 1.4;
}

/* Mission Section */
.mission-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.mission-text:last-child {
    margin-bottom: 0;
}

/* Impact Section */
.impact-section {
    padding: 2rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 1rem;
    line-height: 1;
}

.impact-title {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.impact-text {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Story Section */
.story-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.story-content .section-title::after {
    left: 0;
    transform: none;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.story-text:last-child {
    margin-bottom: 0;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Values Section */
.values-section {
    padding: 2rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.value-title {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-text {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    background: white;
    padding: 4rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.member-name {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #06b6d4 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #4f46e5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-content {
        padding: 2rem 0;
    }
    
    .about-section {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-section,
    .story-section,
    .team-section,
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content .section-title {
        text-align: center;
    }
    
    .story-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
}

/* Login Page Styles */
.login-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.login-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.login-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #06b6d4 100%);
    color: white;
}

.login-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-header p {
    opacity: 0.9;
    margin: 0;
}

.alert {
    padding: 1rem;
    margin: 1rem 2rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.login-forms {
    padding: 0 2rem 2rem;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group small {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.1rem;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-full {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.form-footer p {
    margin: 0.5rem 0;
}

.form-footer a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Dashboard Page Styles */
.dashboard-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 2rem 0;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: #64748b;
    font-size: 1.125rem;
    margin: 0;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.stat-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.875rem;
}

.dashboard-content {
    display: grid;
    gap: 2rem;
}

.dashboard-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0;
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.business-dashboard-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.business-dashboard-card:hover {
    border-color: #4f46e5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.business-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.business-card-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.25rem;
}

.business-tier-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.business-tier-badge.free {
    background: #f3f4f6;
    color: #374151;
}

.business-tier-badge.premium {
    background: #fbbf24;
    color: #92400e;
}

.business-tier-badge.vip {
    background: #8b5cf6;
    color: white;
}

.business-card-content {
    margin-bottom: 0.5rem;
}

.business-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.business-address,
.business-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.business-address i,
.business-phone i {
    color: #9ca3af;
}

.business-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-secondary {
    background: #64748b;
    color: white;
    border: 2px solid #64748b;
}

.btn-secondary:hover {
    background: #475569;
    border-color: #475569;
}

.no-businesses-message,
.no-events-message {
    text-align: center;
    padding: 3rem;
}

.empty-state {
    color: #64748b;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.empty-state p {
    margin-bottom: 1.5rem;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.event-list-item:hover {
    border-color: #4f46e5;
}

.event-date-badge {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.event-business,
.event-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.event-business i,
.event-time i {
    color: #9ca3af;
}

.event-actions {
    display: flex;
    gap: 0.5rem;
}

.section-footer {
    text-align: center;
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-page {
        padding: 1rem 0;
    }
    
    .dashboard-header h1 {
        font-size: 2rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .business-cards {
        grid-template-columns: 1fr;
    }
    
    .business-card-actions {
        justify-content: center;
    }
    
    .event-list-item {
        flex-direction: column;
        text-align: center;
    }
    
    .event-info {
        order: 1;
    }
    
    .event-date-badge {
        order: 2;
    }
    
    .event-actions {
        order: 3;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .login-wrapper {
        margin: 0 1rem;
    }
}

/* Popular Categories Carousel Styles */
.popular-categories {
    padding: 30px 0;
    background: #f8fafc;
}

.categories-carousel-wrapper {
    position: relative;
    margin: 0 -40px; /* Space for nav buttons */
}

.categories-carousel {
    overflow: hidden;
    margin: 0 40px; /* Space for nav buttons */
}

.categories-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.category-card {
    flex: 0 0 calc(25% - 15px); /* 4 cards per row with gap */
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #4f46e5;
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    transform: scale(1.1);
}

.category-icon i {
    font-size: 36px;
    color: white;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.category-count {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-nav:hover:not(:disabled) {
    background: #4f46e5;
    border-color: #4f46e5;
    color: white;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-nav i {
    font-size: 16px;
    color: #64748b;
}

.carousel-nav:hover:not(:disabled) i {
    color: white;
}

/* Responsive Carousel */
@media (max-width: 1200px) {
    .category-card {
        flex: 0 0 calc(33.333% - 13.33px); /* 3 cards per row */
    }
}

@media (max-width: 992px) {
    .category-card {
        flex: 0 0 calc(33.333% - 13.33px); /* 3 cards per row */
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .popular-categories {
        padding: 40px 0;
    }
    
    .category-card {
        flex: 0 0 calc(50% - 10px); /* 2 cards per row */
        padding: 20px 15px;
    }
    
    .category-name {
        font-size: 16px;
    }
    
    .categories-carousel-wrapper {
        margin: 0 -30px;
    }
    
    .categories-carousel {
        margin: 0 30px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
    
    .carousel-nav i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .category-card {
        flex: 0 0 calc(100% - 0px); /* 1 card per row */
    }
    
    .categories-track {
        gap: 15px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .category-icon i {
        font-size: 26px;
    }
}

/* Submenu Styles for Locations */
.nav-menu .has-submenu {
    position: relative;
}

/* Locations Accordion Styles */
.locations-accordion {
    min-width: 320px;
    max-width: 400px;
    max-height: 400px;
    overflow-y: auto;
    width: max-content;
}

.locations-accordion-inner {
    padding: 0;
}

.state-accordion-item {
    border-bottom: 1px solid #f1f1f1;
    margin: 0;
}

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

.state-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0.5rem;
    margin: 0;
}

.state-name-link {
    flex: 1;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.125rem 0;
    margin: 0;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.state-name-link:hover {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
}

.state-toggle {
    background: none;
    border: none;
    padding: 0.125rem;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s ease;
    margin: 0;
}

.state-toggle:hover {
    color: #1e1b4b;
}

.state-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

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

.city-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.state-accordion-item.active .city-accordion-content {
    max-height: 300px;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 0.75rem;
    padding-bottom: 0.25rem;
    padding-top: 0.125rem;
    background: #f8f9fa;
    border-left: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.city-list li {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    flex: none;
}

.city-list a {
    display: block;
    padding: 0.125rem 0.375rem;
    margin: 0;
    color: #64748b;
    text-decoration: none;
    font-size: 0.813rem;
    line-height: 1.1;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.city-list a:hover {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
    padding-left: 0.5rem;
}

.nav-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 0.5rem;
    list-style: none;
    padding: 0;
}

.nav-menu .has-submenu:hover .submenu,
.nav-menu .has-submenu.active .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .submenu li {
    margin: 0;
    list-style: none;
}

.nav-menu .submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.nav-menu .submenu li:last-child a {
    border-bottom: none;
}

.nav-menu .submenu a:hover {
    background: #f3f4f6;
    color: #4f46e5;
}

/* Override for locations menu with maximum specificity */
.main-navigation .nav-menu .has-submenu .submenu.locations-accordion .state-name-link:hover {
    color: var(--primary) !important;
    background: rgba(79, 70, 229, 0.1) !important;
}

.main-navigation .nav-menu .has-submenu .submenu.locations-accordion .city-list li a:hover {
    color: var(--primary) !important;
    background: rgba(79, 70, 229, 0.1) !important;
}

.main-navigation .nav-menu .has-submenu .submenu.locations-accordion .state-toggle:hover {
    color: var(--primary) !important;
}


.nav-menu .submenu .submenu-arrow {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Second level submenu (cities) */
.nav-menu .submenu .has-submenu {
    position: relative;
}

.nav-menu .submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0.5rem;
    margin-top: 0;
    min-width: 180px;
}

.nav-menu .city-submenu {
    max-height: 300px;
}

/* Mobile submenu styles */
.mobile-nav-menu .has-submenu {
    position: relative;
}

.mobile-nav-menu .mobile-submenu {
    display: none;
    background: #f8f9fa;
    margin-left: 1rem;
    border-left: 2px solid #e5e7eb;
    max-height: 300px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
}

.mobile-nav-menu .has-submenu.active > .mobile-submenu {
    display: block;
}

.mobile-nav-menu .submenu-toggle {
    position: relative;
    padding-right: 2rem;
}

.mobile-nav-menu .submenu-toggle i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

/* Mobile State Header - separate clickable state name from toggle button */
.mobile-state-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-state-header .state-name-link {
    flex: 1;
    padding: 0.5rem 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-state-header .state-name-link:hover {
    color: var(--primary);
}

.mobile-state-header .submenu-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-state-header .submenu-toggle:hover {
    color: var(--primary);
}

.mobile-nav-menu .state-link {
    display: block;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    font-size: 0.875rem;
    color: #4f46e5;
    border-bottom: 1px solid #e5e7eb;
}



/* Logo Image Styles */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo .logo-image {
    height: 80px;
    width: auto;
    max-width: 400px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .site-logo .logo-image {
        height: 64px;
    }
}

/* Updated Logo Styles with Text */
.site-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.site-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(90deg, #59782e, #0d3ba3);
    -webkit-background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Keep existing logo image styles and add flex properties */
.site-logo:hover .logo-text {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

@media (max-width: 480px) {
    .site-logo .logo-text {
        font-size: 1.5rem;
    }
}

/* AI Insights Styling */
.ai-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.insight-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.insight-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.insight-header h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.insight-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ai-results-container {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
    overflow: hidden;
}

.results-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-header h3 {
    margin: 0;
    color: #1e293b;
}

.results-content {
    padding: 1.5rem;
}

.loading-spinner {
    text-align: center;
    padding: 2rem;
    color: #4f46e5;
    font-size: 1.1rem;
}

.loading-spinner i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .ai-insights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .insight-card {
        padding: 1rem;
    }
}

/* AI Results Styling */
.ai-analytics-results, 
.ai-review-insights-results, 
.ai-recommendations-results {
    line-height: 1.6;
}

.ai-analytics-results h4,
.ai-review-insights-results h4,
.ai-recommendations-results h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.analytics-grid,
.review-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.metric-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #64748b;
    font-size: 0.9rem;
}

.ai-insights h5,
.sentiment-breakdown h5,
.key-themes h5,
.ai-recommendations h5 {
    color: #1e293b;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.1rem;
}

.ai-insights ul {
    list-style: none;
    padding: 0;
}

.ai-insights li {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0 4px 4px 0;
}

/* Sentiment Analysis Styling */
.sentiment-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.sentiment-bar {
    padding: 0.5rem;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    min-width: 100px;
    transition: all 0.3s ease;
}

.sentiment-bar.positive {
    background: #10b981;
}

.sentiment-bar.neutral {
    background: #6b7280;
}

.sentiment-bar.negative {
    background: #ef4444;
}

/* Theme Tags */
.theme-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.theme-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Recommendations Styling */
.priority-recommendations,
.business-recommendations,
.general-recommendations {
    margin: 2rem 0;
}

.recommendation-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.recommendation-card.priority {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}

.recommendation-card h6 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.recommendation-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.recommendation-action {
    background: #f8fafc;
    border-radius: 4px;
    padding: 0.75rem;
    color: #475569;
    font-size: 0.9rem;
}

.business-rec-section {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.business-header {
    background: #f8fafc;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-header h6 {
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.completeness-score {
    color: #64748b;
    font-size: 0.9rem;
}

.rec-list {
    padding: 1rem;
}

.recommendation-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    gap: 1rem;
}

.recommendation-item.high {
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
}

.recommendation-item.medium {
    background: #dbeafe;
    border-left: 3px solid #3b82f6;
}

.recommendation-item.success {
    background: #dcfce7;
    border-left: 3px solid #22c55e;
}

.rec-title {
    font-weight: 500;
    color: #1e293b;
    flex: 1;
}

.rec-action {
    color: #64748b;
    font-size: 0.9rem;
    flex: 2;
}

.rec-success {
    padding: 1rem;
    text-align: center;
    color: #059669;
    font-weight: 500;
}

@media (max-width: 768px) {
    .analytics-grid,
    .review-metrics {
        grid-template-columns: 1fr;
    }
    
    .recommendation-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rec-title,
    .rec-action {
        flex: none;
        width: 100%;
    }
    
    .business-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Business Hero Section */
.business-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.business-hero-content {
    text-align: center;
}

.business-business-header {
    position: relative;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: white;
}

.vip-ribbon,
.premium-ribbon,
.free-ribbon {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.vip-ribbon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #92400e;
}

.premium-ribbon {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
}

.free-ribbon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.business-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.business-category-tag {
    background: #3b82f6 !important;
    color: #ffffff !important;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
    border: none !important;
}

/* Business Page Layout */
.business-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
}

.business-main {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.business-sidebar {
    position: sticky;
    top: 0;
    height: fit-content;
}

.business-section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-left: 0;
    margin-right: 0;
}

.business-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.business-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    margin: 0;
}

/* Sidebar business cards on single business page */
.business-sidebar .business-card {
    padding: 2rem;
    margin: 0 0 2rem 0;
}

.business-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.business-contact-item-sidebar {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.business-contact-item-sidebar:hover {
    color: #4f46e5;
}

.business-contact-item-sidebar i {
    width: 20px;
    margin-right: 0.75rem;
    color: #4f46e5;
}

/* Hide mobile quick info on desktop, show desktop sidebar */
.mobile-quick-info {
    display: none;
}

.desktop-quick-info {
    display: block;
}

@media (max-width: 1024px) {
    .business-layout {
        grid-template-columns: 1fr;
    }
    
    .business-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    /* On mobile/tablet, show mobile quick info and hide desktop sidebar */
    .mobile-quick-info {
        display: block;
        margin-bottom: 2rem;
    }
    
    .desktop-quick-info {
        display: none;
    }
}

/* Edit Business Form Styling */
.business-hero.edit-mode {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 3px solid #4f46e5;
}

.business-title-field {
    margin: 1rem 0;
}

.editable-title {
    background: transparent;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    width: 100%;
    transition: all 0.3s ease;
}

.editable-title:focus {
    border-color: #4f46e5;
    border-style: solid;
    background: rgba(79, 70, 229, 0.05);
    outline: none;
}

.edit-field {
    position: relative;
}

.contact-input {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: #1e293b;
    margin-left: 0.5rem;
    flex: 1;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: #4f46e5;
    background: rgba(79, 70, 229, 0.05);
    outline: none;
}

.business-contact-item-sidebar.edit-field {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.business-contact-item-sidebar.edit-field:hover {
    border-color: #cbd5e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.business-contact-item-sidebar.edit-field i {
    color: #4f46e5;
    width: 20px;
    margin-right: 0.75rem;
}

.edit-business-actions {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 2px solid #e2e8f0;
    padding: 1.5rem 0;
    margin-top: 3rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
    
    .contact-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .editable-title {
        font-size: 1.8rem;
    }
}

/* Edit Business Additional Fields */
.description-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    color: #1e293b;
    resize: vertical;
    transition: all 0.3s ease;
}

.description-textarea:focus {
    border-color: #4f46e5;
    border-style: solid;
    background: rgba(79, 70, 229, 0.05);
    outline: none;
}

.business-section.edit-mode {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.hours-input {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.9rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.hours-input:focus {
    border-color: #4f46e5;
    background: rgba(79, 70, 229, 0.05);
    outline: none;
}

/* Ensure consistent header padding across all screen sizes */
@media (max-width: 1024px) {
    .header-inner {
        padding: 0.25rem 0 \!important;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0.25rem 0 \!important;
    }
}

/* Pending Business Styles */
.business-dashboard-card.pending-business {
    border: 2px solid #f59e0b;
    background: #fffbeb;
    position: relative;
}

.business-dashboard-card.pending-business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}


.business-status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.business-status-badge.pending {
    background: #f59e0b;
    color: white;
}

.business-status-badge i {
    font-size: 10px;
}

.pending-business-message {
    width: 100%;
    padding: 12px;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    margin-top: 8px;
}

.pending-business-message p {
    margin: 0;
    font-size: 14px;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pending-business-message i {
    color: #f59e0b;
}

/* Dashboard Hero Section Plan Badge */
.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    flex-shrink: 0;
}

/* Make sure badges are visible in hero section */
.hero-badge .vip-badge,
.hero-badge .premium-badge,
.hero-badge .free-badge {
    display: inline-block !important;
    position: static !important;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .hero-badge {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .hero-header {
        text-align: center;
        align-items: center;
    }
    
    .hero-badge {
        align-self: center;
    }
}

/* Claim Business Styles */
.claim-business-card {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.claim-business-description {
    font-size: 14px;
    color: #4b5563;
    margin: 8px 0 16px 0;
    line-height: 1.4;
}

/* Ensure claim business buttons use green styling */
.claim-business-btn.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: var(--white) !important;
    border: none !important;
}

.claim-business-btn.btn-primary:hover {
    background: linear-gradient(135deg, #16a34a, #15803d) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.claim-business-modal .modal-content {
    max-width: 450px;
}

.claim-business-options {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.claim-business-options .btn {
    flex: 1;
    padding: 12px;
    font-size: 14px;
}

#login-form-container,
#register-form-container {
    margin-top: 20px;
}

.claim-business-modal .form-group {
    margin-bottom: 16px;
}

.claim-business-modal .form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.claim-business-modal .form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.claim-business-modal .btn-block {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}


/* ========================================= */
/* BUSINESS CARD CATEGORY TAGS - CUSTOM SIZED */
/* ========================================= */

/* Business card categories container - keep on same line */
.business-card .business-categories {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    overflow: hidden !important;
}

/* Override for business cards only */
.business-card .business-category-tag,
.business-dashboard-card .business-category-tag {
    background: #3b82f6 !important;
    color: #ffffff !important;
    padding: 4px 4px !important; /* Custom padding */
    border-radius: 16px !important; /* Increased 50% from 11px */
    font-size: 10px !important; /* Custom font size */
    font-weight: 600 !important;
    border: none !important;
    display: inline-block !important;
    margin-right: 4px !important; /* Increased 50% from 3px */
    margin-bottom: 4px !important; /* Increased 50% from 3px */
    text-transform: capitalize !important;
    letter-spacing: 0.3px !important; /* Increased 50% from 0.2px */
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.business-card .business-category-tag:hover {
    background: #2563eb !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3) !important;
}

/* Google fallback image styling */
.google-fallback-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========================================= */
/* BUSINESS DETAIL PAGE STYLES (RESTORED) */
/* ========================================= */

/* Hero Section with Gradient */
.business-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    color: white;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.business-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 20s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

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

.business-business-header {
    position: relative;
}

/* Tier Ribbons - Positioned Correctly */
.vip-ribbon,
.premium-ribbon,
.free-ribbon {
    position: absolute;
    top: -10px;
    right: -20px;
    padding: 8px 24px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    transform: rotate(3deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.vip-ribbon {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #1a1a1a;
}

.premium-ribbon {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: white;
}

.free-ribbon {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
}

/* Section Headers with Blue Bar */
.business-section h2,
.business-section h3 {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.business-section h2::before,
.business-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

/* Photo Gallery Section */
.business-gallery {
    margin: 2rem 0;
}

.gallery-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
}

.gallery-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: #3b82f6;
    transform: scale(1.05);
}

/* Send Message Section */
.message-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.message-section h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-form input,
.message-form textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.message-form input:focus,
.message-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Message form buttons now use .btn-primary */

/* Share Section */
.share-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
    text-align: center;
}

.share-section h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Share Button Styles - Using consolidated button system */
.share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-button.facebook {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.share-button.twitter {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.share-button.email {
    background: #6b7280;
    color: white;
    border-color: #6b7280;
}

.share-button.copy {
    background: #f3f4f6;
    color: #374151;
    border-color: #e2e8f0;
}

/* Business Detail Page Styles - Restored from backup */
/* Hero Section */
.business-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    color: white;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 20s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

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

/* Tier Ribbons */
.vip-ribbon,
.premium-ribbon,
.free-ribbon {
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(15px);
    border: 3px solid;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 32px rgba(255, 255, 255, 0.2);
}

.vip-ribbon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: white;
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5), inset 0 0 32px rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.premium-ribbon {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: white;
    border-color: rgba(192, 192, 192, 0.8);
    box-shadow: 0 8px 32px rgba(192, 192, 192, 0.5), inset 0 0 32px rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.free-ribbon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5), inset 0 0 32px rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Business Content Layout */
/* Single business page content */
.single-business .business-content {
    padding: 30px 20px;
    background: #f8fafc;
}

/* Edit business page content - needs !important to override inline styles */
div.business-content[style*="padding-top: 0"] {
    padding: 30px 20px !important;
    background: #f8fafc !important;
}

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

.business-layout {
    display: grid;
    grid-template-columns: 1.8fr 455px;
    gap: 40px;
    align-items: start;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.business-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    overflow: hidden;
}

.business-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.business-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.business-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 2px;
}

/* Gallery */
.business-gallery-section {
    padding: 0;
}

/* Removed - now using unified .business-main-image-container */

.business-main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: block;
    background: #f8fafc;
}

/* Ensure edit business form images behave the same */
form .business-main-image,
#edit-business-form .business-main-image {
    width: 100% !important;
    height: 400px !important;
    object-fit: contain !important;
    object-position: center !important;
}

.business-gallery-container {
    position: relative;
    background: #f8fafc;
    padding: 20px;
    overflow: hidden;
    max-width: 100%;
    height: 140px;
}

.business-gallery-grid {
    display: flex;
    gap: 10px;
    overflow: visible;
    scroll-behavior: smooth;
    padding: 0 40px;
    transition: transform 0.3s ease;
    height: 100px;
    align-items: center;
    width: max-content;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 14px;
}

.gallery-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-nav-btn.prev {
    left: 10px;
}

.gallery-nav-btn.next {
    right: 10px;
}

.business-thumb {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s;
    border: 3px solid transparent;
    flex-shrink: 0;
    width: 120px;
}

.business-thumb:hover,
.business-thumb.active {
    border-color: #3b82f6;
    transform: scale(1.05);
}

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

/* Edit Business Gallery Styles */
.business-thumbnails-container {
    position: relative;
    background: #f8fafc;
    padding: 20px;
    overflow: hidden;
    max-width: 100%;
    height: 140px;
}

.business-thumbnails {
    display: flex;
    gap: 10px;
    overflow: visible;
    scroll-behavior: smooth;
    padding: 0 40px;
    transition: transform 0.3s ease;
    height: 100px;
    align-items: center;
    width: max-content;
}

.business-thumbnail {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s;
    border: 3px solid transparent;
    flex-shrink: 0;
    width: 120px;
}

.business-thumbnail:hover,
.business-thumbnail.active {
    border-color: #3b82f6;
    transform: scale(1.05);
}

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

.business-main-image-container {
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
    border-radius: 16px;
    margin-bottom: 20px;
    height: 400px;
}

/* Single Image */
.business-image-section {
    padding: 0;
}

.business-single-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Sidebar */
.business-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.business-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.business-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

/* Contact and Share sections */
.business-contact-card {
    background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
}

.business-contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.business-form-group input,
.business-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
}

.business-form-group input:focus,
.business-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Removed business-btn classes - now uses consolidated .btn system */

/* Share Buttons */
.business-share-buttons {
    display: flex;
    gap: 8px;
}

.business-share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.business-share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.business-share-facebook {
    background: #1877f2;
}

.business-share-twitter {
    background: #1da1f2;
}

.business-share-linkedin {
    background: #0077b5;
}

.business-share-email {
    background: #ea4335;
}

/* Contact Info Sidebar */
.business-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.business-contact-item-sidebar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 6px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.business-contact-item-sidebar:hover {
    background: #e0f2fe;
    border-color: #3b82f6;
    transform: translateX(4px);
}

.business-contact-item-sidebar i {
    color: #3b82f6;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.business-contact-item-sidebar span {
    font-size: 15px;
    font-weight: 500;
}

/* Address in sidebar */
.business-address-sidebar {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 6px;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.5;
}

.business-address-sidebar i {
    color: #3b82f6;
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .business-layout {
        grid-template-columns: 1fr;
    }
    
    .business-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .business-hero {
        padding: 40px 0;
    }
    
    .single-business .business-content {
        padding: 30px 8px;
    }
    
    div.business-content[style*="padding-top: 0"] {
        padding: 30px 8px !important;
    }
    
    .business-section {
        padding: 1.5rem 0.75rem;
    }
    
    .business-main-image {
        max-height: 400px;
    }
}

/* Hours Table Styling */
.business-hours-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.business-hours-table th,
.business-hours-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.business-hours-table td.day-hours {
    text-align: right !important;
}

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

.business-hours-table .day-name {
    font-weight: 600;
    color: #1e293b;
    width: 40%;
    text-align: left !important;
}

.business-hours-table .day-hours {
    color: #374151;
    text-align: right !important;
}

.business-hours-table tr.today {
    background: #fef3c7;
}

.business-hours-table tr.today .day-name {
    color: #d97706;
}

.business-hours-table tr.today .day-hours {
    color: #92400e;
}

.business-hours-table .closed {
    color: #dc2626;
    font-weight: 600;
}

.business-hours-table .open-time,
.business-hours-table .close-time {
    font-weight: 500;
}

.business-hours-table .separator {
    margin: 0 8px;
    color: #9ca3af;
}

/* Sidebar Hours Display */
.business-hours-sidebar {
    background: white;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.business-hours-sidebar .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.business-hours-sidebar .hours-row:last-child {
    border-bottom: none;
}

.business-hours-sidebar .hours-row.today {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    font-weight: 600;
    box-shadow: inset 0 0 0 2px #f59e0b;
    border-radius: 12px;
    margin: 4px;
    border-bottom: none !important;
}

.business-hours-sidebar .day-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
    min-width: 60px;
}

.business-hours-sidebar .hours-row.today .day-name {
    color: #d97706;
}

.business-hours-sidebar .day-time {
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
    text-align: right;
}

.business-hours-sidebar .hours-row.today .day-time {
    color: #92400e;
}

.business-hours-sidebar .closed {
    color: #dc2626;
    font-weight: 600;
    background: #fef2f2;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.hours-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    color: #3b82f6;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border-top: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.hours-expand-btn:hover {
    background: #e0f2fe;
    color: #2563eb;
}

.hours-expand-btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.hours-expanded {
    background: white;
}

.hours-expanded .hours-row {
    background: #f9fafb;
    margin: 2px 4px;
    border-radius: 8px;
    border-bottom: none;
}

/* Business Info Edit Fields - Gray background for editable, transparent for display */
.business-contact-item-sidebar.edit-field .contact-input {
    background: #f3f4f6 !important;
    border: 1px solid #e5e7eb;
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
}

.business-contact-item-sidebar.edit-field .contact-input:focus {
    background: #f9fafb !important;
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Display fields remain transparent */
.business-contact-item-sidebar:not(.edit-field) {
    background: transparent !important;
}

/* Business card category tag overrides */
.business-card .business-category-tag {
    background: #3b82f6 !important;
    color: #ffffff !important;
    padding: 4px 4px !important;
    font-size: 10px !important;
    border-radius: 16px !important;
    flex-wrap: nowrap !important;
}

/* Password input wrapper and toggle button */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 3rem;
}

.password-toggle-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.password-toggle-btn:hover {
    color: #374151;
}

.password-toggle-btn:focus {
    outline: none;
    color: #3b82f6;
}

/* Password validation styles */
.password-validation-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.password-validation-message.success {
    color: #10b981;
}

.password-validation-message.error {
    color: #ef4444;
}

/* Disabled button style */
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #9ca3af !important;
    border-color: #9ca3af !important;
}

.btn:disabled:hover {
    background-color: #9ca3af !important;
    border-color: #9ca3af !important;
    transform: none !important;
}

/* Compact login/register form styles */
.form-section .btn {
    margin-top: 0.5rem;
    padding: 0.6rem 1rem;
}

.form-footer {
    margin-top: 0.75rem;
    text-align: center;
}

.form-footer p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.checkbox-group {
    margin-bottom: 0.5rem;
}

.password-validation-message {
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

/* Extra compact register form */
.register-form-section .form-group {
    margin-bottom: 0.5rem;
}

.register-form-section .form-group label {
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
}

.register-form-section .form-group input {
    padding: 0.4rem;
    font-size: 0.95rem;
}

.register-form-section .form-group small {
    margin-top: 0.05rem;
    font-size: 0.75rem;
    line-height: 1.2;
}

.register-form-section .form-row {
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.register-form-section .password-validation-message {
    margin-top: 0.15rem;
    font-size: 0.75rem;
}

/* ==========================================================================
   DASHBOARD CIRCULAR PROGRESS CHARTS
   ========================================================================== */

/* Dashboard Score Circle */
.dashboard-score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#4CAF50 0deg, #4CAF50 0deg, rgba(0,0,0,0.1) 0deg, rgba(0,0,0,0.1) 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background 1s ease-in-out;
}

.dashboard-score-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    z-index: 1;
}

.dashboard-score-value {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
}

/* ==========================================================================
   BLOG CAROUSEL SECTION
   ========================================================================== */

.latest-blogs {
    padding: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.latest-blogs .container {
    padding: 20px 0;
}

.latest-blogs .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

.latest-blogs .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark);
    margin: 0;
    position: relative;
    display: inline-block;
}

.latest-blogs .section-title::after {
    content: '';
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #06b6d4 100%);
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    border-radius: 2px;
}


.blogs-carousel-wrapper {
    position: relative;
    margin: 0 -40px; /* Space for nav buttons */
}

.blogs-carousel {
    overflow: hidden;
    margin: 0 40px; /* Space for nav buttons */
}

.blogs-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.blog-card {
    min-width: 300px;
    max-width: 300px;
    width: 300px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--action-green) 0%, #20c997 100%);
    color: white;
}

.blog-card-placeholder i {
    font-size: 3rem;
    opacity: 0.8;
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 12px;
}

.blog-card-date {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-read-more {
    color: var(--action-green);
    font-weight: 600;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card-read-more {
    color: var(--action-green-hover);
    gap: 12px;
}

/* Blog Carousel Navigation - matches Popular Categories */
.blogs-carousel-wrapper .carousel-prev {
    left: 0;
}

.blogs-carousel-wrapper .carousel-next {
    right: 0;
}

/* No blogs message */
.no-blogs-message {
    text-align: center;
    padding: 30px 20px;
    color: var(--muted);
}

.no-blogs-message h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-card {
        min-width: 70px;
    }
}

@media (max-width: 768px) {
    .latest-blogs {
        padding: 0;
    }
    
    .latest-blogs .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .blog-card {
        min-width: 60px;
    }
    
    .blogs-track {
        gap: 10px;
    }
    
    .blogs-carousel-wrapper {
        margin: 0 -30px;
    }
    
    .blogs-carousel {
        margin: 0 30px;
    }
    
    .blog-card-content {
        padding: 15px;
    }
    
    .blog-card-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .blog-card {
        min-width: 50px;
    }
    
    .blogs-track {
        gap: 8px;
        padding: 0 10px;
    }
}
