/* ========================================
   CSS VARIABLES & BASE STYLES
   ======================================== */
:root {
    /* Upstate NY Nature-Inspired Color Palette */
    --primary-color: #2d5016;
    --secondary-color: #8b4513;
    --accent-color: #d4891e;
    --lake-blue: #1e5a7d;
    --mountain-grey: #5a6c7d;
    --pine-green: #1a3a2e;
    --sunset-orange: #d96c3a;
    --snow-white: #f5f5f0;
    --dark-color: #2c2416;
    --light-color: #faf8f3;
    --gradient: linear-gradient(135deg, #2d5016 0%, #1e5a7d 50%, #8b4513 100%);
    --nature-gradient: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(30, 90, 125, 0.95) 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--light-color);
    color: var(--dark-color);
}

/* ========================================
   PUBLIC SITE NAVIGATION
   ======================================== */
.navbar {
    background: rgba(45, 80, 22, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    color: var(--accent-color);
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* ========================================
   DASHBOARD SIDEBAR NAVIGATION
   ======================================== */
.user-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: var(--pine-green);
    color: white;
    padding: 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: var(--accent-color);
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.sidebar-header h5 {
    margin: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.sidebar .section-title {
    padding: 15px 20px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

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

.main-content {
    margin-left: 260px;
    flex: 1;
    padding: 0;
}

.topbar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.content-area {
    padding: 30px;
}

.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    color: var(--pine-green);
    font-weight: 700;
    margin-bottom: 5px;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

/* ========================================
   PROFILE HEADER
   ======================================== */
.profile-header {
    background: var(--nature-gradient), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%231e5a7d;stop-opacity:1" /><stop offset="100%" style="stop-color:%232d5016;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23sky)" width="1200" height="600"/><path fill="%23234012" opacity="0.3" d="M0,400 Q300,350 600,380 T1200,400 L1200,600 L0,600 Z"/><path fill="%231a3a2e" opacity="0.5" d="M0,450 Q300,420 600,440 T1200,450 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    margin-top: 76px;
    position: relative;
}

.profile-header::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="pine" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M50 10 L55 30 L60 20 L50 10 M45 30 L50 50 L55 40 L45 30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pine)"/></svg>');
    opacity: 0.3;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.profile-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-category {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.profile-rating {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.profile-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-action.primary {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-action.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 137, 30, 0.6);
    background: #e69a2e;
}

.btn-action.secondary {
    background: transparent;
    color: white;
}

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: var(--nature-gradient), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%231e5a7d;stop-opacity:1" /><stop offset="100%" style="stop-color:%232d5016;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23sky)" width="1200" height="600"/><path fill="%23234012" opacity="0.3" d="M0,400 Q300,350 600,380 T1200,400 L1200,600 L0,600 Z"/><path fill="%231a3a2e" opacity="0.5" d="M0,450 Q300,420 600,440 T1200,450 L1200,600 L0,600 Z"/><circle cx="150" cy="80" r="40" fill="%23d4891e" opacity="0.6"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::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="pine" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M50 10 L55 30 L60 20 L50 10 M45 30 L50 50 L55 40 L45 30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pine)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-secondary {
    background-color: var(--mountain-grey);
    border-color: var(--mountain-grey);
}

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

.btn-primary-custom {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 137, 30, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 137, 30, 0.6);
    background: #e69a2e;
    color: white;
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ========================================
   SEARCH BAR
   ======================================== */
.search-container {
    background: white;
    border-radius: 100px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.search-input {
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
}

.search-input:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.4);
}

/* ========================================
   CARDS & ALERTS
   ======================================== */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.alert {
    border-radius: 8px;
    border: none;
}

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

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
    padding: 60px 0;
}

.section-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.1);
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pine-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-text {
    color: var(--mountain-grey);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 140px;
    justify-content: center;
}

.info-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.85rem;
    color: var(--mountain-grey);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.info-content p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.service-list {
    list-style: none;
    padding: 0;
}

.service-item {
    padding: 20px;
    margin-bottom: 15px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.1);
}

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

.service-name i {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    color: var(--mountain-grey);
    font-size: 0.95rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-bg: transparent;
}

.faq-item {
    background: var(--light-color);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.1);
}

.faq-item .accordion-button {
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 20px 25px;
    font-size: 1.1rem;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary-color);
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d5016'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d5016'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.faq-item .accordion-body {
    padding: 0 25px 20px 25px;
    color: var(--mountain-grey);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    max-width: 100%;
    height: 250px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 50%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.gallery-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.5;
}

/* ========================================
   LINK TREE SECTION
   ======================================== */
.link-tree {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.link-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.15);
    color: var(--primary-color);
}

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-right: 20px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-form {
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
    outline: none;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.4);
}

.contact-info-card {
    background: var(--nature-gradient);
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.3);
}

.contact-info-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-info-item p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.review-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.1);
}

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

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

.review-date {
    color: var(--mountain-grey);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent-color);
}

.review-text {
    color: var(--mountain-grey);
    line-height: 1.6;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-section {
    padding: 80px 0;
    background: var(--light-color);
}

.section-subtitle {
    color: var(--mountain-grey);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 4rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.08);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.2);
    border-color: var(--primary-color);
}

.category-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: inline-block;
}

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

.category-count {
    color: var(--mountain-grey);
    font-size: 0.95rem;
}

/* ========================================
   FEATURED BUSINESSES SECTION
   ======================================== */
.featured-section {
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.8) 0%, rgba(234, 232, 220, 0.8) 100%);
    padding: 80px 0;
    position: relative;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 5 L32 15 L30 25 M15 30 L25 32 L35 30" stroke="rgba(45, 80, 22, 0.03)" stroke-width="1" fill="none"/></svg>');
    opacity: 0.5;
}

.business-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.1);
    height: 100%;
    position: relative;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.25);
}

.business-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 50%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.business-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.business-content {
    padding: 25px;
}

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

.business-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.business-description {
    color: var(--mountain-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.business-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.rating {
    color: var(--accent-color);
    font-weight: 600;
}

.view-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.4);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: var(--nature-gradient);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/><circle cx="40" cy="40" r="20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.stat-card {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: 80px 0;
    background: var(--light-color);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(45, 80, 22, 0.03) 0%, white 30%);
}

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

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

.pricing-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 1rem;
    color: var(--mountain-grey);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--mountain-grey);
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--pine-green);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 137, 30, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* ========================================
   LOGIN SECTION
   ======================================== */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--nature-gradient), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%231e5a7d;stop-opacity:1" /><stop offset="100%" style="stop-color:%232d5016;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23sky)" width="1200" height="600"/><path fill="%23234012" opacity="0.3" d="M0,400 Q300,350 600,380 T1200,400 L1200,600 L0,600 Z"/><path fill="%231a3a2e" opacity="0.5" d="M0,450 Q300,420 600,440 T1200,450 L1200,600 L0,600 Z"/><circle cx="150" cy="80" r="40" fill="%23d4891e" opacity="0.6"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
}

.login-section::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="pine" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M50 10 L55 30 L60 20 L50 10 M45 30 L50 50 L55 40 L45 30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pine)"/></svg>');
    opacity: 0.3;
}

.login-container {
    position: relative;
    z-index: 1;
}

.login-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.login-icon i {
    font-size: 2.5rem;
    color: white;
}

.login-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pine-green);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--mountain-grey);
    font-size: 1rem;
}

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

.input-group-icon {
    position: relative;
}

.input-group-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mountain-grey);
    font-size: 1.1rem;
}

.input-group-icon .form-control {
    padding-left: 50px;
    border-radius: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}

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

.form-check-label {
    color: var(--dark-color);
    font-size: 0.95rem;
}

.forgot-link {
    color: var(--lake-blue);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.btn-login {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--lake-blue) 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.4);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: var(--mountain-grey);
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    background: white;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-google {
    color: #ea4335;
}

.btn-google:hover {
    border-color: #ea4335;
    background: #fff5f5;
}

.btn-facebook {
    color: #1877f2;
}

.btn-facebook:hover {
    border-color: #1877f2;
    background: #f0f7ff;
}

.signup-link {
    text-align: center;
    color: var(--mountain-grey);
    font-size: 0.95rem;
}

.signup-link a {
    color: var(--lake-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.signup-link a:hover {
    color: var(--primary-color);
}

/* ========================================
   TABLES
   ======================================== */
.table-hover tbody tr:hover {
    background-color: rgba(45, 80, 22, 0.05);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 10px;
    }

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

    .user-container {
        flex-direction: column;
    }

    .profile-title {
        font-size: 2rem;
    }

    .profile-actions {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }
}