/* ===== CITY PAGE SPECIFIC STYLES ===== */

/* City Page Layout */
.city-page {
    min-height: 100vh;
    background: var(--bg-secondary);
}

/* City Hero Section */
.city-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(99, 102, 241, 0.3) 50%,
        rgba(168, 85, 247, 0.4) 100%
    );
    backdrop-filter: blur(2px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: white;
    font-weight: 500;
}

/* Hero Text */
.hero-text {
    margin-bottom: 3rem;
}

.city-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-main {
    display: block;
    opacity: 0.9;
    color: darkgray;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.city-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* City Search */
.city-search-container {
    margin-bottom: 3rem;
}

.search-glass-card {
    background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.search-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: all var(--transition-normal);
}

.search-input::placeholder {
    
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.search-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-select {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;

    outline: none;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.filter-select:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* City Stats */
.city-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: slideUp 1s ease-out 0.5s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    min-width: 100px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Results Section */
.business-info {
  display: inline;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.results-section {
    padding: 3rem 0;
    min-height: 50vh;
}

/* Filter Tabs */
.filter-tabs {
    margin-bottom: 2rem;
}

.tabs-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tab-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: var(--border-radius);
}

.tab-item.active,
.tab-item:hover {
    color: white;
    transform: translateY(-1px);
}

.tab-item.active::before,
.tab-item:hover::before {
    opacity: 1;
}

.tab-icon,
.tab-text,
.tab-count {
    position: relative;
    z-index: 1;
}

.tab-count {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.tab-item.active .tab-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Tab Dropdown */
.tab-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none !important;
}

.dropdown-toggle svg {
    transition: transform var(--transition-normal);
}

.tab-dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    max-height: 300px;
    overflow-y: auto;
}

.tab-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color var(--transition-fast);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--bg-secondary);
}

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

.item-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Filters Toolbar */
.filters-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 1rem;
}

.active-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

.remove-filter {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.125rem;
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.remove-filter:hover {
    background: rgba(99, 102, 241, 0.2);
}

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

.sort-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.sort-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    outline: none;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

.sort-select:focus {
    border-color: var(--primary-color);
}

/* Results Content */
.results-content {
    animation: fadeInUp 0.6s ease-out;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.results-info p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.view-toggle {
    display: flex;
    gap: 0.25rem;
    background: var(--bg-primary);
    padding: 0.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.view-btn {
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Business Grid */
.businesses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.businesses-list .business-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.businesses-list .business-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.businesses-list .business-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.businesses-list .business-image-container {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.businesses-list .business-info {
    flex: 1;
    padding: 1rem;
}

/* Business Card */
.business-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

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

.business-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.business-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.business-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.business-card:hover .business-image {
    transform: scale(1.05);
}

.business-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

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

.business-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.action-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.favorite-btn.favorited {
    background: var(--error-color);
    color: white;
}

.favorite-btn.animate {
    animation: heartBeat 0.3s ease;
}

.quick-actions {
    display: flex;
    justify-content: center;
}

.quick-book-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.quick-book-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Business Badges */
.business-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.badge.verified {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.badge.featured {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.badge.open {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Business Info */
.business-info {
    padding: 1.25rem;
}

.business-header {
    margin-bottom: 0.75rem;
    padding: 0 20px;
}

.business-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.business-category {
    font-size: 0.8125rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.business-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 0 20px;
}

.business-location svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

.business-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 20px;
}

.business-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 20px;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0 20px;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: #fbbf24;
    font-size: 0.875rem;
}

.star.empty {
    color: var(--border-color);
}

.star.half {
    position: relative;
}

.star.half::before {
    content: '★';
    position: absolute;
    width: 50%;
    overflow: hidden;
    color: #fbbf24;
}

.rating-score {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

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

.no-rating .rating-placeholder {
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-style: italic;
}

.price-range {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-from {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.price-amount {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9375rem;
}

.business-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0 20px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.quick-info-item svg {
    flex-shrink: 0;
}

/* Pagination */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.pagination-numbers {
    display: flex;
    gap: 0.25rem;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.pagination-dots {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pagination-info {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin: 2rem 0;
}

.empty-animation {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.empty-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s infinite;
}

.circle-1 {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    animation-delay: 0.5s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    animation-delay: 1s;
}

.empty-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.empty-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.empty-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Related Cities Section */
.related-cities-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-muted));
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.title-icon {
    font-size: 1.5em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.city-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    background: var(--bg-primary);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.city-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

./* Modern Login Page Styles */

/* Base Variables */
:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --primary-light: #a5b4fc;
    --secondary-color: #8b5cf6;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --text-light: #f9fafb;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-muted: #f1f5f9;
    --bg-dark: #0f172a;
    
    --border-color: #e2e8f0;
    --border-focus: var(--primary-color);
    --border-error: var(--error-color);
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.35s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Auth Page Layout */
.auth-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

/* Animated Background */
.auth-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #f5576c 75%, 
        #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.auth-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.8) 0%,
        rgba(118, 75, 162, 0.8) 50%,
        rgba(240, 147, 251, 0.8) 100%);
    backdrop-filter: blur(40px);
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: -5s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -10s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

/* Auth Container */
.auth-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.auth-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Auth Header */
.auth-header {
    width: 100%;
    max-width: 400px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    box-shadow: var(--glass-shadow);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.back-btn svg {
    transition: transform var(--transition-fast);
}

.back-btn:hover svg {
    transform: translateX(-2px);
}

/* Auth Card with Glassmorphism */
.auth-card {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

.auth-card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.auth-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.auth-card-body {
    padding: 1rem 2rem 2rem;
}

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.label-icon {
    color: var(--text-muted);
    transition: color var(--transition-normal);
}

.form-group.focused .label-icon {
    color: var(--primary-color);
}

/* Input Container */
.input-container {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input.error {
    border-color: var(--error-color);
    background: rgba(239, 68, 68, 0.05);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Input Border Animation */
.input-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.form-group.focused .input-border {
    width: 100%;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

/* Field Errors */
.field-error {
    display: none;
    color: var(--error-color);
    font-size: 0.8125rem;
    margin-top: 0.375rem;
    animation: slideDown 0.3s ease;
}

/* Form Row */
.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Custom Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    position: relative;
    transition: all var(--transition-normal);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.375rem;
    height: 0.625rem;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: translate(-50%, -60%) rotate(45deg) scale(0);
    transition: transform var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: translate(-50%, -60%) rotate(45deg) scale(1);
}

.checkbox-text {
    user-select: none;
}

/* Forgot Password Link */
.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    outline: none;
    user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* Button Loading State */
.btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    animation: spin 1s linear infinite;
}

/* Social Login */
.social-login {
    margin-top: 1.5rem;
}

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

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: var(--bg-primary);
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-social {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    justify-content: flex-start;
    padding-left: 1rem;
}

.btn-social:hover {
    border-color: var(--primary-color);
    background: var(--bg-secondary);
}

.btn-google svg {
    flex-shrink: 0;
}

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

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.register-prompt {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

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

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

/* Business CTA */
.business-cta {
    width: 100%;
    max-width: 400px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--glass-shadow);
    animation: slideUp 0.8s ease-out;
}

.cta-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 1; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.8; }
    75% { transform: translateY(-20px) rotate(270deg); opacity: 1; }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 500;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.toast.success {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.toast.error {
    background: linear-gradient(135deg, var(--error-color), #dc2626);
}

.toast.info {
    background: linear-gradient(135deg, var(--info-color), #2563eb);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Demo Button */
.demo-btn {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 640px) {
    .auth-page {
        padding: 0.5rem;
    }
    
    .auth-card {
        max-width: 100%;
        margin: 0 0.5rem;
    }
    
    .auth-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .auth-card-body {
        padding: 1rem 1.5rem 2rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .social-buttons {
        gap: 0.5rem;
    }
    
    .btn-social {
        justify-content: center;
        padding-left: 1.5rem;
    }
    
    .shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .back-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .form-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
    }
    
    .cta-card {
        padding: 1.25rem;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f9fafb;
        --text-secondary: #d1d5db;
        --text-muted: #9ca3af;
        
        --bg-primary: #1f2937;
        --bg-secondary: #111827;
        --bg-muted: #374151;
        
        --border-color: #374151;
    }
    
    .auth-card {
        background: rgba(31, 41, 55, 0.95);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .form-input {
        background: rgba(31, 41, 55, 0.8);
        color: var(--text-primary);
    }
    
    .form-input:focus {
        background: rgba(31, 41, 55, 0.95);
    }
    
    .cta-card {
        background: rgba(31, 41, 55, 0.9);
    }
    
    .divider span {
        background: var(--bg-primary);
    }
}

/* ===== FORGOT PASSWORD PAGE SPECIFIC STYLES ===== */

/* Auth Icon */
.auth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.auth-icon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-primary);
    border-radius: 50%;
    z-index: 1;
}

.auth-icon svg {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Alert Messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    animation: slideDown 0.4s ease-out;
}

.alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

.alert-error::before {
    background: var(--error-color);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.alert-success::before {
    background: var(--success-color);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #92400e;
}

.alert-warning::before {
    background: var(--warning-color);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #1e40af;
}

.alert-info::before {
    background: var(--info-color);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    animation: fadeInScale 0.6s ease-out;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--success-color);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.success-icon svg {
    color: white;
    animation: checkmarkDraw 0.8s ease-out 0.2s both;
}

.success-message h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: left;
}

.success-note p {
    font-size: 0.875rem;
    color: #92400e;
    margin: 0;
}

.success-note strong {
    font-weight: 600;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.btn-text {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-fast);
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--primary-color);
}

/* Enhanced Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkmarkDraw {
    0% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dasharray: 100 0;
        stroke-dashoffset: 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Forgot Password */
@media (max-width: 640px) {
    .auth-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }
    
    .auth-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .success-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }
    
    .success-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .success-message {
        padding: 1.5rem 1rem;
    }
    
    .success-message h3 {
        font-size: 1.125rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .alert {
        padding: 0.875rem 1rem;
        font-size: 0.8125rem;
    }
    
    .success-note {
        padding: 0.875rem;
        margin: 1.25rem 0;
    }
}

@media (max-width: 480px) {
    .auth-title {
        font-size: 1.5rem;
    }
    
    .auth-subtitle {
        font-size: 0.8125rem;
    }
    
    .success-message h3 {
        font-size: 1rem;
    }
    
    .success-message p {
        font-size: 0.875rem;
    }
    
    .success-note p {
        font-size: 0.8125rem;
    }
}

/* Dark Mode for Forgot Password */
@media (prefers-color-scheme: dark) {
    .auth-icon::before {
        background: var(--bg-primary);
    }
    
    .alert-error {
        background: rgba(239, 68, 68, 0.15);
        color: #fca5a5;
    }
    
    .alert-success {
        background: rgba(16, 185, 129, 0.15);
        color: #6ee7b7;
    }
    
    .alert-warning {
        background: rgba(245, 158, 11, 0.15);
        color: #fbbf24;
    }
    
    .alert-info {
        background: rgba(59, 130, 246, 0.15);
        color: #93c5fd;
    }
    
    .success-message {
        background: rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.3);
    }
    
    .success-note {
        background: rgba(245, 158, 11, 0.15);
        border-color: rgba(245, 158, 11, 0.3);
    }
    
    .success-note p {
        color: #fbbf24;
    }
}

/* ===== REGISTER PAGE SPECIFIC STYLES ===== */

/* Account Type Selection */
.account-type-selection {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.type-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.type-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.type-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.type-options {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.type-option {
    cursor: pointer;
    display: block;
}

.type-option input[type="radio"] {
    display: none;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.type-option:hover .option-card::before {
    left: 100%;
}

.type-option.selected .option-card,
.type-option input:checked + .option-card {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.option-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.option-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.option-check {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.option-check svg {
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-fast);
    color: white;
}

.type-option.selected .option-check,
.type-option input:checked + .option-card .option-check {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.type-option.selected .option-check svg,
.type-option input:checked + .option-card .option-check svg {
    opacity: 1;
    transform: scale(1);
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Phone Input with Country Code */
.input-container .country-code {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    padding: 0 0.5rem;
    border: none;
    background: rgba(248, 250, 252, 0.8);
    border-right: 1px solid var(--border-color);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-primary);
    outline: none;
    appearance: none;
    cursor: pointer;
}

.phone-input {
    padding-left: 90px !important;
}

/* Field Help Text */
.field-help {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
    line-height: 1.4;
}

/* Email Check Icon */
.email-check {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    animation: checkAppear 0.3s ease;
}

@keyframes checkAppear {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.75rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.strength-bar {
    width: 100%;
    height: 0.375rem;
    background: var(--bg-muted);
    border-radius: 0.1875rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.strength-fill {
    height: 100%;
    background: var(--error-color);
    border-radius: 0.1875rem;
    transition: all var(--transition-normal);
    width: 0;
}

.strength-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.strength-requirements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: color var(--transition-normal);
}

.requirement svg {
    color: var(--border-color);
    transition: color var(--transition-normal);
}

.requirement.met {
    color: var(--success-color);
}

.requirement.met svg {
    color: var(--success-color);
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label.large {
    font-size: 0.9375rem;
    line-height: 1.5;
}

.checkbox-label.large .checkbox-text {
    max-width: calc(100% - 2rem);
}

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

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

/* Login Prompt */
.login-prompt {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

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

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

/* Benefits Section */
.benefits-section {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    animation: slideUp 1s ease-out;
}

.benefits-section h3 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Enhanced Animations for Register Page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.form-section:nth-child(1) { animation-delay: 0.1s; }
.form-section:nth-child(2) { animation-delay: 0.2s; }
.form-section:nth-child(3) { animation-delay: 0.3s; }
.form-section:nth-child(4) { animation-delay: 0.4s; }

.benefit-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.benefit-item:nth-child(1) { animation-delay: 0.5s; }
.benefit-item:nth-child(2) { animation-delay: 0.6s; }
.benefit-item:nth-child(3) { animation-delay: 0.7s; }
.benefit-item:nth-child(4) { animation-delay: 0.8s; }

/* Responsive Design for Register Page */
@media (max-width: 768px) {
    .type-options {
        gap: 0.75rem;
    }
    
    .option-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .option-icon {
        font-size: 1.5rem;
    }
    
    .strength-requirements {
        grid-template-columns: 1fr;
        gap: 0.375rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.25rem 1rem;
    }
    
    .benefits-section {
        padding: 1.5rem;
    }
    
    .country-code {
        width: 70px !important;
    }
    
    .phone-input {
        padding-left: 80px !important;
    }
}

@media (max-width: 640px) {
    .account-type-selection {
        padding: 1rem;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .section-title {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .password-strength {
        padding: 0.75rem;
    }
    
    .checkbox-label.large {
        font-size: 0.875rem;
    }
    
    .benefits-section h3 {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .option-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }
    
    .option-content h4 {
        font-size: 0.9375rem;
    }
    
    .option-content p {
        font-size: 0.8125rem;
    }
    
    .country-code {
        width: 60px !important;
        font-size: 0.8125rem;
    }
    
    .phone-input {
        padding-left: 70px !important;
    }
    
    .strength-requirements {
        gap: 0.25rem;
    }
    
    .requirement {
        font-size: 0.75rem;
    }
}

/* Dark Mode Enhancements for Register */
@media (prefers-color-scheme: dark) {
    .account-type-selection {
        background: linear-gradient(135deg, rgba(31, 41, 55, 0.3), rgba(31, 41, 55, 0.1));
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .option-card {
        background: rgba(31, 41, 55, 0.8);
    }
    
    .type-option.selected .option-card,
    .type-option input:checked + .option-card {
        background: rgba(99, 102, 241, 0.15);
    }
    
    .password-strength {
        background: rgba(31, 41, 55, 0.5);
        border-color: var(--border-color);
    }
    
    .benefits-section {
        background: rgba(31, 41, 55, 0.9);
    }
    
    .benefit-item {
        background: rgba(55, 65, 81, 0.6);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .country-code {
        background: rgba(31, 41, 55, 0.8);
        color: var(--text-primary);
    }
    
    .field-help {
        color: var(--text-muted);
    }
}

/* Print styles */
@media print {
    .auth-background,
    .floating-shapes,
    .business-cta,
    .benefits-section {
        display: none;
    }
    
    .auth-page {
        background: white;
    }
    
    .auth-card {
        background: white;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .account-type-selection,
    .password-strength {
        background: white;
        border: 1px solid #ccc;
    }
}

.city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

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

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.city-info {
    color: white;
}

.city-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.city-count {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Loading Spinner */
.loading-spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Responsive Design for City Page */
@media (max-width: 1024px) {
    .city-hero {
        min-height: 60vh;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .city-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .businesses-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .city-hero {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .city-subtitle {
        font-size: 1rem;
    }
    
    .search-glass-card {
        padding: 1.25rem;
    }
    
    .search-filters {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .city-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .tabs-nav {
        padding: 0.25rem;
        gap: 0.25rem;
    }
    
    .tab-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .filters-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .results-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .view-toggle {
        align-self: flex-end;
    }
    
    .businesses-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .business-image-container {
        height: 180px;
    }
    
    .business-overlay {
        padding: 0.75rem;
    }
    
    .business-actions {
        gap: 0.375rem;
    }
    
    .action-btn {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-numbers {
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .city-image-container {
        height: 150px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .breadcrumb {
        font-size: 0.8125rem;
        margin-bottom: 1.5rem;
    }
    
    .city-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 0.75rem;
    }
    
    .city-subtitle {
        font-size: 0.9375rem;
    }
    
    .search-glass-card {
        padding: 1rem;
    }
    
    .search-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.9375rem;
    }
    
    .filter-select {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .search-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .tab-item {
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
    }
    
    .tab-count {
        font-size: 0.6875rem;
        padding: 0.125rem 0.375rem;
    }
    
    .business-info {
        padding: 1rem;
    }
    
    .business-name {
        font-size: 1rem;
    }
    
    .business-category {
        font-size: 0.75rem;
    }
    
    .business-location,
    .business-description {
        font-size: 0.8125rem;
    }
    
    .quick-book-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .empty-state {
        padding: 3rem 1rem;
    }
    
    .empty-icon {
        font-size: 3rem;
    }
    
    .empty-content h3 {
        font-size: 1.25rem;
    }
    
    .empty-content p {
        font-size: 0.9375rem;
    }
    
    .empty-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .city-stats {
        justify-content: center;
    }
    
    .stat-item {
        min-width: 70px;
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .dropdown-menu {
        min-width: 180px;
        left: auto;
        right: 0;
    }
    
    .business-quick-info {
        gap: 0.5rem;
    }
    
    .quick-info-item {
        font-size: 0.6875rem;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .pagination-number {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.8125rem;
    }
}

/* Dark Mode for City Page */
@media (prefers-color-scheme: dark) {
    .city-page {
        background: var(--bg-dark);
    }
    
    .search-glass-card {
        background: rgba(31, 41, 55, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .search-input,
    .filter-select {
        background: rgba(31, 41, 55, 0.9);
        border-color: rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
    }
    
    .tabs-nav {
        background: var(--bg-primary);
    }
    
    .business-card {
        background: var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .filters-toolbar {
        background: var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .pagination-btn,
    .pagination-number {
        background: var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .empty-state {
        background: var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .city-card {
        background: var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .tab-item.active,
    .pagination-number.active {
        background: var(--text-primary);
        color: var(--bg-primary);
    }
    
    .business-card {
        border: 2px solid var(--border-color);
    }
    
    .badge {
        border: 1px solid currentColor;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .business-card,
    .city-card,
    .tab-item,
    .business-image,
    .city-image {
        transition: none;
    }
    
    .empty-icon,
    .status-dot,
    .loading-spinner {
        animation: none;
    }
    
    .circle {
        animation: none;
        opacity: 0.1;
    }
}

/* Print styles for city page */
@media print {
    .city-hero {
        min-height: auto;
        background: white;
        color: black;
    }
    
    .hero-background,
    .floating-shapes,
    .business-overlay,
    .business-actions,
    .quick-actions,
    .view-toggle,
    .related-cities-section {
        display: none;
    }
    
    .search-glass-card {
        background: white;
        border: 1px solid #ccc;
    }
    
    .business-card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .businesses-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination-container {
        display: none;
    }
}