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

: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: 100px;
}

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

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

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

/* 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.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-modern ul li {
    margin-bottom: 0.5rem;
}

.footer-modern a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.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.7);
    font-size: 0.9rem;
}

/* 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: 2rem;
    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-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;
    }
}

/* 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;
}

/* 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;
    }
}

/* 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);
}

/* 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;
    }
    
    .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;
}

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

.register-hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 1.5rem;
    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-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;
}

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

/* 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: 100px; /* Space for fixed footer */
}

/* 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;
    }
}