/* Modern Informay.com Styles - Inspired by Chilliwack Connect */

/* Quill Rich Text Editor Styles */
#description-editor {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

#description-editor .ql-container {
  font-family: inherit;
  font-size: 1rem;
  min-height: 250px;
}

#description-editor .ql-toolbar {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom: 1px solid #ced4da;
  background-color: #f8f9fa;
  padding: 0.5rem;
}

#description-editor .ql-toolbar .ql-stroke {
  stroke: #495057;
}

#description-editor .ql-toolbar .ql-fill {
  fill: #495057;
}

#description-editor .ql-toolbar button:hover,
#description-editor .ql-toolbar button.ql-active {
  color: var(--primary-color);
}

#description-editor .ql-toolbar button:hover .ql-stroke,
#description-editor .ql-toolbar button.ql-active .ql-stroke {
  stroke: var(--primary-color);
}

#description-editor .ql-toolbar button:hover .ql-fill,
#description-editor .ql-toolbar button.ql-active .ql-fill {
  fill: var(--primary-color);
}

#description-editor .ql-editor {
  min-height: 250px;
  padding: 1rem;
}

#description-editor .ql-editor.ql-blank::before {
  color: #6c757d;
  font-style: normal;
}

/* Ensure Quill toolbar appears above Bootstrap modal */
.modal.show #description-editor .ql-toolbar {
  z-index: 1055;
}

:root {
    --primary-color: #004AAD;
    --primary-dark: #003A8D;
    --secondary-color: #00BF63;
    --text-dark: #373643;
    --text-light: #373643;
    --bg-light: #EFEFEF;
    --border-color: #d5d5d5;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Body Background */
body {
    background-color: #EFEFEF;
}

/* Add padding for fixed footer on register business page */
body.register-business-page {
    padding-bottom: 0;
}

/* Fixed bottom CTA bar (mobile only) */
@media (max-width: 767.98px) {
    body.register-business-page main {
        padding-bottom: 80px;
    }
    .register-fixed-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        background: #fff;
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    .register-fixed-cta-bar .register-fixed-cta-btn {
        width: 100%;
    }
}

/* Business detail: fixed bottom strip (mobile only) */
/* Default: hidden everywhere (enabled only on business page mobile) */
.business-bottom-strip {
    display: none;
}

/* Prevent horizontal scroll on business pages */
body.business-detail-page,
body.store-page {
    overflow-x: hidden;
}

@media (max-width: 767.98px) {
    body.business-detail-page main {
        /* Ensure content isn't hidden behind bottom strip; account for safe-area */
        padding-bottom: max(92px, calc(80px + env(safe-area-inset-bottom, 0)));
    }

    /* Avoid double fixed UI: hide floating call FAB on mobile */
    body.business-detail-page .floating-action-buttons {
        display: none !important;
    }

    body.business-detail-page .business-bottom-strip {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1030;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.12);
        padding: 8px 10px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0));
        display: flex;
        align-items: stretch;
        gap: 10px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    body.business-detail-page .business-bottom-strip__nav {
        flex: 1;
        display: flex;
        align-items: stretch;
        gap: 2px;
        min-width: 0;
    }

    body.business-detail-page .business-bottom-strip__item {
        flex: 1 1 0;
        min-width: 0;
        text-decoration: none;
        color: var(--text-dark);
        border-radius: 12px;
        padding: 6px 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        transition: background-color 0.15s ease, color 0.15s ease;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    body.business-detail-page .business-bottom-strip__item i {
        font-size: 1.05rem;
        line-height: 1;
    }

    body.business-detail-page .business-bottom-strip__label {
        font-size: 0.72rem;
        line-height: 1.1;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    body.business-detail-page .business-bottom-strip__item:hover,
    body.business-detail-page .business-bottom-strip__item:focus-visible {
        background: rgba(0, 74, 173, 0.06);
        color: var(--primary-color);
        outline: none;
    }

    body.business-detail-page .business-bottom-strip__item.active {
        background: rgba(0, 74, 173, 0.1);
        color: var(--primary-color);
    }

    body.business-detail-page .business-bottom-strip__actions {
        display: flex;
        align-items: stretch;
        gap: 8px;
        flex-shrink: 0;
    }

    body.business-detail-page .business-bottom-strip__action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-width: 44px;
        padding: 10px 10px;
        border-radius: 12px;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        line-height: 1;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
        transition: transform 0.15s ease, filter 0.15s ease;
        -webkit-tap-highlight-color: transparent;
    }

    body.business-detail-page .business-bottom-strip__action i {
        font-size: 1.05rem;
        line-height: 1;
    }

    body.business-detail-page .business-bottom-strip__action:hover {
        filter: brightness(1.02);
        transform: translateY(-1px);
    }

    body.business-detail-page .business-bottom-strip__action:active {
        transform: translateY(0);
    }

    body.business-detail-page .business-bottom-strip__action--call {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    }

    body.business-detail-page .business-bottom-strip__action--whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }

    @media (max-width: 420px) {
        body.business-detail-page .business-bottom-strip__action-label {
            display: none;
        }

        body.business-detail-page .business-bottom-strip__action {
            padding-left: 12px;
            padding-right: 12px;
        }
    }
}

/* Search Page Loading Overlay */
.search-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.search-loading-spinner {
    text-align: center;
}

.search-loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

/* Pagination Loading States */
.pagination-link {
    position: relative;
    transition: opacity 0.2s ease;
}

.pagination-link .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15rem;
    margin-right: 0.25rem;
}

.pagination-link .link-text {
    transition: opacity 0.2s ease;
}

/* Register Business Page Loading States */
.pincode-loading-spinner {
    z-index: 10;
}

.pincode-loading-spinner .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15rem;
}

/* Form Submit Button Loading State */
.register-cta-btn .btn-content,
.register-cta-btn .btn-loading {
    display: inline-block;
}

.register-cta-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Category Modal Loading */
#categoryModalLoading {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Improved Disabled Field Styling */
.form-control[disabled],
.form-select[disabled] {
    background-color: #e9ecef;
    opacity: 1;
    cursor: not-allowed;
    border-color: #ced4da;
}

.form-control[readonly],
.form-select[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

/* Auto-filled field indicator */
.form-text.text-muted i.bi-magic {
    color: #0d6efd;
    margin-right: 0.25rem;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Lazy loading image placeholder */
.business-logo {
    transition: opacity 0.3s ease;
}

.business-logo[loading="lazy"] {
    background-color: #f0f0f0;
    min-height: 100px;
}

/* Hero Section Modern */
.hero-section-modern {
    background: linear-gradient(135deg, #004AAD 0%, #00BF63 130%);
    color: white;
    padding: 80px 0;
    
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Pricing page: minimal hero (light, clean) */
.pricing-hero {
    background: #f8fafc;
    color: var(--text-dark);
    padding: 2.5rem 0 3rem;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.pricing-hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Pricing page: container and background */
.pricing-page-container {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

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

/* Pricing page: comparison banner */
.pricing-comparison-banner {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.05) 0%, rgba(0, 191, 99, 0.05) 100%);
    border: 1px solid rgba(0, 74, 173, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.comparison-stat {
    padding: 0.5rem 0;
}

.comparison-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.comparison-stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 767.98px) {
    .pricing-comparison-banner {
        padding: 1.25rem 1.5rem;
    }
    .comparison-stat-value {
        font-size: 1.5rem;
    }
    .comparison-stat-label {
        font-size: 0.75rem;
    }
}

/* Pricing page: enhanced trial strip */
.pricing-trial-strip {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.12) 0%, rgba(0, 191, 99, 0.12) 100%);
    border: 2px solid rgba(0, 74, 173, 0.25);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 74, 173, 0.15);
    transition: all 0.3s ease;
    animation: trialStripPulse 3s ease-in-out infinite;
}

.pricing-trial-strip:hover {
    box-shadow: 0 8px 24px rgba(0, 74, 173, 0.2);
    border-color: rgba(0, 74, 173, 0.35);
    transform: translateY(-2px);
}

@keyframes trialStripPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 74, 173, 0.15);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 74, 173, 0.2);
    }
}

.pricing-trial-strip-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.pricing-trial-strip-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 74, 173, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-trial-strip:hover .pricing-trial-strip-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 74, 173, 0.4);
}

.pricing-trial-strip-icon {
    font-size: 2rem;
    color: #fff;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.pricing-trial-strip-content {
    flex: 1;
    min-width: 0;
}

.pricing-trial-strip-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
}

.pricing-trial-strip-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .pricing-trial-strip {
        padding: 1.25rem 1.5rem;
    }
    .pricing-trial-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .pricing-trial-strip-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    .pricing-trial-strip-icon {
        font-size: 1.5rem;
    }
    .pricing-trial-strip-text {
        font-size: 0.9375rem;
    }
}

.hero-search-form {
    max-width: 600px;
    margin: 0 auto;
}

.hero-search-form .input-group {
    box-shadow: var(--shadow-lg);
}

.hero-search-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.hero-search-form .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    background-color: #004AAD;
    border-color: #004AAD;
    color: white;
}

.hero-search-form .btn:hover {
    background-color: #003A8D;
    border-color: #003A8D;
    color: white;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Search Page Header */
.search-page-header {
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

/* Visual Separator for Content Sections */
.search-intro-section + .category-city-content,
.search-intro-section + .internal-links-section,
.category-city-content + .internal-links-section,
.internal-links-section + .internal-links-section,
.internal-links-section + .business-grid {
    margin-top: 0;
}

/* Add subtle spacing between major sections */
.search-page-header + .search-intro-section {
    margin-top: 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* Category Grid */
.category-grid {
    margin-bottom: 3rem;
}

.category-card {
    display: block;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    text-decoration: none;
    color: inherit;
}

.category-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.category-emoji {
    font-size: 3rem;
    display: inline-block;
}

.category-info {
    text-align: center;
}

.category-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Business Cards Modern */
.business-card-modern {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.business-card-list {
    padding: 1.5rem;
}

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

.business-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.business-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

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

.badge-featured {
    background: #00BF63;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 1rem;
}

.business-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.business-category {
    margin-bottom: 0.75rem;
}

.category-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.rating-stars {
    color: #00BF63;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.business-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.location-icon {
    font-size: 1rem;
}

.business-contact {
    margin-bottom: 0.5rem;
}

.contact-name {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.business-phone {
    margin-bottom: 1rem;
}

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

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

.business-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
}

.business-logo {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.business-card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.btn-learn-more {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-learn-more:hover {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Filter Card */
.filter-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.filter-header {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-header h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.filter-body {
    padding: 1.5rem;
}

/* Navbar Updates */
.navbar {
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.625rem 1.5rem;
}

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
}

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

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border-color: var(--border-color);
    border-radius: 8px;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem;
}

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

.pagination .page-link:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
}

/* Footer */
.footer-modern {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-heading {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-modern .footer-text strong {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

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

.footer-modern ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-modern ul li a {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-modern a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-modern a:hover {
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-copyright p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
}

/* Footer link class */
.footer-modern .footer-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-modern .footer-link:hover {
    color: white !important;
}

/* Override global body p and li rules for footer */
.footer-modern p,
.footer-modern li {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
}

/* Ensure all footer text elements are visible */
.footer-modern .footer-text,
.footer-modern .footer-text * {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Override global rules for footer list items and links */
.footer-modern ul li a,
.footer-modern a:not(.footer-link) {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Business page legal block (terms, privacy, disclaimer) */
.business-page-legal {
  margin-bottom: 1rem;
}
.business-page-legal__disclaimer {
  font-size: 0.8125rem;
  color: #6c757d;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}
.business-page-legal__links {
  font-size: 0.8125rem;
}
.business-page-legal__link {
  color: inherit;
  text-decoration: underline;
}
.business-page-legal__link:hover {
  text-decoration: underline;
}
.business-page-legal__sep {
  margin: 0 0.35rem;
  opacity: 0.7;
}

/* Business Detail Rating */
.business-rating-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.rating-stars-large {
    color: #00BF63;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.rating-value-large {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.rating-text-large {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Business Grid */
.business-grid {
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .category-card {
        padding: 1.25rem;
    }
    
    .business-card-modern {
        padding: 1.25rem;
    }
    
    .business-name {
        font-size: 1.25rem;
    }
}

/* Utility Classes */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

/* Form Styles */
.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.625rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.25);
}

/* Alert Styles */
.alert {
    border-radius: 12px;
    border: none;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Review Items */
.review-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.review-user-info {
    flex: 1;
}

.review-user-name {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-rating {
    margin-top: 0.25rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.review-comment {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Category Search Dropdown */
#categoryDropdown {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background: white;
    margin-top: 2px;
}

#categoryDropdown .list-group-item-action {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

#categoryDropdown .list-group-item-action:last-child {
    border-bottom: none;
}

#categoryDropdown .list-group-item-action:hover,
#categoryDropdown .list-group-item-action.active {
    background-color: #f8f9fa;
    color: #004AAD;
}

#categoryDropdown .list-group-item-action:focus {
    background-color: #e7f1ff;
    outline: none;
}

#clearCategory {
    border: none;
    background: transparent;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    color: #6c757d;
}

#clearCategory:hover {
    color: #00BF63;
}

/* JustDial-Style Business Detail Page */

/* Hero Header Section */
.business-hero-header {
    position: relative;
    margin-bottom: 2rem;
}

.cover-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #e99315 0%, #ff3131 100%);
}

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

.cover-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e99315 0%, #ff3131 100%);
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.logo-overlay-container {
    position: absolute;
    bottom: -60px;
    left: 2rem;
    z-index: 10;
}

.logo-overlay {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 4px solid white;
    background: white;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.business-info-header {
    background: white;
    padding: 2rem 0 1rem;
    margin-top: 60px;
    box-shadow: var(--shadow-sm);
}

.business-title-section {
    padding-left: 160px;
}

.business-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.verified-badge {
    background: #ffc107;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

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

.meta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.meta-separator {
    color: var(--text-light);
}

.meta-text {
    color: var(--text-light);
}

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

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

.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

.status-open {
    background: #d4edda;
    color: #155724;
}

.status-closed {
    background: #f8d7da;
    color: #721c24;
}

/* Quick Actions */
.quick-actions-header {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}

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

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

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: white;
}

.btn-direction {
    background: #4285f4;
    color: white;
}

.btn-direction:hover {
    background: #357ae8;
    color: white;
}

.btn-share {
    background: #6c757d;
    color: white;
}

.btn-share:hover {
    background: #5a6268;
    color: white;
}

.btn-save {
    background: #6c757d;
    color: white;
}

.btn-save.btn-saved {
    background: #28a745;
}

.btn-save.btn-saved:hover {
    background: #218838;
}

/* Opening Hours */
.opening-hours-table .today-row {
    background: #f8f9fa;
}

.opening-hours-table .day-name {
    min-width: 150px;
}

/* Services/Products */
.service-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.service-category-title:first-child {
    margin-top: 0;
}

.service-product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-product-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-product-card:hover .card-img-top {
    transform: scale(1.05);
}

.placeholder-image {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.price-text {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Gallery */
.gallery-grid {
    position: relative;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumbnail {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Gallery Lightbox */
.gallery-lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.gallery-prev {
    left: 2rem;
}

.gallery-next {
    right: 2rem;
}

/* Reviews */
.review-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

.review-user-info {
    display: flex;
    align-items: flex-start;
}

/* Similar Businesses */
.similar-business-item {
    transition: background 0.2s ease;
    padding: 0.75rem;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    border-radius: 8px;
}

.similar-business-item:hover {
    background: var(--bg-light);
}

.similar-business-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 2rem;
}

/* Health Score Badge */
.health-score-badge {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
}

/* Responsive Design for Business Detail */
@media (max-width: 992px) {
    .business-title-section {
        padding-left: 0;
        margin-top: 1rem;
    }
    
    .logo-overlay-container {
        position: relative;
        bottom: auto;
        left: auto;
        margin-bottom: 1rem;
    }
    
    .logo-overlay {
        position: relative;
        margin: 0 auto;
    }
    
    .quick-actions-header {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .sticky-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .cover-image-container {
        height: 250px;
    }
    
    .business-name {
        font-size: 1.5rem;
    }
    
    .btn-action {
        flex: 1;
        justify-content: center;
        min-width: calc(50% - 0.25rem);
    }
    
    .review-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .review-controls .btn-group {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    
    .review-controls .btn-group .btn {
        flex: 1;
        min-width: calc(33.333% - 0.25rem);
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 0.5rem;
    }
    
    .gallery-next {
        right: 0.5rem;
    }
}

/* ==================== OWNER DASHBOARD STYLES ==================== */

.dashboard-body {
    background: #f6f7fb;
}

.dashboard-shell {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.dashboard-sidebar {
    width: 280px;
    background: #ffffff;
    border-right: 1px solid var(--border-color);
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}

.dashboard-sidebar-header {
    padding: 1rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-sidebar-nav {
    padding: 0.75rem;
    overflow: auto;
}

.dashboard-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.dashboard-topbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1020;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-content {
    padding: 1.25rem 1rem 2rem 1rem;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dashboard-nav-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dashboard-nav-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6c757d;
    padding: 0.5rem 0.75rem;
}

.dashboard-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid transparent;
    transition: all 0.15s ease;
    font-weight: 600;
}

.dashboard-nav-link i {
    font-size: 1.1rem;
    color: #6c757d;
}

.dashboard-nav-link:hover {
    background: #f3f5ff;
    border-color: rgba(0, 74, 173, 0.2);
    color: var(--primary-color);
}

.dashboard-nav-link:hover i {
    color: var(--primary-color);
}

.dashboard-nav-link.active {
    background: rgba(0, 74, 173, 0.08);
    border-color: rgba(0, 74, 173, 0.25);
    color: var(--primary-color);
}

.dashboard-nav-link.active i {
    color: var(--primary-color);
}

.dashboard-page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
}

.dashboard-page-subtitle {
    color: #6c757d;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.dashboard-header {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

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

/* Statistics Cards */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    height: 100%;
}

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

.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.75rem;
}

.stat-card-icon.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.stat-card-icon.bg-success {
    background: linear-gradient(135deg, #00BF63, #00a050);
}

.stat-card-icon.bg-info {
    background: linear-gradient(135deg, #004AAD, #003A8D);
}

.stat-card-icon.bg-warning {
    background: linear-gradient(135deg, #00BF63, #00a050);
}

.stat-card-content {
    flex: 1;
}

.stat-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.stat-card-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0.25rem 0;
    font-weight: 500;
}

/* Quick Actions */
.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 120px;
}

.quick-action-btn:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-action-btn i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.quick-action-btn span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Health Score Cards */
.health-score-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.health-score-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

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

.health-score-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.health-score-value {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.score-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.score-total {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.health-progress {
    height: 10px;
    border-radius: 10px;
    background: var(--bg-light);
}

.health-score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.health-score-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Activity Feed */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.activity-item:hover {
    background: #EFEFEF;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.activity-content {
    flex: 1;
}

.activity-header {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.activity-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.activity-rating {
    margin-bottom: 0.5rem;
}

.activity-comment {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Table Enhancements */
.table-hover tbody tr {
    transition: all 0.2s ease;
}

.table-hover tbody tr:hover {
    background-color: var(--bg-light);
    transform: scale(1.01);
}

.table th {
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.empty-state-icon {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Chart Containers */
.card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.card-body {
    padding: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem 0.5rem;
    }
    
    .dashboard-title {
        font-size: 1.75rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-card-value {
        font-size: 1.5rem;
    }
    
    .health-score-card {
        padding: 1.25rem;
    }
    
    .score-number {
        font-size: 2rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        border-radius: 4px !important;
        margin-bottom: 0.25rem;
    }
}

/* ========== Pricing / Billing Page (owner) ========== */
.pricing-page.dashboard-container {
    max-width: 1100px;
}

.pricing-page .pricing-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.pricing-card {
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 74, 173, 0.2);
}

.pricing-card--featured {
    border-width: 2px;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.15);
}

.pricing-card--featured:hover {
    box-shadow: 0 12px 28px rgba(0, 74, 173, 0.18);
}

.pricing-card .card-header {
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    padding: 1.5rem 1.5rem;
}

.pricing-card .card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-card .card-body {
    padding: 1.5rem;
}

.pricing-card .card-footer {
    border-radius: 0 0 16px 16px;
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 1.5rem;
}

/* Free card: light header with subtle border */
.pricing-card-free .card-header {
    background: #f8f9fa !important;
    border-bottom: 1px solid var(--border-color);
}

/* Premium card: gradient header */
.pricing-card--featured .card-header.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

/* Premium card: top row (Popular + annual discount) */
.pricing-page .premium-header-top {
    gap: 0.75rem;
}

.pricing-page .premium-header-discount {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 380px) {
    .pricing-page .premium-header-top {
        flex-direction: column;
    }
}

.pricing-price {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.pricing-feature-item:last-child {
    margin-bottom: 0;
}

.pricing-feature-item .bi {
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.pricing-badge-popular {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.75rem !important;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    border-radius: 9999px;
    display: inline-block;
}

/* Premium card: switch on top of amount box */
.pricing-page .premium-price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Premium card: pill-style Monthly/Annual switch */
.pricing-page .premium-billing-switch {
    display: inline-flex;
    padding: 0.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.25);
    gap: 0;
}

.pricing-page .premium-billing-switch .btn-group {
    border-radius: 9999px;
    overflow: hidden;
}

.pricing-page .premium-billing-switch .btn-group .btn {
    border: none;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    min-width: 5rem;
}

.pricing-page .premium-billing-switch .btn-group .btn:not(.active) {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-page .premium-billing-switch .btn-group .btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.pricing-page .premium-billing-switch .btn-group .btn.active {
    background: #fff;
    color: var(--primary-color);
}

.pricing-page .premium-billing-switch .btn-group .btn:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

@media (max-width: 767.98px) {
    .pricing-page .premium-billing-switch .btn-group {
        flex-direction: row;
    }
    .pricing-page .premium-billing-switch .btn-group .btn {
        margin-bottom: 0;
    }
}

/* Premium card: price and discount block */
.pricing-page .premium-price-block {
    padding: 1.25rem 1.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: inline-block;
    min-width: 10rem;
}

.pricing-page .premium-price-wrapper {
    transition: transform 0.3s ease;
}

.pricing-page .premium-price-block:hover .premium-price-wrapper {
    transform: scale(1.05);
}

.pricing-page .premium-price-block #premiumPriceAmount {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}

.pricing-page .premium-price-block #premiumPricePeriod {
    font-size: 0.875rem;
    opacity: 0.95;
    margin-top: 0.25rem;
}

/* Pricing CTA: prominent primary button */
.pricing-page .pricing-cta-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

/* Pricing CTAs: full-width on mobile */
@media (max-width: 767.98px) {
    .pricing-page .card-footer .btn,
    .pricing-page .card-footer .btn-primary {
        width: 100%;
    }
}

/* Public pricing page: card layout and headers */
.pricing-page .pricing-cards-row {
    margin-bottom: 3rem;
}

.pricing-page .pricing-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-page .pricing-card:hover {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 74, 173, 0.25);
    transform: translateY(-8px) scale(1.02);
}

.pricing-page .pricing-card--featured.pricing-card-premium {
    position: relative;
    border-width: 2px;
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 74, 173, 0.15);
}

.pricing-page .pricing-card--featured.pricing-card-premium:hover {
    box-shadow: 0 20px 40px rgba(0, 74, 173, 0.25);
    transform: translateY(-10px) scale(1.02);
}

/* Premium card: Most Popular badge */
.pricing-card-premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 16px 16px 0 0;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.pricing-card-premium-badge i {
    color: var(--text-dark);
    font-size: 1rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.pricing-card-premium-badge:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(-50%) translateY(-2px);
}

.pricing-page .pricing-card-header {
    padding: 2rem 1.5rem;
    border: none;
    border-radius: 0;
}

.pricing-page .pricing-card-header-free {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.pricing-page .pricing-card-header-premium {
    background: linear-gradient(160deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.pricing-page .pricing-card-header-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.pricing-page .pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: inherit;
}

.pricing-page .pricing-price-free {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.pricing-page .pricing-period {
    font-size: 0.875rem;
}

.pricing-page .pricing-card .card-body {
    padding: 1.5rem 1.75rem;
}

.pricing-page .pricing-card-footer {
    padding: 1.5rem 1.75rem;
    background: #fff;
    border-top: 1px solid var(--border-color);
    border-radius: 0;
}

.pricing-page .pricing-card-footer-premium {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fff 100%);
}

.pricing-page .premium-footer-badges .badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem !important;
    border: 1.5px solid rgba(0, 74, 173, 0.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-page .premium-footer-badges .badge.bg-light.text-primary {
    background: #fff !important;
    color: var(--primary-color) !important;
    border-color: rgba(0, 74, 173, 0.2) !important;
}

.pricing-page .premium-footer-badges .badge.bg-light.text-success {
    background: #fff !important;
    color: var(--secondary-color) !important;
    border-color: rgba(0, 191, 99, 0.2) !important;
}

.pricing-page .premium-footer-badges .badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 74, 173, 0.3);
}

/* Public pricing: section spacing and titles */
.pricing-page .pricing-section {
    margin-bottom: 4rem;
}

.pricing-page .pricing-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.pricing-page .pricing-section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-page .pricing-whats-included .accordion-item {
    background: #fff;
    border: 1px solid var(--border-color);
}

.pricing-page #pricingFAQ .accordion-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

/* Public pricing: premium price display (large amount) */
.pricing-page .premium-price-block .pricing-price-premium,
.pricing-page .premium-price-block #premiumPriceAmount {
    font-size: 3.25rem;
    line-height: 1.2;
}

/* Public pricing: CTA section */
.pricing-page .pricing-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 74, 173, 0.2);
}

.pricing-page .pricing-cta-section .card-body {
    padding: 2.5rem 2rem;
}

.pricing-page .pricing-cta-section .btn-light {
    background: #fff;
    color: var(--primary-color);
    border: none;
}

.pricing-page .pricing-cta-section .btn-light:hover {
    background: #f0f4f8;
    color: var(--primary-dark);
}

/* Public pricing: card hover lift */
.pricing-page .pricing-card {
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-page .pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.pricing-page .pricing-card .card-body {
    transition: background-color 0.3s ease;
}

.pricing-page .pricing-card:hover .card-body {
    background-color: #fafbfc;
}

.pricing-page .pricing-card-premium:hover .card-body {
    background-color: #fff;
}

@media (max-width: 991.98px) {
    .pricing-page .pricing-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 575.98px) {
    .pricing-page-container {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }
    
    .pricing-page .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .pricing-page .pricing-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .pricing-page .pricing-card--featured.pricing-card-premium:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .pricing-card-premium-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        top: -10px;
        border-radius: 12px 12px 0 0;
    }
    
    .pricing-card-premium-badge i {
        font-size: 0.875rem;
    }
    
    .pricing-page .pricing-cards-row {
        margin-bottom: 2rem;
    }
    
    .pricing-page .pricing-section {
        margin-bottom: 2.5rem;
    }
    
    .pricing-cta-section-final {
        padding: 2.5rem 0;
    }
    
    .pricing-cta-title {
        font-size: 1.75rem;
    }
    
    .pricing-cta-subtitle {
        font-size: 0.9375rem;
    }
    
    .pricing-page .premium-footer-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pricing-page .premium-footer-badges .badge {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 1rem !important;
    }
    
    .pricing-trial-strip {
        padding: 1.25rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-trial-strip-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .pricing-trial-strip-icon {
        font-size: 1.75rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
}

/* Public pricing: accordion styling (What's included, FAQ) */
.pricing-page .accordion-item {
    border-radius: 8px;
}

.pricing-page .accordion-button {
    border-radius: 8px;
}

.pricing-page .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-page .accordion-button {
    font-weight: 500;
    transition: all 0.2s ease;
}

.pricing-page .accordion-button:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.pricing-page .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.15);
    border-color: rgba(0, 74, 173, 0.25);
}

/* AI examples section (public pricing) */
.pricing-page .pricing-ai-example-icon {
    font-size: 1.5rem;
}

.pricing-page .pricing-ai-example-desc {
    line-height: 1.6;
}

.pricing-page .pricing-meta-desc {
    font-style: italic;
}

/* Pricing page: enhanced feature items */
.pricing-page .pricing-feature-item {
    transition: transform 0.2s ease, color 0.2s ease;
}

.pricing-page .pricing-feature-item:hover {
    transform: translateX(4px);
}

.pricing-page .pricing-feature-item.pricing-feature-upgrade {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Pricing page: scroll reveal animations */
.pricing-page .pricing-section {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-page .pricing-card {
    animation: fadeInUp 0.5s ease forwards;
    will-change: transform, box-shadow;
}

.pricing-page .pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.pricing-page .pricing-card:nth-child(1) {
    animation-delay: 0s;
}

/* Pricing page: smooth price transition */
.pricing-page .premium-price-block #premiumPriceAmount {
    transition: font-size 0.3s ease, color 0.3s ease;
}

/* Pricing page: enhanced feature icon animations */
.pricing-feature-block {
    transition: transform 0.2s ease;
}

.pricing-feature-block:hover {
    transform: translateX(4px);
}

.pricing-feature-block .pricing-feature-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pricing-feature-block:hover .pricing-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Pricing page: premium card special effects */
.pricing-page .pricing-card-premium .card-header-premium {
    position: relative;
}

.pricing-page .pricing-card-premium .card-header-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pricing-page .pricing-card-premium:hover .card-header-premium::after {
    left: 100%;
}

/* Pricing page: CTA section final */
.pricing-cta-section-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    margin-top: 4rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.pricing-cta-section-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.pricing-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.pricing-cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 0;
    opacity: 0.95;
    color: white;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-trust-indicators {
    margin-top: 2rem;
}

@media (max-width: 767.98px) {
    .pricing-cta-section-final {
        padding: 3.5rem 0;
    }
    .pricing-cta-badge {
        font-size: 0.875rem;
        padding: 0.6rem 1.25rem;
    }
}

.subscription-cards-wrap {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

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

.subscription-cards-list .subscription-card-mobile {
    margin-bottom: 0;
}

.subscription-card-mobile {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: #fff;
}

.subscription-card-mobile:last-child {
    margin-bottom: 0;
}

.subscription-card-mobile .sub-card-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.subscription-card-mobile .sub-card-meta {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.subscription-card-mobile .sub-card-actions {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.pricing-whats-included .accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    box-shadow: none;
}

.pricing-whats-included .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: var(--primary-color);
}

.pricing-whats-included .accordion-body {
    padding: 1.25rem 1.5rem;
}

.pricing-feature-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.pricing-feature-block .pricing-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    background: rgba(0, 74, 173, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-feature-block .pricing-feature-body {
    margin-left: 1rem;
}

.pricing-feature-block .pricing-feature-body h6 {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.pricing-feature-block .pricing-feature-body p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

.pricing-help-link {
    font-size: 0.875rem;
    color: #6c757d;
}

.pricing-help-link:hover {
    color: var(--primary-color);
}

.pricing-page .list-group-item {
    border: none;
    padding: 1rem 1.25rem;
    transition: background-color 0.2s ease;
}

.pricing-page .list-group-item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
}

@media (max-width: 767.98px) {
    .pricing-page .dashboard-title {
        font-size: 1.5rem;
    }

    .pricing-card .card-header,
    .pricing-card .card-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Modern Search Page - City Checkboxes */
.city-filter-actions {
    font-size: 0.875rem;
}

.btn-link-sm {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.875rem;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-link-sm:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.city-checkbox-container {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    background: white;
}

.city-checkbox-container::-webkit-scrollbar {
    width: 8px;
}

.city-checkbox-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.city-checkbox-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.city-checkbox-container::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

.city-checkbox-item {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
}

.city-checkbox-item:hover {
    background-color: var(--bg-light);
}

.city-checkbox-item:last-child {
    margin-bottom: 0;
}

.city-checkbox-item .form-check-input {
    margin-top: 0;
    margin-right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.city-checkbox-item .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.city-checkbox-item .form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.25);
}

.city-checkbox-item .form-check-label {
    cursor: pointer;
    user-select: none;
    font-size: 0.95rem;
    color: var(--text-dark);
    flex: 1;
    margin: 0;
    padding: 0;
    transition: color 0.2s ease;
}

.city-checkbox-item:hover .form-check-label {
    color: var(--primary-color);
}

.city-checkbox-item .form-check-input:checked + .form-check-label {
    font-weight: 500;
    color: var(--primary-color);
}

/* Enhanced Filter Card */
.filter-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.filter-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1.25rem 1.5rem;
    border-bottom: none;
}

.filter-header h5 {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.filter-body {
    padding: 1.5rem;
}

.filter-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.filter-body .form-control,
.filter-body .form-select {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.filter-body .form-control:focus,
.filter-body .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.15);
}

.filter-body .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.filter-body .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.filter-body .btn-outline-secondary {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.filter-body .btn-outline-secondary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Search Results Header */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Category Checkbox Container - Same styling as city */
.category-checkbox-container {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    background: white;
}

.category-checkbox-container::-webkit-scrollbar {
    width: 8px;
}

.category-checkbox-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.category-checkbox-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.category-checkbox-container::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

.category-checkbox-item {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
}

.category-checkbox-item:hover {
    background-color: var(--bg-light);
}

.category-checkbox-item:last-child {
    margin-bottom: 0;
}

.category-checkbox-item .form-check-input {
    margin-top: 0;
    margin-right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.category-checkbox-item .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.category-checkbox-item .form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.25);
}

.category-checkbox-item .form-check-label {
    cursor: pointer;
    user-select: none;
    font-size: 0.95rem;
    color: var(--text-dark);
    flex: 1;
    margin: 0;
    padding: 0;
    transition: color 0.2s ease;
}

.category-checkbox-item:hover .form-check-label {
    color: var(--primary-color);
}

.category-checkbox-item .form-check-input:checked + .form-check-label {
    font-weight: 500;
    color: var(--primary-color);
}

/* Rating Checkbox Container */
.rating-checkbox-container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    background: white;
}

.rating-checkbox-item {
    padding: 0.75rem 0.75rem;
    margin-bottom: 0.25rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
}

.rating-checkbox-item:hover {
    background-color: var(--bg-light);
}

.rating-checkbox-item:last-child {
    margin-bottom: 0;
}

.rating-checkbox-item .form-check-input {
    margin-top: 0;
    margin-right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.rating-checkbox-item .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.rating-checkbox-item .form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.25);
}

.rating-checkbox-item .form-check-label {
    cursor: pointer;
    user-select: none;
    font-size: 0.95rem;
    color: var(--text-dark);
    flex: 1;
    margin: 0;
    padding: 0;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-checkbox-item:hover .form-check-label {
    color: var(--primary-color);
}

.rating-checkbox-item .form-check-input:checked + .form-check-label {
    font-weight: 500;
    color: var(--primary-color);
}

.rating-stars-filter {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Filter action buttons styling */
.category-filter-actions,
.rating-filter-actions {
    font-size: 0.875rem;
}

/* Search Intro Section */
.search-intro-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: box-shadow 0.3s ease;
}

.search-intro-section:hover {
    box-shadow: var(--shadow-md);
}

.search-intro-section h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    line-height: 1.3;
}

.search-intro-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Internal Links Section */
.internal-links-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.internal-links-section:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.internal-links-section h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.internal-links-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
    display: inline-block;
}

.internal-links-section .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin: 0.25rem;
    display: inline-block;
    text-decoration: none;
    border: none;
}

.internal-links-section .badge.bg-primary {
    background-color: var(--primary-color) !important;
    color: white;
}

.internal-links-section .badge.bg-primary:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: white;
}

.internal-links-section .badge.bg-secondary {
    background-color: #6c757d !important;
    color: white;
}

.internal-links-section .badge.bg-secondary:hover {
    background-color: #5a6268 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: white;
}

/* Popular Businesses Links in Internal Links Section */
.internal-links-section .row a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.internal-links-section .row a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1rem;
}

.internal-links-section .row a .text-warning {
    margin-left: 0.5rem;
}

/* Responsive adjustments for search page */
@media (max-width: 768px) {
    .city-checkbox-container,
    .category-checkbox-container {
        max-height: 300px;
    }
    
    .filter-body {
        padding: 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .city-filter-actions,
    .category-filter-actions,
    .rating-filter-actions {
        font-size: 0.8rem;
    }
    
    /* Search Intro Section - Mobile */
    .search-intro-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .search-intro-section h2 {
        font-size: 1.5rem;
    }
    
    .search-intro-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Internal Links Section - Mobile */
    .internal-links-section {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .internal-links-section h3 {
        font-size: 1.05rem;
    }
    
    .internal-links-section .badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
    }
}

/* Statistics Section */
.statistics-section {
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.stat-icon {
    margin-bottom: 1rem;
}

.stat-emoji {
    font-size: 3rem;
    display: block;
}

.stat-content {
    width: 100%;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* Featured Businesses Section */
.featured-businesses-grid {
    margin-bottom: 2rem;
}

.featured-business-card {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-business-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

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

.featured-business-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.featured-business-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.featured-business-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-business-category {
    margin-bottom: 0.75rem;
}

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

.featured-business-rating .rating-stars {
    color: #FFD700;
    font-size: 1rem;
}

.featured-business-rating .rating-text {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.featured-business-location {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-business-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.btn-featured-learn-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

.btn-featured-learn-more:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Local Businesses Section */
.local-businesses-section {
    margin-bottom: 3rem;
}

.local-businesses-grid {
    margin-bottom: 2rem;
}

.local-business-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.local-business-featured-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

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

.local-business-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.local-business-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.local-business-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.local-business-category {
    margin-bottom: 0.75rem;
}

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

.local-business-rating .rating-stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}

.local-business-rating .rating-text {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.local-business-location {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.local-business-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.btn-local-learn-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

.btn-local-learn-more:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

/* Popular Cities Section */
.cities-grid {
    margin-bottom: 2rem;
}

.city-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.city-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    text-decoration: none;
    color: inherit;
}

.city-info {
    flex: 1;
}

.city-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.city-count {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.city-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.city-card:hover .city-arrow {
    transform: translateX(4px);
}

/* How It Works Section */
.how-it-works-section {
    padding: 3rem 0;
}

.how-it-works-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

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

.how-it-works-icon {
    margin-bottom: 1rem;
}

.how-it-works-emoji {
    font-size: 4rem;
    display: block;
}

.how-it-works-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.how-it-works-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1rem 0 1rem 0;
}

.how-it-works-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 3rem 0;
}

.testimonials-grid {
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating .rating-stars {
    color: #FFD700;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-business {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.testimonial-business a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Call-to-Action Sections */
.cta-section {
    margin: 4rem 0;
}

.cta-business-owners {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 12px;
}

.cta-users {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00A050 100%);
    color: white;
    border-radius: 12px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 0;
    line-height: 1.6;
}

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

.cta-buttons .btn {
    min-width: 200px;
}

.cta-business-owners .btn-outline-light {
    border-color: white;
    color: white;
}

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

.cta-users .btn-outline-primary {
    border-color: white;
    color: white;
}

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

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .stat-value {
        font-size: 2rem;
    }
    
    .how-it-works-card {
        padding: 2rem 1.5rem;
    }
    
    .how-it-works-emoji {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 2rem 0;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-emoji {
        font-size: 2.5rem;
    }
    
    .featured-business-card {
        margin-bottom: 1rem;
    }
    
    .local-business-card {
        margin-bottom: 1rem;
        padding: 1.25rem;
    }
    
    .local-business-name {
        font-size: 1.1rem;
    }
    
    .city-card {
        margin-bottom: 1rem;
    }
    
    .how-it-works-section {
        padding: 2rem 0;
    }
    
    .how-it-works-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .how-it-works-title {
        font-size: 1.25rem;
    }
    
    .testimonials-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    .cta-section {
        margin: 2rem 0;
        padding: 2rem 1rem !important;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* ==================== BUSINESS REGISTRATION LANDING PAGE ==================== */

/* Hero Section */
.register-business-hero {
    background: linear-gradient(135deg, #004AAD 0%, #00BF63 100%);
    color: white;
    padding: 120px 0 100px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .register-business-hero {
        min-height: 400px;
        padding: 60px 0 50px;
    }
}

@media (max-width: 576px) {
    .register-business-hero {
        min-height: 360px;
        padding: 40px 0 40px;
    }
}

.register-business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.register-business-hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-badge .badge-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color:#fff !important;
}

.register-hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #FFD700;
    
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.register-hero-description {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-form-subtitle {
    font-size: 0.95rem;
}

.register-trust-line {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-form-container .register-trust-line {
    color: #6c757d !important;
}

.hero-cta-buttons {
    margin-top: 2rem;
}

.btn-hero-register {
    padding: 18px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-register:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    color: white;
}

.hero-image-placeholder {
    margin-top: 3rem;
    text-align: center;
}

.hero-preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 400px;
    object-fit: contain;
}

.placeholder-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
}

/* Hero Registration Form */
.hero-registration-form {
    max-width: 600px;
    margin: 0 auto;
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    text-align: left;
}

.hero-form-title {
    color: #004AAD;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.hero-form-container .form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-form-container .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-form-container .form-control:focus {
    border-color: #004AAD;
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.25);
    outline: none;
}

.hero-form-container .input-group .btn {
    border-radius: 0 10px 10px 0;
    border-left: none;
    font-weight: 600;
}

.hero-form-container .input-group .form-control {
    border-right: none;
}

.hero-form-container .input-group .form-control:focus {
    border-right: none;
}

.category-field-locked #categorySearch {
    cursor: not-allowed;
    opacity: 0.9;
}

.hero-form-container .input-group:focus-within .btn {
    border-color: #004AAD;
}

.hero-form-container .btn-outline-primary {
    color: #004AAD;
    border-color: #004AAD;
    background-color: transparent;
}

.hero-form-container .btn-outline-primary:hover {
    background-color: #004AAD;
    border-color: #004AAD;
    color: white;
}

.hero-form-container .btn-primary {
    background: linear-gradient(135deg, #004AAD 0%, #00BF63 100%);
    color: white;
    border: none;
    font-weight: 700;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-form-container .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 74, 173, 0.4);
    color: white;
    background: linear-gradient(135deg, #003A8D 0%, #00A050 100%);
}

.hero-form-container .btn-primary:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.hero-form-container .text-success {
    color: #00BF63 !important;
    font-weight: 600;
}

.hero-form-container .text-danger {
    color: #dc3545 !important;
    font-weight: 600;
}

.hero-form-container .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.hero-form-container .text-white-50 a {
    color: white !important;
    text-decoration: underline;
}

.hero-form-container .text-white-50 a:hover {
    color: #FFD700 !important;
}

.hero-form-container .alert {
    border-radius: 10px;
    border: none;
}

/* Responsive adjustments for hero form */
@media (max-width: 768px) {
    .hero-form-container {
        padding: 30px 20px;
    }
    
    .hero-form-title {
        font-size: 1.5rem;
    }
    
    .register-business-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
}

/* Feature Comparison Section */
.feature-comparison-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 100px 0;
    position: relative;
}

.feature-comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 74, 173, 0.3), transparent);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #004AAD 0%, #003A8D 100%);
    text-align: center;
}

.feature-card-premium .feature-card-header {
    background: linear-gradient(135deg, #00BF63 0%, #00A050 100%);
}

.feature-card-header .feature-badge {
    display: inline-block;
    margin: 2px 4px;
}

.feature-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.feature-badge-free {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-badge-most-popular {
    background: rgba(255, 215, 0, 0.95);
    color: #1a1a1a;
    border: none;
    font-size: 0.85rem;
    padding: 6px 14px;
}

.feature-badge-premium {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-card-body {
    padding: 35px 30px;
}

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

.feature-list li {
    padding: 16px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #00BF63;
    font-size: 1.2rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-card-premium .feature-list li i {
    color: #00BF63;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    display: block;
}

.feature-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    display: block;
    margin-top: 2px;
}

.feature-comparison-section .feature-card-body {
    text-align: left;
}

.feature-comparison-section .feature-content,
.feature-comparison-section .feature-title,
.feature-comparison-section .feature-description {
    text-align: left;
}

/* Register page: testimonials */
.register-testimonials-section {
    background: #fff;
}

.register-testimonial-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    height: 100%;
}

.register-testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.register-testimonial-author {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* Register page: CTA section with button */
.cta-section .cta-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cta-section .cta-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.cta-section-btn {
    font-weight: 600;
}

/* Register Ecommerce page: full UI/UX redesign (scoped) */
.register-ecommerce-page {
    --ec-bg: #f8fafc;
    --ec-card-bg: #ffffff;
    --ec-border: rgba(11, 87, 208, 0.15);
    --ec-primary: #0b57d0;
    --ec-accent: #00BF63;
    --ec-text: #1f2937;
    --ec-text-muted: #6b7280;
    --ec-section-padding: 4rem 0;
    --ec-card-radius: 16px;
    --ec-card-shadow: 0 4px 16px rgba(11, 87, 208, 0.08);
    --ec-card-shadow-hover: 0 12px 28px rgba(11, 87, 208, 0.12);
    scroll-behavior: smooth;
}

/* Typography */
.register-ecommerce-page .register-hero-title {
    font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.register-ecommerce-page .register-hero-subtitle {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
    font-weight: 600;
    opacity: 0.95;
}
.register-ecommerce-page .section-title {
    font-size: clamp(1.35rem, 2.5vw + 0.75rem, 1.75rem);
    font-weight: 700;
    color: var(--ec-text);
}
.register-ecommerce-page .register-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

/* Hero and surfaces */
.register-ecommerce-page .register-business-hero {
    background: linear-gradient(180deg, #0b57d0 0%, #0d9488 50%, #00BF63 100%);
    padding: 20px 0 20px;
    color: white;
}
.register-ecommerce-page .register-business-hero::before {
    opacity: 0.35;
}
.register-ecommerce-page .register-ecommerce-hero-content {
    padding-right: 2rem;
}
.register-ecommerce-page .register-ecommerce-hero-image {
    text-align: center;
    padding-left: 2rem;
}
.register-ecommerce-page .register-ecommerce-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

/* Hero Image Crossfade Animation */
.register-ecommerce-page .hero-image-crossfade {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
}

.register-ecommerce-page .hero-fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    border-radius: 20px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    max-width: 100%;
}

.register-ecommerce-page .hero-fade-image.active {
    opacity: 1;
    z-index: 1;
    position: relative;
}
.register-ecommerce-page .register-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.register-ecommerce-page .register-hero-bullets li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
    line-height: 1.6;
}
.register-ecommerce-page .register-hero-bullets li i {
    color: #FFD700;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.register-ecommerce-page .register-hero-bullets li span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}
.register-ecommerce-page .hero-badge {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
}
.register-ecommerce-page .hero-badge .badge-text {
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

/* How it Works Section */
.register-ecommerce-page .how-it-works-section {
    padding: 4rem 0;
    background: var(--ec-bg);
}

/* Why Choose Informay Section */
.register-ecommerce-page .why-choose-informay-section {
    padding: 4rem 0;
    background: white;
}

.register-ecommerce-page .why-choose-benefit-card {
    background: white;
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-card-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--ec-card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.register-ecommerce-page .why-choose-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ec-card-shadow-hover);
    border-color: var(--ec-primary);
}

.register-ecommerce-page .why-choose-icon {
    margin-bottom: 1rem;
}

.register-ecommerce-page .why-choose-icon i {
    font-size: 3rem;
    color: var(--ec-primary);
}

.register-ecommerce-page .why-choose-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ec-text);
    margin: 0;
    line-height: 1.4;
}

/* Commission Highlight Section */
.register-ecommerce-page .register-ecommerce-commission-highlight {
    background: linear-gradient(135deg, var(--ec-primary) 0%, var(--ec-accent) 100%);
    margin: 0;
    position: relative;
    overflow: hidden;
}
.register-ecommerce-page .register-ecommerce-commission-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}
.register-ecommerce-page .commission-highlight-content {
    position: relative;
    z-index: 1;
    padding: 1rem 0;
}
.register-ecommerce-page .commission-highlight-icon {
    width: 7rem;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 66px;
    padding: 10px;
}
.register-ecommerce-page .commission-highlight-text {
    font-size: clamp(1.5rem, 3vw + 1rem, 2.5rem);
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.register-ecommerce-page .how-it-works-card {
    background: white;
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-card-radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--ec-card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.register-ecommerce-page .how-it-works-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ec-card-shadow-hover);
    border-color: var(--ec-primary);
}
.register-ecommerce-page .how-it-works-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--ec-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(11, 87, 208, 0.3);
}
.register-ecommerce-page .how-it-works-icon {
    margin: 1rem 0 1.5rem 0;
}
.register-ecommerce-page .how-it-works-icon .how-it-works-img {
    max-width: 100%;
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.register-ecommerce-page .how-it-works-title {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.15rem);
    font-weight: 600;
    color: var(--ec-text);
    margin: 0;
    line-height: 1.5;
}

/* Section spacing (8px rhythm) */
.register-ecommerce-page #why-list {
    padding: var(--ec-section-padding);
}
.register-ecommerce-page #benefits {
    margin-bottom: 3rem;
}
.register-ecommerce-page .feature-comparison-section {
    background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 30%, #e8f4fc 100%);
    padding: 5rem 0;
    border-top: 4px solid rgba(11, 87, 208, 0.2);
}
.register-ecommerce-page .register-testimonials-section {
    padding: var(--ec-section-padding);
}
.register-ecommerce-page .cta-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: var(--ec-card-radius);
    margin: 4rem 0.5rem 0;
    padding: 3rem 1.5rem;
}
.register-ecommerce-page .cta-section .cta-heading {
    color: var(--ec-text);
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
}
.register-ecommerce-page .cta-section .cta-text {
    color: var(--ec-text-muted);
}

/* Benefits cards */
.register-ecommerce-page .register-ec-benefit-card {
    border-radius: var(--ec-card-radius);
    box-shadow: var(--ec-card-shadow);
    border: 1px solid var(--ec-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.register-ecommerce-page .register-ec-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ec-card-shadow-hover);
}
.register-ecommerce-page .register-ec-benefit-icon {
    font-size: 2.5rem;
    line-height: 1;
}
.register-ecommerce-page .register-ec-benefit-card .card-title {
    color: var(--ec-text);
    font-weight: 700;
}

/* Feature comparison cards */
.register-ecommerce-page .feature-card {
    border-radius: var(--ec-card-radius);
    box-shadow: var(--ec-card-shadow);
    border-left: 4px solid var(--ec-primary);
}
.register-ecommerce-page .feature-card-premium {
    border-left-color: var(--ec-accent);
}
.register-ecommerce-page .feature-card:hover {
    box-shadow: var(--ec-card-shadow-hover);
}
.register-ecommerce-page .feature-card .feature-card-body {
    padding: 2rem 1.5rem;
}
.register-ecommerce-page .feature-list li {
    padding: 0.75rem 0;
}

/* Testimonial cards */
.register-ecommerce-page .register-testimonial-card {
    border-radius: var(--ec-card-radius);
    border: 2px solid var(--ec-border);
    background: var(--ec-card-bg);
    box-shadow: var(--ec-card-shadow);
    padding: 1.5rem 1.75rem;
}
.register-ecommerce-page .register-testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ec-text);
    margin-bottom: 0.5rem;
}
.register-ecommerce-page .register-testimonial-author {
    font-size: 0.875rem;
    color: var(--ec-text-muted);
    margin: 0;
}

/* Form: steps indicator and container */
.register-ecommerce-page .hero-registration-form {
    max-width: 100%;
    margin: 0 auto;
}

/* Registration Modal Styling */
.register-ecommerce-page #registerEcommerceModal:not(.show) {
    display: none !important;
}
.register-ecommerce-page #registerEcommerceModal .modal-dialog {
    max-width: 800px;
}
.register-ecommerce-page #registerEcommerceModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 2rem;
}
.register-ecommerce-page #registerEcommerceModal .modal-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}
.register-ecommerce-page #registerEcommerceModal .modal-body {
    padding: 1.75rem 2rem;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    position: relative;
}
/* Modal form container - override all styles */
.register-ecommerce-page #registerEcommerceModal .hero-form-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
.register-ecommerce-page #registerEcommerceModal .hero-form-title {
    display: none;
}

/* Step Wizard Styling */
.register-ecommerce-page .form-step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}
.register-ecommerce-page .progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    max-width: 100px;
}
.register-ecommerce-page .progress-step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}
.register-ecommerce-page .progress-step.active .progress-step-number {
    background: var(--ec-primary);
    color: white;
    border-color: var(--ec-primary);
    box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.1);
}
.register-ecommerce-page .progress-step.completed .progress-step-number {
    background: var(--ec-accent);
    color: white;
    border-color: var(--ec-accent);
}
.register-ecommerce-page .progress-step.completed .progress-step-number::before {
    content: '\2713';
    font-size: 1.2rem;
}
.register-ecommerce-page .progress-step-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
}
.register-ecommerce-page .progress-step.active .progress-step-label {
    color: var(--ec-primary);
    font-weight: 600;
}
.register-ecommerce-page .progress-step.completed .progress-step-label {
    color: var(--ec-accent);
}
.register-ecommerce-page .progress-step-line {
    flex: 1;
    height: 2px;
    background: #e9ecef;
    margin: 0 0.4rem;
    margin-top: -1.2rem;
    transition: background 0.3s ease;
}
.register-ecommerce-page .progress-step.completed + .progress-step-line {
    background: var(--ec-accent);
}

.register-ecommerce-page .form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}
.register-ecommerce-page .form-step.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-ecommerce-page .form-step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e9ecef;
}
.register-ecommerce-page .form-step-navigation button {
    min-width: 110px;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
}
.register-ecommerce-page .form-step-navigation #nextStepBtn,
.register-ecommerce-page .form-step-navigation #submitStepBtn {
    margin-left: auto;
}

/* Step 4: OTP Verification Styling */
.register-ecommerce-page #formStep4 {
    padding: 0.5rem 0;
}

/* Trust Badge Single */
.register-ecommerce-page .trust-badge-single {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.register-ecommerce-page .trust-badge-single small {
    font-size: 0.8rem;
    color: #6c757d;
}

.register-ecommerce-page .trust-badge-single i {
    color: var(--ec-primary);
    margin-right: 0.25rem;
}

.register-ecommerce-page #formStep4 #emailOtpSection,
.register-ecommerce-page #formStep4 #phoneOtpSection {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.register-ecommerce-page #formStep4 #emailOtpSection:hover,
.register-ecommerce-page #formStep4 #phoneOtpSection:hover {
    border-color: var(--ec-primary);
    box-shadow: 0 2px 8px rgba(11, 87, 208, 0.1);
}

.register-ecommerce-page #formStep4 #emailOtpSection.verified,
.register-ecommerce-page #formStep4 #phoneOtpSection.verified {
    background: #d4edda;
    border-color: #28a745;
}

.register-ecommerce-page #formStep4 #emailOtpInput,
.register-ecommerce-page #formStep4 #phoneOtpInput {
    border: 1.5px solid #dee2e6;
    transition: all 0.3s ease;
}

/* Professional Form Field Styling */
.register-ecommerce-page #registerEcommerceModal .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

.register-ecommerce-page #registerEcommerceModal .form-control,
.register-ecommerce-page #registerEcommerceModal .form-select {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.register-ecommerce-page #registerEcommerceModal .form-control:focus,
.register-ecommerce-page #registerEcommerceModal .form-select:focus {
    border-color: var(--ec-primary);
    box-shadow: 0 0 0 0.15rem rgba(11, 87, 208, 0.15);
    outline: none;
}

.register-ecommerce-page #registerEcommerceModal .form-control::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.register-ecommerce-page #registerEcommerceModal .mb-3 {
    margin-bottom: 1.25rem !important;
}

.register-ecommerce-page #formStep4 #emailOtpInput:focus,
.register-ecommerce-page #formStep4 #phoneOtpInput:focus {
    border-color: var(--ec-primary);
    box-shadow: 0 0 0 0.2rem rgba(11, 87, 208, 0.25);
}

.register-ecommerce-page #formStep4 #emailOtpInput:disabled,
.register-ecommerce-page #formStep4 #phoneOtpInput:disabled {
    background-color: #e9ecef;
    opacity: 0.7;
    cursor: not-allowed;
}

.register-ecommerce-page #formStep4 #emailOtpStatus,
.register-ecommerce-page #formStep4 #phoneOtpStatus {
    display: inline-flex;
    align-items: center;
}

.register-ecommerce-page #formStep4 #emailOtpTimer,
.register-ecommerce-page #formStep4 #phoneOtpTimer {
    color: #6c757d;
    font-weight: 500;
}

.register-ecommerce-page #formStep4 #emailOtpTimerSeconds,
.register-ecommerce-page #formStep4 #phoneOtpTimerSeconds {
    color: var(--ec-primary);
    font-weight: 700;
}

.register-ecommerce-page #formStep4 #verifyEmailOtpBtn,
.register-ecommerce-page #formStep4 #verifyPhoneOtpBtn {
    min-width: 120px;
    font-weight: 600;
}

.register-ecommerce-page #formStep4 #verifyEmailOtpBtn:disabled,
.register-ecommerce-page #formStep4 #verifyPhoneOtpBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Registration Modal Loading Overlay */
.register-ecommerce-page .registration-modal-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--ec-card-radius);
    animation: fadeIn 0.3s ease;
}
.register-ecommerce-page .registration-modal-loading-overlay .loading-content {
    text-align: center;
    padding: 2rem;
}
.register-ecommerce-page .registration-modal-loading-overlay .loading-content p {
    color: var(--ec-text);
    font-size: 1rem;
    margin: 0;
}

.register-ecommerce-page .register-ec-form-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--ec-text-muted);
    font-weight: 500;
}
.register-ecommerce-page .register-ec-form-step-sep {
    opacity: 0.6;
    user-select: none;
}
.register-ecommerce-page .hero-form-title {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 700;
    color: var(--ec-text);
}
/* Hero form container - default styles (will be overridden in modal) */
.register-ecommerce-page .hero-form-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--ec-card-radius);
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--ec-border);
}
.register-ecommerce-page .hero-form-container .form-label {
    font-weight: 600;
    color: var(--ec-text);
    margin-bottom: 0.375rem;
}
.register-ecommerce-page .hero-form-container .form-control,
.register-ecommerce-page .hero-form-container .form-select {
    min-height: 44px;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 0.625rem 0.875rem;
}
.register-ecommerce-page .hero-form-container .form-control:focus,
.register-ecommerce-page .hero-form-container .form-select:focus {
    border-color: var(--ec-primary);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.2);
    outline: none;
}
.register-ecommerce-page .hero-form-container .form-text.text-danger {
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
}
.register-ecommerce-page .register-cta-btn,
.register-ecommerce-page .hero-form-container .btn-primary {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
}
.register-ecommerce-page .register-ec-login-link {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.register-ecommerce-page .register-ec-login-link:hover {
    text-decoration: underline;
}

/* Mobile and responsive */
@media (max-width: 991px) {
    .register-ecommerce-page .register-ecommerce-hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    .register-ecommerce-page .register-ecommerce-hero-image {
        padding-left: 0;
        margin-top: 2rem;
    }
    .register-ecommerce-page .register-hero-bullets {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 768px) {
    .register-ecommerce-page .register-business-hero {
        padding: 60px 0 56px;
    }
    .register-ecommerce-page .how-it-works-section {
        padding: 3rem 0;
    }
    .register-ecommerce-page .how-it-works-card {
        padding: 2rem 1.25rem;
        margin-bottom: 2rem;
    }
    .register-ecommerce-page .hero-form-container {
        padding: 1.5rem 1.25rem 2rem;
    }
    .register-ecommerce-page .feature-comparison-section {
        padding: 3rem 0;
    }
    .register-ecommerce-page .feature-card .feature-card-body {
        padding: 1.5rem 1.25rem;
    }
    .register-ecommerce-page .cta-section {
        margin: 3rem 0.5rem 0;
        padding: 2rem 1rem;
    }
}
@media (max-width: 576px) {
    .register-ecommerce-page .register-business-hero {
        padding: 48px 0 40px;
    }
    .register-ecommerce-page .register-hero-title {
        font-size: clamp(1.5rem, 5vw + 0.5rem, 2rem);
    }
    .register-ecommerce-page .register-hero-bullets li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    .register-ecommerce-page .register-hero-bullets li i {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
    .register-ecommerce-page .how-it-works-section {
        padding: 2.5rem 0;
    }
    .register-ecommerce-page .why-choose-informay-section {
        padding: 2.5rem 0;
    }
    .register-ecommerce-page .register-ecommerce-commission-highlight {
        padding: 2.5rem 0;
    }
    .register-ecommerce-page .commission-highlight-icon {
        width: 2.5rem;
        margin-bottom: 0.75rem;
    }
    .register-ecommerce-page .commission-highlight-text {
        font-size: clamp(1.25rem, 4vw + 0.5rem, 1.75rem);
    }
    .register-ecommerce-page .how-it-works-card {
        padding: 1.75rem 1rem;
    }
    .register-ecommerce-page .why-choose-benefit-card {
        padding: 1.75rem 1rem;
        margin-bottom: 1rem;
    }
    .register-ecommerce-page .why-choose-icon i {
        font-size: 2.5rem !important;
    }
    .register-ecommerce-page .why-choose-title {
        font-size: 1rem;
    }
    .register-ecommerce-page .how-it-works-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        top: -18px;
    }
    .register-ecommerce-page .how-it-works-icon .how-it-works-img {
        width: 90px;
    }
    .register-ecommerce-page .register-ec-form-steps {
        font-size: 0.8125rem;
    }
    .register-ecommerce-page .register-testimonial-card {
        padding: 1.25rem 1rem;
    }
    .register-ecommerce-page #registerEcommerceModal .modal-dialog {
        margin: 0.25rem;
        max-width: calc(100% - 0.5rem);
    }
    .register-ecommerce-page #registerEcommerceModal .modal-header {
        padding: 1rem 1.25rem;
    }
    .register-ecommerce-page #registerEcommerceModal .modal-body {
        padding: 1.25rem;
        max-height: calc(100vh - 120px);
    }
    .register-ecommerce-page .form-step-progress {
        gap: 0.25rem;
        padding: 0;
    }
    .register-ecommerce-page .progress-step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .register-ecommerce-page .progress-step-label {
        font-size: 0.7rem;
    }
    .register-ecommerce-page .progress-step-line {
        margin: 0 0.15rem;
        margin-top: -0.9rem;
    }
    
    /* Step 4 OTP Verification - Mobile */
    .register-ecommerce-page #formStep4 {
        padding: 0.5rem 0;
    }
    
    /* Trust Badge - Mobile */
    .register-ecommerce-page .trust-badge-single {
        padding: 0.6rem 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .register-ecommerce-page .trust-badge-single small {
        font-size: 0.75rem;
    }
    
    /* Modal Header - Mobile */
    .register-ecommerce-page #registerEcommerceModal .modal-header {
        padding: 1rem 1.25rem;
    }
    
    .register-ecommerce-page #registerEcommerceModal .modal-title {
        font-size: 1.2rem;
    }
    
    .register-ecommerce-page #registerEcommerceModal .modal-body {
        padding: 1.25rem 1.25rem;
    }
    
    .register-ecommerce-page #formStep4 #emailOtpSection,
    .register-ecommerce-page #formStep4 #phoneOtpSection {
        padding: 1rem !important;
    }
    
    .register-ecommerce-page #formStep4 #emailOtpInput,
    .register-ecommerce-page #formStep4 #phoneOtpInput {
        font-size: 1.25rem !important;
        letter-spacing: 0.3rem !important;
    }
    
    .register-ecommerce-page #formStep4 #verifyEmailOtpBtn,
    .register-ecommerce-page #formStep4 #verifyPhoneOtpBtn {
        min-width: 100px;
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}
/* Fixed bottom CTA: safe area for notched devices */
.register-ecommerce-page .register-fixed-cta-bar {
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.register-ecommerce-page .register-fixed-cta-bar .register-fixed-cta-btn {
    min-height: 48px;
    padding: 0.75rem 1rem;
}

/* Accessibility: focus and reduced motion */
.register-ecommerce-page .cta-section-btn:focus-visible,
.register-ecommerce-page .register-fixed-cta-btn:focus-visible,
.register-ecommerce-page .register-cta-btn:focus-visible {
    outline: 3px solid var(--ec-primary);
    outline-offset: 2px;
}
.register-ecommerce-page .register-ec-login-link:focus-visible {
    outline: 2px solid var(--ec-primary);
    outline-offset: 2px;
    border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
    .register-ecommerce-page .register-ec-benefit-card:hover,
    .register-ecommerce-page .feature-card:hover {
        transform: none;
    }
}

/* Register page: category card CTA link */
.category-card-cta {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.category-card-cta:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* OTP modal trust line */
.otp-modal-trust-line {
    padding: 0.5rem 0;
}

/* Categories Section */
.categories-section {
    background: white;
    padding: 100px 0;
    position: relative;
}

.categories-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.categories-section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.category-card-landing {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

.category-card-landing:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-image-wrapper {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card-landing:hover .category-image {
    transform: scale(1.1);
}

.category-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    position: relative;
}

.category-icon-container {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #004AAD 0%, #00BF63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.25);
    transition: all 0.3s ease;
}

.category-card-landing:hover .category-icon-container {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 74, 173, 0.35);
}

.category-icon-main {
    font-size: 4.5rem;
    display: block;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category-icon-main-icon {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.category-icon-small {
    font-size: 1.5rem;
    display: inline-block;
    line-height: 1;
}

.category-card-content {
    padding: 20px;
    text-align: center;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.category-benefit {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    min-height: 60px;
}

/* Registration Form Section */
.registration-form-section {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 100px 0;
    position: relative;
}

.registration-form-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.registration-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.registration-form-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.register-cta-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #004AAD 0%, #00BF63 100%);
    border: none;
    transition: all 0.3s ease;
}

.register-cta-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 74, 173, 0.3);
}

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

/* Call to Action Section */
.cta-section {
    /* background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%); */
    padding: 60px 0;
    margin-bottom: 40px;
}

/* Fixed Footer Register Button */
.fixed-register-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #004AAD 0%, #00BF63 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
}

/* CRITICAL FIX: OTP Modal - ensure it's above everything */
.modal-backdrop {
    z-index: 1040 !important;
}

#otpVerificationModal {
    z-index: 1055 !important;
}

#otpVerificationModal .modal-dialog {
    z-index: 1056 !important;
}

#otpVerificationModal .modal-content {
    z-index: 1057 !important;
}

.fixed-register-footer .footer-text {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.fixed-register-footer .footer-text i {
    color: #FFD700;
    margin-right: 8px;
    font-size: 1.3rem;
}

.btn-footer-register {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    background: white;
    color: #004AAD;
    border: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-footer-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: #FFD700;
    color: #004AAD;
}

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

.cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    object-fit: contain;
}

.cta-illustration-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(0, 191, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.btn-cta-starburst {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-cta-starburst::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.btn-cta-starburst:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    color: white;
    text-decoration: none;
}

.cta-text-large {
    font-size: 1.5rem;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .register-hero-title {
        font-size: 3rem;
    }
    
    .register-hero-subtitle {
        font-size: 1.75rem;
    }
    
    .registration-form-card {
        padding: 40px 30px;
    }
    
    .registration-form-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .register-business-hero {
        padding: 60px 0 50px;
    }
    
    .register-hero-title {
        font-size: 2.5rem;
    }
    
    .register-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .register-hero-description {
        font-size: 1.1rem;
    }
    
    .feature-comparison-section {
        padding: 50px 0;
    }
    
    .categories-section {
        padding: 60px 0;
    }
    
    .categories-section-title {
        font-size: 2rem;
    }
    
    .categories-section-subtitle {
        font-size: 1.1rem;
    }
    
    .category-image-wrapper {
        height: 150px;
    }
    
    .category-name {
        font-size: 1.1rem;
    }
    
    .feature-card-body {
        padding: 25px 20px;
    }
    
    .feature-list li {
        font-size: 1rem;
        padding: 10px 0;
    }
    
    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .registration-form-section {
        padding: 50px 0;
    }
    
    .registration-form-card {
        padding: 30px 20px;
    }
    
    .registration-form-title {
        font-size: 1.75rem;
    }
    
    .registration-form-subtitle {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 40px 0;
        margin-bottom: 100px;
    }
    
    .cta-illustration-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .btn-cta-starburst {
        padding: 15px 35px;
    }
    
    .cta-text-large {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .register-hero-title {
        font-size: 2rem;
    }
    
    .register-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-badge {
        padding: 10px 20px;
    }
    
    .hero-badge .badge-text {
        font-size: 0.9rem;
    }
    
    .feature-card-header {
        padding: 20px 20px;
    }
    
    .feature-badge {
        padding: 8px 20px;
        font-size: 1rem;
    }
    
    .feature-card-body {
        padding: 20px 15px;
    }
    
    .registration-form-title {
        font-size: 1.5rem;
    }
    
    .register-cta-btn {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    .fixed-register-footer {
        padding: 15px 0;
    }
    
    .fixed-register-footer .footer-text {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .fixed-register-footer .col-md-8,
    .fixed-register-footer .col-md-4 {
        text-align: center !important;
    }
    
    .btn-footer-register {
        padding: 10px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-cta-buttons {
        margin-top: 1.5rem;
    }
    
    .register-business-hero {
        min-height: 450px;
        padding: 60px 0 50px;
    }
    
    .hero-preview-image {
        max-height: 200px;
    }
    
    .btn-hero-register {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .categories-section {
        padding: 50px 0;
    }
    
    .categories-section-title {
        font-size: 1.75rem;
    }
    
    .categories-section-subtitle {
        font-size: 1rem;
    }
    
    .category-image-wrapper {
        height: 120px;
    }
    
    .category-icon-container {
        width: 100px;
        height: 100px;
    }
    
    .category-icon-main {
        font-size: 3.5rem;
    }
    
    .category-icon-main-icon {
        font-size: 3rem;
    }
    
    .category-icon-small {
        font-size: 1.3rem;
    }
    
    .category-header {
        gap: 8px;
    }
    
    .category-name {
        font-size: 1rem;
    }
    
    .category-benefit {
        font-size: 0.85rem;
        min-height: 50px;
    }
}

/* Features Section */
.features-section {
    padding: 60px 0;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

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

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

.feature-emoji {
    font-size: 3rem;
    display: block;
}

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

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    border-radius: 12px;
}

.benefits-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.benefits-card-users {
    border-top: 4px solid var(--primary-color);
}

.benefits-card-owners {
    border-top: 4px solid var(--secondary-color);
}

.benefits-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.benefits-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.benefits-icon {
    font-size: 2.5rem;
}

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

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

/* Enhanced Statistics */
.stat-card-secondary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--primary-color);
}

.stat-card-secondary .stat-value {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-section .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-section .accordion-button {
    background-color: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.faq-section .accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Trust & Security Section */
.trust-section {
    border-radius: 12px;
}

.trust-badge {
    padding: 1.5rem;
}

.trust-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.trust-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Mid-Page CTA */
.cta-mid-page {
    margin: 60px 0;
}

.cta-mid-page .cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-mid-page .cta-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-emoji {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .benefits-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .benefits-icon {
        font-size: 2rem;
    }
    
    .faq-section {
        padding: 40px 0;
    }
    
    .trust-badge {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .trust-icon {
        font-size: 2.5rem;
    }
    
    .cta-mid-page .cta-title {
        font-size: 2rem;
    }
    
    .cta-mid-page .cta-description {
        font-size: 1rem;
    }
}

/* ================= ENGAGEMENT METRICS STYLES ================= */
.engagement-metrics {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.engagement-item {
    position: relative;
}

.engagement-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    color: #111827;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.engagement-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(11, 87, 208, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.engagement-btn:active {
    transform: translateY(0);
}

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

.engagement-btn-like {
    color: #6c757d;
}

.engagement-btn-like.liked {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
}

.engagement-btn-like.liked:hover {
    background: rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.4);
}

.engagement-btn-like i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.engagement-btn-like.liked i {
    transform: scale(1.1);
}

.engagement-btn-share {
    color: #0b57d0;
}

.engagement-btn-view {
    color: #6c757d;
    cursor: default;
}

.engagement-btn-view:hover {
    transform: none;
    box-shadow: none;
}

.engagement-count {
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 1.5rem;
    text-align: center;
}

.share-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    overflow: hidden;
}

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

/* Store hero: open share dropdown upward so it does not overlap the logo */
.store-hero__engagement-wrap .share-dropdown {
    top: auto;
    bottom: calc(100% + 0.5rem);
    transform: translateY(10px);
}
.store-hero__engagement-wrap .share-dropdown.show {
    transform: translateY(0);
}

.share-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #111827;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f1f3f5;
}

.share-option:last-child {
    border-bottom: none;
}

.share-option:hover {
    background-color: #f8f9fa;
    color: #0b57d0;
}

.share-option i {
    font-size: 1.1rem;
    width: 1.25rem;
    text-align: center;
}

/* Hero top strip: engagement card (left) – allow share dropdown to show */
.hero-engagement-wrap,
.store-hero__engagement-wrap {
    overflow: visible;
    position: relative;
}
.hero-top-strip,
.store-hero__top-strip {
    overflow: visible;
}

/* Hero section specific styles */
.hero-section .engagement-metrics {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.hero-section .engagement-btn {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
}

.hero-section .engagement-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Ecommerce store hero specific styles */
.store-hero__body .engagement-metrics {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.store-hero__body .engagement-btn {
    border-color: #e9ecef;
    background: #fff;
    color: #111827;
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
}

.store-hero__body .engagement-btn:hover {
    border-color: rgba(11, 87, 208, 0.25);
    box-shadow: 0 4px 12px rgba(11, 87, 208, 0.1);
}

.store-hero__body .engagement-btn-like.liked {
    background: rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
    color: #e91e63;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .engagement-metrics {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .engagement-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .engagement-count {
        font-size: 0.85rem;
        min-width: 1.25rem;
    }

    .share-dropdown {
        min-width: 160px;
        max-width: min(280px, calc(100vw - 2rem));
        left: auto;
        right: 0;
    }
}

@media (max-width: 576px) {
    .engagement-metrics {
        gap: 0.5rem;
    }

    .engagement-btn {
        padding: 0.35rem 0.65rem;
        font-size: 0.8rem;
        min-height: 44px;
        min-width: 44px;
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .engagement-count {
        font-size: 0.8rem;
    }

    .share-dropdown {
        min-width: 140px;
        max-width: min(260px, calc(100vw - 2rem));
        font-size: 0.9rem;
    }

    .share-option {
        padding: 0.65rem 0.85rem;
        min-height: 44px;
        box-sizing: border-box;
    }
}

@media (max-width: 375px) {
    .share-dropdown {
        min-width: 120px;
        max-width: min(240px, calc(100vw - 1.5rem));
    }
}

/* Touch targets: hero CTA and primary action buttons */
@media (max-width: 768px) {
    .hero-cta .btn {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
    }
}

/* ================= POSTS SECTION STYLES ================= */
.posts-section {
  padding: 60px 0;
}

.post-create-card {
  margin-bottom: 2rem;
}

.post-create-card .card {
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

.post-create-card .card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-card {
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 1.5rem;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.post-header {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1rem;
}

.post-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.post-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  word-wrap: break-word;
}

.post-content p {
  margin-bottom: 0;
}

.post-images {
  margin: 1rem 0;
}

.post-images img {
  border-radius: 8px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.post-images img:hover {
  transform: scale(1.02);
}

.post-actions {
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
  margin-top: 1rem;
}

.post-like-btn {
  border: 1px solid #dee2e6;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.post-like-btn:hover {
  background-color: #f8f9fa;
  border-color: #667eea;
}

.post-like-btn.liked {
  background-color: #fff5f5;
  border-color: #ef4444;
  color: #ef4444;
}

.post-like-btn.liked:hover {
  background-color: #fee2e2;
}

.post-like-btn i {
  font-size: 1.1rem;
}

.post-like-btn .like-count {
  font-weight: 500;
}

#postImagePreview img {
  border-radius: 8px;
  border: 2px solid #dee2e6;
}

#postImagePreview .position-relative {
  position: relative;
}

#postImagePreview .btn-danger {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

/* Responsive styles for posts */
@media (max-width: 768px) {
  .post-card {
    margin-bottom: 1rem;
  }
  
  .post-header {
    flex-direction: column;
    align-items: flex-start !important;
  }
  
  .post-avatar {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .post-images .row .col-3,
  .post-images .row .col-4,
  .post-images .row .col-6 {
    margin-bottom: 0.5rem;
  }
  
  .post-create-card .card-body {
    padding: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .posts-section {
    padding: 40px 0;
  }
  
  .post-card .card-body {
    padding: 1rem !important;
  }
  
  .post-content {
    font-size: 0.95rem;
  }
}

/* ============================================
   PROFESSIONAL DESIGN SYSTEM FOR PUBLIC PAGES
   ============================================ */

/* Enhanced CSS Variables */
:root {
    --primary-color: #004AAD;
    --primary-dark: #003A8D;
    --secondary-color: #00BF63;
    --text-dark: #212529;
    --text-light: #495057;
    --bg-light: #EFEFEF;
    --bg-white: #ffffff;
    --border-color: #d5d5d5;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #004AAD 0%, #00BF63 100%);
    --gradient-light: linear-gradient(135deg, rgba(0, 74, 173, 0.05) 0%, rgba(0, 191, 99, 0.05) 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

/* Enhanced Typography Scale */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: white;
    font-weight: 400;
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 1;
}

/* Enhanced Hero Section */
.hero-section-modern {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    
    position: relative;
    overflow: hidden;
}

.hero-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

/* Enhanced Button Styles */
.btn-cta-primary {
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #fff !important;
    color: var(--primary-color) !important;
    border: none !important;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa !important;
    color: var(--primary-dark) !important;
}

.btn-cta-secondary {
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 50px;
    border-width: 2px !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    color: #fff !important;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Modern Card Styles */
.feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 74, 173, 0.3);
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card .service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 3rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.service-card .bi-check-circle-fill {
    font-size: 1.2rem;
}

/* Step Icon Circles */
.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(0, 74, 173, 0.3);
}

/* Section Wrapper */
.section-modern {
    padding: 5rem 0;
}

.section-modern-alt {
    background: var(--bg-light);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Pricing Cards */
.pricing-card-enhanced {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.pricing-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pricing-card-enhanced .card-header {
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card-enhanced .card-body {
    padding: 2rem;
}

.pricing-card-enhanced .card-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Trust Indicators */
.trust-indicators {
    background: var(--bg-light);
    padding: 3rem 0;
    border-radius: var(--border-radius);
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-item-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-item h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    opacity: 1;
}

.trust-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Global Text Visibility Improvements */
.text-muted {
    color: var(--text-dark) !important;
    opacity: 1 !important;
    font-size: 1rem !important;
}

.small {
    font-size: 0.95rem !important;
    color: var(--text-dark) !important;
    opacity: 1 !important;
}

/* Ensure minimum readable font sizes for body text */
body p:not(.hero-subtitle):not(.section-subtitle) {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 1;
}

body li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 1;
}

/* Override Bootstrap text-muted globally */
.text-muted,
.text-muted * {
    color: var(--text-dark) !important;
    opacity: 1 !important;
}

/* Ensure lead text is visible */
.lead {
    color: var(--text-dark) !important;
    opacity: 1 !important;
    font-size: 1.125rem !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    p, li, span {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
}

/* ============================================
   DIGITAL MARKETING OPTIMIZATION STYLES
   ============================================ */

/* Social Proof Bar */
.social-proof-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.social-proof-bar.scrolled {
    box-shadow: var(--shadow-md);
}

.social-proof-item {
    text-align: center;
    padding: 0.5rem;
}

.social-proof-item strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.social-proof-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    opacity: 1;
}

.social-proof-item strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.social-proof-item i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Problem/Solution Section */
.problem-solution-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.problem-solution-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    border-left: 4px solid;
    transition: var(--transition);
}

.problem-solution-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.problem-solution-card li {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    opacity: 1;
}

.problem-solution-card strong {
    color: var(--text-dark);
    font-weight: 600;
}

.problem-solution-card.problem {
    border-left-color: #dc3545;
}

.problem-solution-card.solution {
    border-left-color: var(--secondary-color);
}

.problem-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.problem-solution-card.problem .problem-solution-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.problem-solution-card.solution .problem-solution-icon {
    background: rgba(0, 191, 99, 0.1);
    color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

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

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.testimonial-business {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    opacity: 1;
}

.faq-question {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal-delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Enhanced Service Cards - Simplified */
.service-card-simplified {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.service-card-simplified h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
}

.service-card-simplified p {
    color: var(--text-dark);
    font-size: 1rem;
    opacity: 1;
    line-height: 1.6;
}

.service-card-simplified li {
    color: var(--text-dark);
    font-size: 1rem;
    opacity: 1;
    line-height: 1.6;
}

.service-card-simplified strong {
    color: var(--text-dark);
    font-weight: 600;
}

.service-card-simplified:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-features-expandable {
    margin-top: 1rem;
}

.service-features-toggle {
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-features-toggle:hover {
    color: var(--primary-dark);
}

.service-features-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.service-features-expanded.show {
    max-height: 1000px;
    margin-top: 1rem;
}

/* Enhanced Final CTA */
.final-cta-enhanced {
    background: var(--gradient-primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta-urgency-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.cta-social-proof {
    font-size: 1rem;
    opacity: 1;
    margin-top: 1rem;
    color: white;
}

.cta-social-proof p {
    color: white;
    opacity: 1;
    font-weight: 400;
}

/* How It Works Timeline */
.how-it-works-timeline {
    position: relative;
    padding: 2rem 0;
}

.how-it-works-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
    z-index: 0;
}

@media (max-width: 768px) {
    .how-it-works-timeline::before {
        display: none;
    }
}

.step-card {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.step-time {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.step-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.step-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 1;
}

/* Benefit-focused Feature Groups */
.feature-benefit-group {
    margin-bottom: 3rem;
}

.feature-benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-benefit-title i {
    color: var(--secondary-color);
}

/* Additional Text Visibility Rules */
.card-body p,
.card-body li {
    color: var(--text-dark);
    font-size: 1rem;
    opacity: 1;
    line-height: 1.6;
}

.service-card-simplified ul li {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 1;
}

.problem-solution-card ul li {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 1;
}

/* Ensure all headings are visible */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
}

h1.hero-title {
    color: white;
}

h2.section-title {
    color: var(--primary-color);
}

/* Ensure all list items are visible */
ul li, ol li {
    color: var(--text-dark);
    font-size: 1rem;
    opacity: 1;
    line-height: 1.6;
}

/* Service card list items */
.service-card-simplified ul li,
.service-card ul li {
    color: var(--text-dark);
    font-size: 1rem;
    opacity: 1;
    line-height: 1.7;
}

/* Pricing card list items */
.pricing-card-enhanced ul li {
    color: var(--text-dark);
    font-size: 1rem;
    opacity: 1;
    font-weight: 400;
}

/* Problem/Solution list items */
.problem-solution-card ul li {
    color: var(--text-dark);
    font-size: 1rem;
    opacity: 1;
    line-height: 1.7;
}

/* Ensure strong tags are visible */
strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Page Container */
.contact-page-container {
    padding: 3rem 0;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 2rem 0;
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.2);
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.4);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-info-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.contact-info-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    padding: 2rem 0;
}

.contact-form-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-form-body {
    padding: 3rem;
}

.contact-form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: block;
    font-size: 1rem;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-submit {
    transition: var(--transition);
    font-weight: 600;
    padding: 0.875rem 2.5rem;
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 74, 173, 0.3);
}

/* Feature Cards (Why Choose Section) */
.why-choose-section {
    padding: 2rem 0;
}

.feature-card-modern {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.2);
}

.feature-card-modern:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.4);
}

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

.feature-card-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Trust Section Styles */
.trust-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .trust-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .trust-section {
        padding: 2.5rem 0;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

@media (max-width: 576px) {
    .trust-item {
        padding: 1.5rem 1rem;
        border-radius: 0.5rem;
    }
}

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

@media (hover: none) {
    .trust-item:hover {
        transform: none;
    }
}

.trust-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.trust-label {
    color: #6c757d;
    font-weight: 500;
    margin: 0.5rem 0 0;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .trust-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .trust-number {
        font-size: 1.75rem;
    }
    
    .trust-label {
        font-size: 0.875rem;
    }
}

/* Company Info Section */
.company-info-section {
    padding: 2rem 0;
}

.company-info-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.company-info-item {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.company-info-item:hover {
    background: rgba(0, 74, 173, 0.02);
}

.company-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.2);
}

.company-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.company-info-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.company-info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.company-info-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Section Titles and Subtitles */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-proof-bar {
        position: relative;
    }
    
    .social-proof-item {
        margin-bottom: 0.5rem;
    }
    
    .problem-solution-section {
        padding: 3rem 0;
    }
    
    .testimonials-section,
    .faq-section {
        padding: 3rem 0;
    }
    
    .final-cta-enhanced {
        padding: 3rem 0;
    }
    
    /* Contact Page Mobile Styles */
    .contact-page-container {
        padding: 2rem 0;
    }
    
    .contact-info-card,
    .contact-form-card,
    .company-info-card {
        padding: 1.5rem;
    }
    
    .contact-form-body {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-icon,
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .contact-info-title,
    .feature-card-title {
        font-size: 1.25rem;
    }
    
    .contact-info-text {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .company-info-card {
        padding: 2rem 1.5rem;
    }
    
    .company-info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
    
    /* Ensure text remains readable on mobile */
    body p, body li {
        font-size: 0.95rem;
    }
}