:root {
  --primary-color: #0056b3;
  /* Strong Royal Blue */
  --primary-gradient: linear-gradient(135deg, #0056b3 0%, #004494 100%);
  --secondary-color: #004494;
  /* Darker Blue */
  --accent-color: #fd7e14;
  /* Safety Orange */
  --accent-glow: 0 0 15px rgba(253, 126, 20, 0.4);
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --bg-light: #e9ecef;
  /* Light Concrete Grey */
  --bg-dark: #121212;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.2s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Oswald', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  /* Space for sticky header */
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  font-size: 19px;
  color: var(--text-dark);
  background-color: var(--bg-light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.dashboard-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

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

.section-padding {
  padding: 60px 0;
}

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

.btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  /* Modern pill shape */
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-slow);
  box-shadow: var(--accent-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(246, 180, 14, 0.4);
  background-color: #e5a50d;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}



.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 8px;
}

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

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

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

.btn-red {
  background: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 86, 179, 0.4);
  border: none;
}

.btn-red:hover {
  background: var(--secondary-color);
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.pulse-red {
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0, 86, 179, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
  }
}

/* Header & Navigation */
header {
  background: #141416;
  /* Dark background as seen in image */
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 4px solid #fd7e14;
  /* Bolder gold accent line */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 0;
  /* Increased overall size */
}

header.scrolled {
  background: rgba(116, 172, 223, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 5px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fd7e14, transparent);
  box-shadow: 0 0 15px rgba(246, 180, 14, 0.6);
  z-index: 1001;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: none;
  animation: navShimmer 6s infinite;
  pointer-events: none;
}

@keyframes navShimmer {
  0% {
    left: -100%;
  }

  20% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  /* Slightly larger vertical padding */
  max-width: 1400px;
  /* Allow it to be wider */
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.logo img {
  height: 50px;
  /* Larger logo image */
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.3rem;
  /* Scaled a bit */
  font-weight: 900;
  font-family: var(--font-heading);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.65rem;
  font-family: var(--font-main);
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3px;
}

/* Removed old logo span styles */

@keyframes logoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }
}

.logo:hover span {
  background: #fd7e14;
  color: #000;
  border-color: transparent;
}

.nav-links {
  display: flex;
  gap: 25px;
  /* More space between links */
  align-items: center;
}

.nav-separator {
  width: 1.5px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 5px;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  animation: statusPulse 2s infinite;
}

.status-text {
  color: #fff;
  /* White for better contrast on dark bg */
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-heading);
  background: linear-gradient(to right, #0056b3, #f5f5f5);
  /* Gradient as seen in some professional styles */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes statusPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.nav-links a {
  font-weight: 700;
  /* Bolder */
  font-size: 1.05rem;
  /* Larger as requested */
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #fd7e14;
  /* Argentina Gold Underline */
  transition: var(--transition-fast);
  box-shadow: 0 0 10px rgba(246, 180, 14, 0.7);
  border-radius: 10px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.nav-links a {
  opacity: 0.85;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

#opening-countdown {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-top: 1px solid rgba(246, 180, 14, 0.3);
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 999;
  margin-bottom: 25px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('workshop_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
  color: var(--white);
  padding: 160px 0;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Services Section (Home) */
.services-overview {
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 10px auto 0;
}

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

.service-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--accent-color);
}

.service-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-dark);
}

/* Features / Info Section */
.features-section {
  background-color: var(--bg-dark);
  color: var(--white);
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.feature-box {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.pricing-table th,
.pricing-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 1.1rem;
}

.pricing-table th {
  background-color: var(--primary-color);
  color: var(--white);
}

.pricing-table tr:hover {
  background-color: #f1f1f1;
}

/* Car Wash Steps */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.step-number {
  background-color: var(--accent-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

/* Bay Availability */
.bay-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.bay-card {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid #ddd;
}

.bay-card.available {
  border-color: #28a745;
}

.bay-card.occupied {
  border-color: #dc3545;
}

.bay-card.maintenance {
  border-color: #ffc107;
}

.status-indicator {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 10px;
}

.status-available {
  background-color: #28a745;
}

.status-occupied {
  background-color: #dc3545;
}

.status-maintenance {
  background-color: #ffc107;
  color: #333;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

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

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: var(--transition);
  color: white;
}

.social-links a.facebook {
  background-color: #1877F2;
}

.social-links a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-links a:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-dev-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-dev-link:hover {
  text-decoration: underline;
  filter: brightness(1.2);
}

/* Modern Login Page */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('workshop_bg.png');
  background-size: cover;
  background-position: center;
  padding: 20px;
}

.login-container {
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  margin: 0;
}

@supports (backdrop-filter: blur(10px)) {
  .login-container {
    background: rgba(255, 255, 255, 0.85);
  }
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo h1 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-logo span {
  color: var(--text-dark);
}

.role-selector {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.role-option {
  flex: 1;
  text-align: center;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

.role-option i {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
  color: #999;
  transition: all 0.3s ease;
}

.role-option span {
  font-weight: 700;
  color: #666;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.role-option:hover {
  transform: translateY(-2px);
  border-color: #ddd;
}

.role-option.active {
  border-color: var(--primary-color);
  background: rgba(var(--primary-rgb), 0.05);
}

.role-option.active i {
  color: var(--primary-color);
  transform: scale(1.1);
}

.role-option.active span {
  color: var(--primary-color);
}

.login-container .form-group label {
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}

.login-container .form-control {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.login-container .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
  outline: none;
}

.login-container .btn {
  height: 50px;
  width: 100%;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-container .btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.toggle-password-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
  z-index: 2;
  transition: color 0.3s ease;
}

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

.dashboard-container {
  display: none;
  /* Hidden by default */
}

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

.dashboard-section {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

/* Responsive */
/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-padding {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  /* Lightbox Modal */
  .lightbox {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .lightbox.active {
    opacity: 1;
    pointer-events: all;
  }

  .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
  }

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

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .lightbox-close:hover {
    color: var(--primary-color);
  }

  .lightbox-caption-box {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 0 20px;
  }

  .lightbox-caption-box h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--white);
    text-shadow: 1px 1px 3px black;
  }

  .logo {
    margin-left: 10px;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.8rem;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 20px;
    background-color: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

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

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

  .nav-links a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    display: block;
  }

  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 25px;
  }

  .hero {
    padding: 100px 0;
    background-attachment: scroll;
    /* Disable parallax on mobile for smoother scrolling */
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

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

  .features-container {
    gap: 30px;
  }

  .feature-box {
    min-width: 100%;
    padding: 10px;
  }

  /* Make tables scrollable */
  .pricing-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .steps-container {
    gap: 15px;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

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

  .social-links {
    justify-content: center;
  }

  .contact-list li {
    flex-direction: column;
    text-align: center;
  }

  .contact-list i {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .section-padding {
    padding: 40px 0;
  }
}


/* Booking & Appointment System */
.booking-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 30px;
}

.booking-info h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

@media (max-width: 768px) {
  .booking-container {
    grid-template-columns: 1fr;
  }

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

/* Status Indicators */
.status-indicator {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-confirmed {
  background: #d4edda;
  color: #155724;
}

.status-completed {
  background: #cce5ff;
  color: #004085;
}

.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}

.status-available {
  background: #d1fae5;
  color: #065f46;
}

/* Dashboard Enhancements */
.tab-btn {
  transition: all 0.3s ease;
  padding: 12px 25px;
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  color: var(--primary-color);
  background: rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background: rgba(220, 38, 38, 0.05);
}

/* --- Dashboard Fixes (Appended) --- */

/* 1. Ensure Dashboard is Wide */
.dashboard-wrapper {
  width: 100%;
  padding: 0;
  max-width: 100%;
}

.dashboard-container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  padding: 40px !important;
  display: block !important;
}

/* 2. Fix Horizontal Scroll on Tabs */
.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
  gap: 5px;
}

/* 3. Wide Tables */
.table-container {
  width: 100%;
  overflow-x: auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table-container table {
  width: 100%;
  min-width: 800px;
  border-collapse: separate;
  border-spacing: 0;
}

.table-container th {
  background-color: #f8f9fa;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
  border-bottom: 2px solid #eee;
}

.table-container td {
  padding: 18px 20px;
  vertical-align: middle;
}

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

.section-header h2 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1.8rem;
}

.section-header .btn {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.section-header .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.table-container tr:last-child td {
  border-bottom: none;
}

/* 4. Action Buttons in Table */
.table-container .action-btn {
  padding: 8px 12px;
  margin-right: 5px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
  color: white;
}

.btn-edit {
  background-color: #007bff;
}

.btn-edit:hover {
  background-color: #0056b3;
}

.btn-delete {
  background-color: #dc3545;
}

.btn-delete:hover {
  background-color: #a71d2a;
}

/* 5. Draggable Rows */
.draggable-row:hover {
  background-color: #f8f9fa;
}

.draggable-source {
  opacity: 0.5;
  background: #f1f1f1;
  border: 2px dashed #999;
}

.draggable-over {
  border-top: 3px solid var(--primary-color);
}

/* Utility to force hide elements */
.hidden {
  display: none !important;
}

/* Global Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background-color: #f0f0f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  opacity: 0;
}

.gallery-item img.loaded {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* --- Premium Reveal & Effects --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section-title h2 {
  font-size: 3rem;
  letter-spacing: 2px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--accent-color);
  box-shadow: var(--accent-glow);
  margin: 10px auto 0;
}

/* Card Hover Elevate */
.feature-box,
.service-card,
.review-card {
  transition: var(--transition-slow) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover,
.service-card:hover,
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(211, 47, 47, 0.1);
}

.feature-box i {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.feature-box:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(211, 47, 47, 0.4));
}


/* --- Advanced Gallery Styles --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  background-color: #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay with Icon */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon-zoom {
  font-size: 2rem;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon-zoom {
  transform: scale(1);
}

.gallery-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption-overlay {
  transform: translateY(0);
}

.gallery-caption-overlay h4 {
  margin: 0;
  font-size: 1.1rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

/* Footer Developer Credit Link */
.footer-dev-link {
  color: #ffb400 !important;
  /* Premium Gold/Orange */
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-dev-link:hover {
  color: #ffd700 !important;
  /* Brighter Gold */
  text-shadow: 0 0 8px rgba(255, 180, 0, 0.5);
}

/* --- Premium Login Styles --- */
.login-body {
  height: 100vh;
  margin: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('images/login-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.login-premium-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 45px 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 10;
  color: white;
}

.login-header {
  text-align: center;
  margin-bottom: 35px;
}

.login-header h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-header h1 span {
  color: var(--primary-color);
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

.login-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

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

.role-switch {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.role-switch-btn {
  flex: 1;
  padding: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.role-switch-btn.active {
  color: white;
}

.role-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  background: var(--primary-color);
  border-radius: 8px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  box-shadow: 0 0 20px rgba(116, 172, 223, 0.4);
}

.login-body .input-group {
  margin-bottom: 25px;
}

.login-body .input-group label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-body .input-wrapper {
  position: relative;
}

.login-body .input-wrapper i:first-child {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd700;
  font-size: 1.1rem;
  z-index: 5;
}

.login-body .input-wrapper input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 15px 14px 45px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.login-body .input-wrapper input:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(116, 172, 223, 0.2);
}

.login-body .toggle-pass {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s;
  z-index: 5;
}

.login-body .toggle-pass:hover {
  color: white;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background-color: var(--primary-color);
  color: white;
}

.submit-btn:hover {
  background-color: #5B92C4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(116, 172, 223, 0.5);
}

.back-link {
  text-align: center;
  margin-top: 30px;
}

.back-link a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.back-link a:hover {
  color: white;
}

#login-notification {
  position: absolute;
  top: -65px;
  left: 0;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(211, 47, 47, 0.95);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#login-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Digital Clock Style for Footer - Green Old Clock */
.digital-clock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #000;
  border: 4px solid #1a1a1a;
  padding: 10px 22px;
  border-radius: 50px;
  /* Pill Shape */
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: #00ff00 !important;
  text-shadow:
    0 0 10px #00ff00,
    0 0 20px #00ff00;
  margin-top: 25px;
  margin-bottom: 25px;
  box-shadow:
    inset 0 0 15px rgba(0, 255, 0, 0.4),
    0 0 20px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
  animation: crt-flicker 0.1s infinite;
}

/* Ensure text stays on top of effects */
.digital-clock * {
  z-index: 10 !important;
  position: relative;
}

@keyframes crt-flicker {
  0% {
    opacity: 0.95;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.98;
  }
}

/* Authentic CRT scanlines */
.digital-clock::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%,
      rgba(0, 0, 0, 0.2) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 2;
}

.digital-clock.closed {
  color: #00ff00 !important;
  text-shadow: 0 0 15px #00ff00;
}

.digital-clock i {
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .digital-clock {
    font-size: 1.2rem;
    padding: 8px 15px;
  }
}

/* Services Checklist */
.services-checklist-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-height: 400px;
  overflow-y: auto;
}

.service-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
  cursor: pointer;
}

.service-check-item:hover {
  background: #f8f9fa;
}

.service-check-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.service-check-item label {
  margin: 0;
  font-size: 0.9rem;
  cursor: pointer;
  flex-grow: 1;
}

/* Estimate Summary Items */
.estimate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  animation: fadeInSlide 0.3s ease-out;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

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

.estimate-item-info {
  display: flex;
  flex-direction: column;
}

.estimate-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.estimate-item-meta {
  font-size: 0.8rem;
  color: #888;
}

.estimate-item-price {
  font-weight: 700;
  color: #333;
}

/* --- Appointment Confirmation Report Modal --- */
.report-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.report-modal {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  font-family: 'Roboto', sans-serif;
}

.report-modal-overlay.active .report-modal {
  transform: translateY(0) scale(1);
}

.report-header {
  background: linear-gradient(135deg, #0056b3, #004494);
  color: white;
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.report-header i {
  font-size: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.report-header h2 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.report-body {
  padding: 30px;
  color: #333;
}

.report-section {
  margin-bottom: 25px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 15px;
}

.report-section:last-child {
  border-bottom: none;
}

.report-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.report-label {
  color: #777;
  font-weight: 500;
}

.report-value {
  color: #222;
  font-weight: 700;
  text-align: right;
}

.report-price-row {
  background: #fcfcfc;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  margin-top: 15px;
}

.total-row {
  font-size: 1.2rem;
  border-top: 2px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
  color: #0056b3;
}

.report-disclaimer {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.4;
  text-align: center;
  margin-top: 20px;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
}

.report-footer {
  padding: 20px 30px 30px;
  display: flex;
  gap: 15px;
}

.btn-report-close {
  flex: 1;
  background: #222;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-report-save {
  flex: 1;
  background: #0056b3;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-report-close:hover {
  background: #000;
}

.btn-report-save:hover {
  background: #a01f24;
  transform: scale(1.02);
}

@media print {
  .report-modal-overlay {
    background: white;
    position: absolute;
    backdrop-filter: none;
  }

  .report-footer,
  .report-header-actions {
    display: none !important;
  }

  .report-modal {
    box-shadow: none;
    width: 100%;
    max-width: none;
  }
}