@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #ff3366; /* Vibrant Neon Pink/Red */
  --primary-hover: #ff0044;
  --secondary-color: #00bcd4; /* Vibrant Blue/Cyan */
  --secondary-hover: #00acc1;
  --bg-dark: #f8fafc; /* White/Light Slate background */
  --bg-darker: #f1f5f9; /* Off-white background */
  --card-bg: #ffffff; /* White card */
  --card-hover: #f8fafc;
  --text-main: #0f172a; /* Dark slate text */
  --text-muted: #475569; /* Darker gray muted text */
  --border-color: #cbd5e1; /* Clear borders */
  --border-glow: rgba(0, 188, 212, 0.3);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(0, 188, 212, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 51, 102, 0.04) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(0, 188, 212, 0.04) 0px, transparent 50%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -1px;
}
.nav-brand span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Colorful Category Tags */
.tag-periodic { background: #fee2e2 !important; color: #ef4444 !important; border: 1px solid #fecaca !important; }
.tag-ac { background: #e0f2fe !important; color: #0284c7 !important; border: 1px solid #bae6fd !important; }
.tag-denting { background: #fef3c7 !important; color: #d97706 !important; border: 1px solid #fde68a !important; }
.tag-spa { background: #dcfce7 !important; color: #15803d !important; border: 1px solid #bbf7d0 !important; }
.tag-tyres { background: #f3e8ff !important; color: #7c3aed !important; border: 1px solid #e9d5ff !important; }
.tag-batteries { background: #ffedd5 !important; color: #ea580c !important; border: 1px solid #fed7aa; }
.tag-detailing { background: #e0e7ff !important; color: #4338ca !important; border: 1px solid #c7d2fe !important; }
.tag-windshield { background: #fae8ff !important; color: #c026d3 !important; border: 1px solid #f5d0fe !important; }
.tag-default { background: #f1f5f9 !important; color: #475569 !important; border: 1px solid #cbd5e1 !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff0055 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 51, 102, 0.25);
  border: 1px solid rgba(255, 51, 102, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 51, 102, 0.4), var(--shadow-glow);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #00bcff 100%);
  color: #05070f;
  box-shadow: 0 8px 20px rgba(0, 240, 255, 0.25);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 240, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.05);
  border-color: var(--text-main);
  color: var(--text-main);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 5%;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 650px;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-main) 40%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

/* Glass Booking Widget */
.booking-widget, .car-selector {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 460px;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.booking-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 80%);
  pointer-events: none;
}

.booking-widget h3, .car-selector h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background-color: var(--bg-darker);
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary-color);
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.15);
}

.form-control:disabled {
  background-color: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

/* Services Catalog & Grid */
.services-section {
  padding: 6rem 5%;
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px -15px rgba(0, 240, 255, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Reviews and Cards */
.reviews-section {
  padding: 6rem 5%;
  background: var(--bg-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.review-card .stars {
  color: #ffb703;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.review-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.review-card .author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-card .author::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: var(--secondary-color);
}

/* Auth Pages Styling */
.auth-container {
  max-width: 480px;
  margin: 5rem auto;
  padding: 3rem;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.auth-container h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  text-align: center;
}

.success-banner {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  text-align: center;
}

/* Tabs for Role Selector */
.role-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 2rem;
}

.role-tab {
  padding: 0.75rem;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  border-radius: calc(var(--radius-sm) - 2px);
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.role-tab.active {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-glow);
}

/* Seller Fields Toggle */
.conditional-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px dashed var(--border-color);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

/* Catalog View Details & Badge */
.seller-badge {
  background: rgba(0, 240, 255, 0.12);
  color: var(--secondary-color);
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-item {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  gap: 2rem;
  transition: var(--transition);
}

.service-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--card-hover);
  transform: scale(1.01);
}

.service-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.service-content {
  flex: 1;
}

.service-details h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.service-details p {
  color: var(--text-muted);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

/* Checkout Summary Container */
.checkout-container {
  max-width: 900px;
  margin: 5rem auto;
  padding: 3rem;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.summary-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
}

.summary-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.summary-box p {
  margin-bottom: 0.5rem;
  color: #fff;
}

.success-box {
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-box i {
  font-size: 5rem;
  color: #10b981;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4));
}

.success-box h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

/* Stepper progress for user dashboard */
.progress-container {
  margin: 2.5rem 0 1.5rem 0;
  overflow-x: auto;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  min-width: 600px;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border-color);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  flex: 1;
}

.step .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  font-size: 1.1rem;
  transition: var(--transition);
}

.step.active .icon {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #05070f;
  box-shadow: 0 0 15px var(--secondary-color);
}

.step.active {
  color: var(--secondary-color);
}

.step.completed .icon {
  background: #10b981;
  border-color: #10b981;
  color: white;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.step.completed {
  color: #10b981;
}

/* Table Design for Admin and Seller Dashboards */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

th, td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background: var(--bg-darker);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  color: var(--text-main);
  font-size: 0.95rem;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.status-select {
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-darker);
  color: var(--text-main);
  font-weight: 600;
}

/* Grid layout for Dashboard */
.dashboard-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.admin-page {
  padding: 5rem 5%;
}

.admin-page h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.booking-item {
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.booking-item:first-child {
  padding-top: 0;
}

.booking-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Emergency Page styling */
.sos-bg {
  background-color: #1a0a0d;
  background-image: 
    radial-gradient(at 0% 0%, rgba(220, 38, 38, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(0, 0, 0, 0.6) 0px, transparent 50%);
}

.sos-container {
  max-width: 550px;
  margin: 5rem auto;
  padding: 3rem;
  background: rgba(25, 15, 18, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sos-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #dc2626;
  box-shadow: 0 0 15px #dc2626;
}

.sos-icon {
  font-size: 4.5rem;
  color: #dc2626;
  margin-bottom: 1.5rem;
  animation: redPulse 2s infinite;
  display: inline-block;
}

@keyframes redPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(220, 38, 38, 0)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.6)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(220, 38, 38, 0)); }
}

/* Mega Footer */
.mega-footer {
  background-color: var(--bg-darker);
  color: var(--text-main);
  padding: 6rem 5% 3rem 5%;
  border-top: 1px solid var(--border-color);
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 4rem;
}
.footer-column h4 { 
  color: var(--text-main); 
  font-size: 0.85rem; 
  margin-bottom: 1.5rem; 
  letter-spacing: 0.05em; 
  font-weight: 700;
  text-transform: uppercase;
}
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.9rem; }
.footer-column ul li a { 
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.footer-column ul li a:hover { color: var(--primary-color); text-indent: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.contact-info { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.contact-info p { margin-bottom: 0; display: flex; align-items: center; gap: 8px; }
.contact-info i { color: var(--secondary-color); }

/* Spares Hero and Catalog */
.spares-hero {
  background: linear-gradient(rgba(10, 13, 26, 0.7), rgba(10, 13, 26, 0.95)), url('https://images.unsplash.com/photo-1530046339160-ce3e530c7d2f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  padding: 7rem 5%;
  color: white;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.spares-hero h1 { font-size: 3.5rem; margin-bottom: 1rem; color: #ffffff !important; }
.spares-hero p { color: rgba(255, 255, 255, 0.8) !important; font-size: 1.1rem; max-width: 650px; margin: 0 auto; }

/* Sticky Cart Summary */
.cart-summary {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 13, 26, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 5%;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cart-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--secondary-color);
}

.cart-summary p {
  color: var(--text-main);
  font-size: 0.9rem;
}

/* Custom Grid layout for seller dashboard add service */
.seller-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .seller-grid {
    grid-template-columns: 1fr;
  }
}

/* Animating tags */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 4rem;
    gap: 3rem;
  }
  .hero-content {
    margin-bottom: 0;
  }
  .hero h1 {
    font-size: 2.75rem;
  }
  .nav-links {
    display: none;
  }
  .service-item {
    flex-direction: column;
    text-align: center;
  }
  .service-item div {
    text-align: center !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .contact-info {
    justify-content: center;
    gap: 1.5rem;
  }
}

