/* =====================================================
   ReservEasy - Custom Styles
   Tunch.Dev | TunchTech
   ===================================================== */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --gradient-start: #6366f1;
    --gradient-end: #8b5cf6;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* =====================================================
   Base Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   Utility Classes
   ===================================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.min-vh-75 {
    min-height: 75vh;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    font-weight: 500;
    border-radius: var(--radius);
    padding: 0.625rem 1.25rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.875rem;
}

/* =====================================================
   Forms
   ===================================================== */
.form-control, .form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.input-group-text {
    border-color: var(--border-color);
}

/* =====================================================
   Navbar
   ===================================================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: var(--bg-light);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-search .input-group {
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-search .form-control {
    border: none;
    padding: 1rem 0;
}

.hero-search .input-group-text {
    border: none;
    padding-left: 1.25rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: -10%;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =====================================================
   Section Headers
   ===================================================== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* =====================================================
   Categories Section
   ===================================================== */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.category-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.category-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.category-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* =====================================================
   How It Works Section
   ===================================================== */
.step-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    position: relative;
    height: 100%;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-card h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* =====================================================
   Business Cards
   ===================================================== */
.business-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.business-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.business-card:hover .business-image img {
    transform: scale(1.05);
}

.business-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.business-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.business-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.business-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.business-location, .business-hours {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.business-location i, .business-hours i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--warning-color);
    font-size: 0.875rem;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.business-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.service-tag.more {
    background: var(--primary-color);
    color: #fff;
}

/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-stars {
    color: var(--warning-color);
    font-size: 0.875rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-business {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* =====================================================
   Statistics Section
   ===================================================== */
.statistics-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
}

.stat-box {
    padding: 2rem;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.cta-content {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
}

.cta-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* =====================================================
   Page Headers
   ===================================================== */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header-sm {
    padding: 3rem 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* =====================================================
   Filter Sidebar
   ===================================================== */
.filter-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.filter-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.category-filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.category-filter-item {
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius);
    color: var(--text-dark);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-filter-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.category-filter-item.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
}

/* =====================================================
   Business Details Page
   ===================================================== */
.business-header-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 2rem 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--text-dark);
}

.business-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.business-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.business-gallery img {
    border-radius: var(--radius-xl);
    height: 400px;
    object-fit: cover;
}

.detail-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.detail-card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    border-color: var(--primary-color);
}

.service-item.selected {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.service-info {
    flex: 1;
}

.service-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.service-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.service-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.service-price-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.service-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.service-price.free {
    color: var(--success-color);
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Map Placeholder */
.map-placeholder {
    background: var(--bg-light);
    height: 150px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* =====================================================
   Reservation Card
   ===================================================== */
.reservation-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.reservation-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.selected-service-display {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: var(--radius);
}

.selected-service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: #fff;
    font-size: 0.875rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover:not(.disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    border-color: transparent;
}

.time-slot.disabled {
    background: var(--bg-light);
    color: var(--text-muted);
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Reservation Summary */
.reservation-summary {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0;
}

/* =====================================================
   About Page
   ===================================================== */
.about-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    height: 100%;
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Team Cards */
.team-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--bg-light);
}

.team-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
}

.company-info-card {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.company-info-card h4 {
    margin-bottom: 0.5rem;
}

/* =====================================================
   Contact Page
   ===================================================== */
.contact-form-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.contact-info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-details-list li:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-details-list h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details-list p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.map-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder-large {
    background: var(--bg-light);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.map-placeholder-large i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-btn.facebook { background: #1877f2; }
.social-btn.twitter { background: #000; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.linkedin { background: #0a66c2; }
.social-btn.youtube { background: #ff0000; }

/* Accordion */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
}

/* =====================================================
   Legal Pages
   ===================================================== */
.legal-content {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.25rem;
}

/* =====================================================
   Footer
   ===================================================== */
.footer-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links.contact-info li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links.contact-info i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-credit {
    color: var(--primary-color);
}

.footer-credit:hover {
    color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-item {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .category-desc {
        display: none;
    }

    .business-gallery img {
        height: 250px;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-section {
        padding: 3rem 0 1.5rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-search .input-group {
        flex-direction: column;
    }

    .hero-search .form-control {
        border-radius: var(--radius-lg) !important;
        margin-bottom: 0.5rem;
    }

    .hero-search .btn {
        border-radius: var(--radius-lg) !important;
        width: 100%;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-card {
        position: static;
    }
}
