/* Base Styles & Variables */
:root {
  --primary: #6c5ce7;
  --primary-dark: #5649c0;
  --secondary: #00cec9;
  --accent: #fd79a8;
  --dark: #2d3436;
  --light: #f5f6fa;
  --success: #00b894;
  --warning: #fdcb6e;
  --danger: #d63031;
  --gray: #636e72;
  --light-gray: #dfe6e9;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.05);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Buttons */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section - Modern Design */
.hero-modern {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.hero-modern .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 800px;
  text-align: center;
}

.hero-visual {
  position: relative;
  min-height: 400px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.hero-badge {
  position: absolute;
  top: -1rem;
  right: -3rem;
  background: var(--accent);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transform: rotate(15deg);
  box-shadow: var(--shadow-sm);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 90%;
}

/* Floating Cards Animation */
.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  width: 120px;
  height: 120px;
}

.float-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.float-card span {
  font-weight: 600;
}

.card-1 {
  top: 10%;
  left: 10%;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  color: white;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  top: 30%;
  right: 5%;
  background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
  color: white;
  animation: float 7s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 20%;
  left: 15%;
  background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
  color: white;
  animation: float 5.5s ease-in-out infinite 0.5s;
}

.card-4 {
  bottom: 10%;
  right: 15%;
  background: linear-gradient(135deg, #a6c1ee 0%, #fbc2eb 100%);
  color: white;
  animation: float 6.5s ease-in-out infinite 1.5s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Hero Search */
.modern-search-form {
  width: 100%;
  max-width: 500px;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.search-container:focus-within {
  box-shadow: var(--shadow-lg);
}

.search-icon {
  position: absolute;
  left: 1.5rem;
  color: var(--gray);
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.5rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
}

.search-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0 1.5rem;
  height: 100%;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--primary-dark);
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.btn-cta {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-cta-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-cta-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-cta-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-cta-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Quick Categories */
.quick-categories {
  background: white;
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none; /* Firefox */
}

.category-tabs::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.category-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--gray);
  transition: var(--transition);
  min-width: 100px;
}

.category-tab i {
  font-size: 1.25rem;
}

.category-tab:hover, .category-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Section Styles */
.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title i {
  color: var(--primary);
}

.section-subtitle {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--transition);
}

.view-all-btn:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}



/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.category-card h3 {
  margin-bottom: 0.75rem;
}

.category-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.category-stats {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 1.75rem;
}

.feature-item h3 {
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 500;
  grid-column: 1 / -1;
}

.alert-error {
  background: rgba(214, 48, 49, 0.1);
  color: var(--danger);
  border-left: 4px solid var(--danger);
}

.alert-info {
  background: rgba(0, 184, 148, 0.1);
  color: var(--success);
  border-left: 4px solid var(--success);
}



/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-modern, .quick-categories, .featured-section, .latest-section, 
.categories-showcase, .why-choose-us {
  animation: fadeIn 0.8s ease-out forwards;
}

.featured-section { animation-delay: 0.1s; }
.latest-section { animation-delay: 0.2s; }
.categories-showcase { animation-delay: 0.3s; }
.why-choose-us { animation-delay: 0.4s; }
/* ===== Base Styles ===== */
:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #4cc9f0;
    --warning-color: #f8961e;
    --danger-color: #f72585;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Header Styles ===== */
.site-header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 100%;
    padding: 0 20px;
}

/* Top Promo Bar */
.header-top-bar {
    background: var(--dark-color);
    color: white;
    padding: 0.5rem 20px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    width: 100%;
}

.header-promo span {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand .logo i {
    font-size: 1.8rem;
}

/* Search Bar */
.nav-search {
    flex: 1;
    max-width: 600px;
    margin: 0 1rem;
}

.nav-search form {
    display: flex;
    width: 100%;
}

.nav-search input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px 0 0 4px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.nav-search button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.nav-search button:hover {
    background: var(--primary-dark);
}

/* User Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-cart {
    position: relative;
    font-size: 1.2rem;
    color: var(--gray-color);
    transition: var(--transition);
}

.nav-cart:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--gray-color);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: var(--transition);
}

.dropdown-toggle:hover {
    color: var(--primary-color);
    background: rgba(67, 97, 238, 0.05);
}

.dropdown-toggle i:first-child {
    font-size: 1.2rem;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: 6px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(67, 97, 238, 0.05);
    color: var(--primary-color);
}

.dropdown-menu a i {
    width: 18px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 0.4rem 0;
}

/* Auth Buttons */
.nav-auth {
    display: flex;
    gap: 0.8rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline {
    border: 1px solid var(--gray-color);
    color: var(--gray-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Category Navigation */
.category-navigation {
    background: var(--light-color);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.category-navigation ul {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 0.8rem 20px;
    gap: 1.5rem;
    width: 100%;
}

.category-navigation ul::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-navigation li {
    flex-shrink: 0;
}

.category-navigation a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: var(--transition);
}

.category-navigation a:hover {
    color: var(--primary-color);
    background: rgba(67, 97, 238, 0.05);
}

.category-navigation a i {
    font-size: 1rem;
    transition: var(--transition);
}

.category-navigation a:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    .main-navigation {
        flex-wrap: wrap;
        padding: 1rem 20px;
    }
    
    .nav-search {
        order: 3;
        flex: 1 1 100%;
        margin: 1rem 0 0 0;
        max-width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .header-top-bar {
        padding: 0.5rem 15px;
        font-size: 0.8rem;
    }
    
    .category-navigation ul {
        padding: 0.8rem 15px;
        gap: 1rem;
    }
    
    .main-navigation {
        padding: 1rem 15px;
    }
    
    .nav-actions {
        gap: 0.8rem;
    }
    
    .dropdown-toggle span {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .header-top-bar {
        padding: 0.4rem 10px;
        font-size: 0.75rem;
    }
    
    .category-navigation ul {
        padding: 0.6rem 10px;
        gap: 0.8rem;
    }
    
    .main-navigation {
        padding: 0.8rem 10px;
    }
    
    .nav-brand .logo {
        font-size: 1.2rem;
    }
    
    .nav-brand .logo span {
        display: none;
    }
    
    .nav-auth {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        right: -0.5rem;
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-modern {
        padding: 3rem 0;
    }
    
    .categories-showcase,
    .why-choose-us {
        padding: 3rem 0;
    }
}
/* Auth Pages Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 1rem;
}

.auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-logo {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #718096;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    color: #a0aec0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
}

.auth-link {
    text-align: center;
    margin-top: 2rem;
}

.auth-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-link a:hover {
    color: #764ba2;
}

.demo-accounts {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.demo-accounts h4 {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.demo-accounts p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #718096;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-section h3, 
.footer-section h4 {
    color: #f39c12;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f39c12;
}

.footer-section h3 i {
    margin-right: 10px;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #ecf0f1;
    background-color: #34495e;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #f39c12;
    transform: translateY(-3px);
}

.footer-section p i {
    margin-right: 10px;
    color: #f39c12;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: #bdc3c7;
}

.footer-bottom a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}




