/* Reset and 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;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-top:-7px;
    gap: 12px;
}

.nav-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    text-decoration: none;
}

.admin-badge {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff6b35;
}

.nav-link-special {
    color: #ff6b35 !important;
    font-weight: 600;
}

.nav-link-special:hover {
    color: #e55a2b !important;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.profile-name {
    font-weight: 600;
    color: #333;
}

.btn-secondary {
    padding: 10px 20px;
    border: 2px solid #ff6b35;
    background: transparent;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
}

.btn-primary {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: translateY(-2px);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Admin Console Styles */
.admin-nav {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.admin-section {
    display: none;
    padding: 100px 0 60px;
    min-height: 100vh;
}

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

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 16px;
    color: white;
}

.welcome-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.welcome-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.quick-actions {
    display: flex;
    gap: 16px;
}

.btn-quick-action {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-quick-action:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-quick-action svg {
    width: 20px;
    height: 20px;
}

/* Notifications Panel */
.notifications-panel {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.panel-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.notification-item.new {
    background: #e8f5e8;
    border-left: 4px solid #10b981;
}

.notification-item:hover {
    background: #e9ecef;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon.success {
    background: #10b981;
    color: white;
}

.notification-icon.info {
    background: #3b82f6;
    color: white;
}

.notification-icon.warning {
    background: #f59e0b;
    color: white;
}

.notification-icon svg {
    width: 20px;
    height: 20px;
}

.notification-content {
    flex: 1;
}

.notification-content p {
    margin-bottom: 4px;
    color: #333;
}

.notification-time {
    font-size: 12px;
    color: #666;
}

/* Statistics Dashboard */
.stats-dashboard {
    margin-bottom: 40px;
}

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

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card.primary .stat-icon {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
}

.stat-card.secondary .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.stat-card.accent .stat-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.stat-card.success .stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #333;
}

.stat-label {
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
}

.stat-change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.stat-change.positive {
    background: #dcfce7;
    color: #166534;
}

.stat-change.negative {
    background: #fee2e2;
    color: #991b1b;
}

.stat-change.neutral {
    background: #f3f4f6;
    color: #374151;
}

/* Section Headers */
.section-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

/* Tables */
.admin-table {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.admin-table thead {
    background: #f8f9fa;
}

.admin-table th,
.admin-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.admin-table th {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tbody tr:hover {
    background: #f8f9fa;
}

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

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

.chef-info strong {
    display: block;
    font-weight: 600;
    color: #333;
}

.chef-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: #dcfce7;
    color: #166534;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.completed {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.processing {
    background: #e0e7ff;
    color: #3730a3;
}

.status-badge.paid {
    background: #dcfce7;
    color: #166534;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #fbbf24;
    font-size: 16px;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-action {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-action.message {
    background: #dbeafe;
    color: #1e40af;
}

.btn-action.message:hover {
    background: #bfdbfe;
}

.btn-action.view {
    background: #f3f4f6;
    color: #374151;
}

.btn-action.view:hover {
    background: #e5e7eb;
}

.btn-action svg {
    width: 16px;
    height: 16px;
}

/* Date Filter */
.date-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-input {
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.date-input:focus {
    outline: none;
    border-color: #ff6b35;
}

/* Transaction Summary */
.transactions-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.summary-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.summary-card h4 {
    color: #666;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
}

/* Payment Summary */
.payment-summary {
    display: flex;
    align-items: center;
    gap: 16px;
}

.next-payment {
    background: #e8f5e8;
    color: #166534;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
}

/* Messaging Layout */
.messaging-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 24px;
    height: 600px;
}

.conversations-panel,
.chat-panel {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.panel-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.conversations-list {
    height: calc(100% - 80px);
    overflow-y: auto;
}

.conversation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.conversation-item:hover {
    background: #f8f9fa;
}

.conversation-item.active {
    background: #e8f5e8;
    border-right: 3px solid #10b981;
}

.conversation-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.conversation-info {
    flex: 1;
    min-width: 0;
}

.conversation-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.conversation-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-time {
    font-size: 12px;
    color: #999;
}

.unread-badge {
    background: #ff6b35;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Chat Panel */
.chat-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.chat-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.online-status {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
}

.chat-messages {
    height: calc(100% - 160px);
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    display: flex;
    max-width: 70%;
}

.message.sent {
    align-self: flex-end;
}

.message.received {
    align-self: flex-start;
}

.message-content {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 16px;
    position: relative;
}

.message.sent .message-content {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
}

.message-content p {
    margin-bottom: 4px;
    line-height: 1.4;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
}

.chat-input {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 12px;
    align-items: center;
}

.message-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
}

.message-input:focus {
    border-color: #ff6b35;
}

.send-button {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-button:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: scale(1.05);
}

.send-button svg {
    width: 20px;
    height: 20px;
}

/* Marketplace */
.cart-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cart-items,
.cart-total {
    font-weight: 600;
    color: #333;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

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

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-info {
    padding: 24px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.product-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.product-specs span {
    font-size: 14px;
    color: #666;
}

.product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.qty-input {
    width: 60px;
    padding: 6px 8px;
    border: 2px solid #ddd;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.qty-input:focus {
    outline: none;
    border-color: #ff6b35;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: translateY(-2px);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.modal-header {
    text-align: center;
    padding: 40px 40px 20px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.invite-icon,
.checkout-icon {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
}

.modal-icon svg {
    width: 40px;
    height: 40px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.modal-subtitle {
    color: #666;
    font-size: 16px;
}

.modal-body {
    padding: 0 40px 40px;
}

/* Invite Modal */
.invite-modal {
    max-width: 500px;
    width: 90vw;
}

/* Checkout Modal */
.checkout-modal {
    max-width: 600px;
    width: 90vw;
}

.order-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.order-summary h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.item-name {
    font-weight: 500;
    color: #333;
}

.item-quantity {
    color: #666;
    font-size: 14px;
}

.item-price {
    font-weight: 600;
    color: #ff6b35;
}

.order-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #ddd;
    text-align: right;
    font-size: 18px;
    color: #333;
}

.checkout-note {
    background: #e8f5e8;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #10b981;
}

.checkout-note p {
    color: #166534;
    font-size: 14px;
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.btn-auth-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-hero-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-hero-secondary {
    padding: 16px 32px;
    border: 2px solid #ff6b35;
    background: transparent;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(229, 90, 43, 0.1));
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #ff6b35;
    border-bottom: 2px solid #ff6b35;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* View All Button */
.btn-view-all {
    top: 0;
    right: 0;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-learn-more {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-learn-more:hover {
    background: #ff6b35;
    color: white;
}

/* Recipes Section */
.recipes {
    padding: 120px 0;
}

.recipes-container {
    position: relative;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.recipe-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.recipe-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

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

.recipe-card:hover .recipe-overlay {
    opacity: 1;
}

.recipe-btn {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recipe-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: translateY(-2px);
}

.recipe-content {
    padding: 24px;
}

.recipe-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.recipe-chef {
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.recipe-details {
    margin-bottom: 16px;
}

.recipe-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.recipe-detail-label {
    font-weight: 500;
    color: #666;
}

.recipe-detail-value {
    color: #333;
}

.recipe-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.recipe-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    color: #ffc107;
}

.rating-value {
    font-weight: 600;
    color: #333;
}

.recipe-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
}

.recipe-availability {
    font-size: 14px;
    color: #666;
}

.availability-label {
    font-weight: 500;
}

/* Chefs Section */
.chefs {
    padding: 120px 0;
    background: #f8f9fa;
}

.chefs-container {
    position: relative;
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.chef-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.chef-image {
    height: 250px;
    overflow: hidden;
}

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

.chef-card:hover .chef-image img {
    transform: scale(1.1);
}

.chef-content {
    padding: 24px;
}

.chef-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.chef-title {
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 8px;
}

.chef-specialty {
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.chef-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.chef-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.chef-stat {
    text-align: center;
}

.chef-stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
}

.chef-stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chef-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.chef-badge {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.chef-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.chef-location svg {
    width: 16px;
    height: 16px;
}

/* Pagination */
.recipes-pagination,
.chefs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.pagination-btn {
    width: 48px;
    height: 48px;
    border: 2px solid #ff6b35;
    background: transparent;
    color: #ff6b35;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #ff6b35;
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn svg {
    width: 20px;
    height: 20px;
}

.pagination-dots {
    display: flex;
    gap: 12px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: 120px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.btn-read-more {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: translateY(-2px);
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

/* Join Team Section */
.join-team {
    padding: 120px 0;
    background: #f8f9fa;
}

.join-team-content {
    text-align: center;
}

.join-team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.join-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.join-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.join-card-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.join-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.join-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.join-card-btn {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.join-card-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: translateY(-2px);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: #ff6b35;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* App Banner */
.app-banner {
    padding: 120px 0;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
}

.app-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.app-banner-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
}

.app-store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: black;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.app-store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.app-store-icon {
    width: 32px;
    height: 32px;
}

.app-store-text {
    display: flex;
    flex-direction: column;
}

.app-store-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.app-store-title {
    font-size: 16px;
    font-weight: 600;
}

.app-banner-visual {
    text-align: center;
    position: relative;
}

.app-mockup {
    position: relative;
    display: inline-block;
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: rotate(-5deg) translateY(0px);
    }
    50% {
        transform: rotate(-5deg) translateY(-20px);
    }
}

.app-preview-image {
    width: 300px;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 16px;
    display: block;
}

.footer-tagline {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 40px;
    text-align: center;
}

.footer-copyright {
    color: #ccc;
}

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
}

.page-hero-description {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-link:hover {
    opacity: 1;
}

.breadcrumb-separator {
    margin: 0 8px;
}

.breadcrumb-current {
    opacity: 0.6;
}

/* Chef Map Styles */
.chef-map-section {
    padding: 80px 0;
}

.map-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.map-controls {
    padding: 24px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.search-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 400px;
}

.location-search {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.location-search:focus {
    outline: none;
    border-color: #ff6b35;
}

.search-btn {
    padding: 12px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

.filter-controls {
    display: flex;
    gap: 16px;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #ff6b35;
}

.google-map {
    width: 100%;
    height: 600px;
    border: none;
}

.map-legend {
    padding: 16px 24px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 24px;
    align-items: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.legend-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.chef-marker {
    background: #ff6b35;
}

.cluster-marker {
    background: #e55a2b;
}

/* Area Chefs Styles */
.filters-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.filters-container {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.area-chefs {
    padding: 80px 0;
}

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

.results-count {
    font-size: 16px;
    color: #666;
}

.load-more-container {
    text-align: center;
    margin-top: 48px;
}

.btn-load-more {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: translateY(-2px);
}

/* Chef Profile Styles */
.chef-profile {
    padding: 40px 0;
    background: #f8f9fa;
}

.chef-profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.chef-profile-image {
    position: relative;
}

.chef-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

.chef-profile-info {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chef-profile-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.chef-profile-title {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.chef-profile-specialty {
    color: #666;
    font-size: 16px;
    margin-bottom: 16px;
    font-style: italic;
}

.chef-profile-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.chef-profile-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.chef-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Recipe Filters */
.recipe-filters-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.chef-recipes {
    padding: 80px 0;
}

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

.load-more-recipes-container {
    text-align: center;
    margin-top: 48px;
}

/* Enhanced Feature Modal */
.enhanced-feature-modal {
    max-width: 1000px;
    width: 90vw;
    height: 600px;
    padding: 0;
    overflow: hidden;
}

.enhanced-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.modal-visual {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px;
}

.step-visual-content {
    text-align: center;
}

.visual-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.visual-icon svg {
    width: 60px;
    height: 60px;
    color: white;
}

.step-visual-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-visual-content p {
    opacity: 0.9;
    font-size: 16px;
}

.modal-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-header {
    margin-bottom: 32px;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.modal-subtitle {
    color: #666;
    font-size: 16px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.step-description {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.modal-pagination {
    margin-top: 32px;
}

.auto-progress {
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin-top: 16px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Get Started Modal */
.get-started-modal {
    max-width: 600px;
    width: 90vw;
    padding: 40px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.get-started-icon {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
}

.get-started-icon svg {
    width: 40px;
    height: 40px;
}

.get-started-content {
    margin-top: 32px;
}

.get-started-step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.get-started-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.get-started-step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.get-started-step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Order Modal */
.order-modal {
    max-width: 600px;
    width: 90vw;
    padding: 40px;
}

.order-icon {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
}

.order-icon svg {
    width: 40px;
    height: 40px;
}

.order-content {
    margin-top: 32px;
}

.order-step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.order-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.order-step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.order-step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.app-download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.app-download-btn:hover {
    background: #333;
}

.app-icon {
    width: 20px;
    height: 20px;
}

.dish-id-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 12px;
}

.dish-id-label {
    font-weight: 500;
    color: #666;
}

.dish-id {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #333;
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.copy-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #e55a2b;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

/* Area Info Modal */
.area-info-modal {
    max-width: 500px;
    width: 90vw;
    padding: 40px;
}

.area-stats {
    display: flex;
    justify-content: space-around;
    margin: 32px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
}

.area-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.area-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* Auth Styles */
.auth-body {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 400px;
}

.auth-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    text-decoration: none;
    display: block;
    margin-bottom: 24px;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.auth-subtitle {
    color: #666;
    font-size: 16px;
}

.auth-form {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-input.success {
    border-color: #10b981;
    background: #f0fdf4;
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: inline-table;
    cursor: pointer;
    font-size: 14px;
}

.checkbox {
    width: 25px !important;
    height: 25px !important;
    accent-color: #ff6b35;
    margin-top: 0px;
}

.checkbox-text {
    color: #666;
    margin-left:20px;
    margin-top:-10px !important;
    
}

.forgot-link,
.terms-link,
.auth-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link:hover,
.terms-link:hover,
.auth-link:hover {
    color: #e55a2b;
}

.btn-auth-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d1f);
    transform: translateY(-2px);
}

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
    color: #666;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.auth-divider span {
    background: white;
    padding: 0 16px;
    position: relative;
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.btn-social:hover {
    border-color: #ff6b35;
    background: #f8f9fa;
}

.auth-footer {
    text-align: center;
    color: #666;
}

.password-requirements {
    margin-top: 4px;
}

.password-requirements small {
    color: #666;
    font-size: 12px;
}

/* Form Sections */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.form-subtitle {
    color: #666;
    font-size: 16px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

/* Benefits and Requirements */
.benefits,
.requirements {
    padding: 80px 0;
}

.benefits-grid,
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card,
.requirement-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover,
.requirement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon,
.requirement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon svg,
.requirement-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.benefit-title,
.requirement-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.benefit-description,
.requirement-description {
    color: #666;
    line-height: 1.6;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.requirements-list {
    margin-top: 32px;
}

.requirement-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.requirement-item .requirement-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    margin: 0;
}

.requirement-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.requirement-content p {
    color: #666;
    font-size: 14px;
}

.requirements-visual {
    text-align: center;
}

.requirements-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

/* Application Form */
.application-form {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Role Overview Section */
.role-overview {
    padding: 80px 0;
}

.role-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.role-text {
    max-width: 600px;
}

.role-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.role-responsibilities {
    margin-top: 32px;
}

.responsibility-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.responsibility-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.responsibility-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.responsibility-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.responsibility-item p {
    color: #666;
    line-height: 1.6;
}

.role-visual {
    text-align: center;
}

.role-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .page-hero-title {
        font-size: 40px;
    }

    .about-content,
    .app-banner-content,
    .role-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chef-profile-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .enhanced-modal-content {
        grid-template-columns: 1fr;
        height: auto;
    }

    .enhanced-feature-modal {
        height: auto;
        max-height: 90vh;
    }

    .modal-visual {
        order: 2;
    }

    .modal-text {
        order: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-controls {
        max-width: none;
    }

    .filter-controls {
        justify-content: space-between;
    }

    .requirements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .area-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    /* Admin Console Mobile */
    .admin-header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .messaging-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .conversations-panel {
        height: 300px;
    }

    .chat-panel {
        height: 400px;
    }

    .marketplace-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .admin-table {
        font-size: 14px;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px 8px;
    }

    .chef-info {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .recipes-grid,
    .chefs-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .app-store-buttons {
        flex-direction: column;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        text-align: center;
    }

    /* Admin Console Small Mobile */
    .welcome-title {
        font-size: 28px;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .transactions-summary {
        grid-template-columns: 1fr;
    }

    .date-filter {
        flex-direction: column;
        gap: 8px;
    }

    .section-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .product-pricing {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

/* Print Styles */
@media print {
    .nav,
    .footer,
    .modal-overlay,
    .scroll-indicator {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .section-title {
        font-size: 18pt;
        margin-bottom: 12pt;
    }

    .page-hero {
        background: none;
        color: black;
        padding: 20pt 0;
    }
}