/* =========================
   RESET & BASE
========================= */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ================= HEADER / NAV ================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: #000;
  z-index: 1000;
}

nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

/* LOGO */
.logo img {
  height: 60px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 5px 0;
}

/* DOUBLE LINE EFFECT */
.nav-links a::before,
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ffc107;
  transition: 0.3s;
}

.nav-links a::before {
  bottom: -6px;
}

.nav-links a::after {
  bottom: -12px;
}

.nav-links a:hover::before,
.nav-links a:hover::after,
.nav-links a.active::before,
.nav-links a.active::after {
  width: 100%;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-right a {
  color: #0d6efd;
}

/* CART */
.cart-icon {
  position: relative;
  font-size: 20px;
  color: #fff;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ffc107;
  color: #000;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  margin-top: 70px;
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  max-width: 600px;
}

.slide-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 18px;
  color: #ddd;
}

/* =========================
   REMOVE ALL LINES (NUKE)
========================= */
header::before,
header::after,
nav::before,
nav::after {
  content: none !important;
}

hr {
  display: none !important;
}

* {
  box-shadow: none !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: flex;
  }

  .slide-content {
    padding-left: 30px;
    padding-right: 20px;
  }

  .slide-content h1 {
    font-size: 32px;
  }
}

/* =========================
   HAMBURGER MENU (MOBILE)
========================= */

/* Hamburger default hidden */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: black;
    flex-direction: column;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* =========================
   SERVICES TITLE SECTION
========================= */

.services-title-section {
  width: 100%;
  padding: 80px 20px;
  background: #0a0a0a;
  text-align: center;
}

.services-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffc107;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* Vijë dekorative poshtë titullit */
.services-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ffc107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.services-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-top: 10px;
}

/* =========================
   CART ICON
========================= */

/* =========================
   CART PAGE STYLING
========================= */

.cart-page {
  max-width: 1100px;
  margin: 120px auto 60px;
  padding: 20px;
  color: #fff;
}

.cart-page h1 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #f5c400;
  text-align: center;
}

/* EMPTY CART */
.cart-empty {
  text-align: center;
  font-size: 22px;
  color: #ccc;
  margin-top: 60px;
}

/* CART ITEMS */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  align-items: center;
  background: #111;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.cart-item-name {
  font-size: 20px;
  font-weight: 600;
}

.cart-item-price {
  font-size: 18px;
  color: #f5c400;
  font-weight: 600;
}

.cart-item-qty {
  font-size: 16px;
  color: #aaa;
}

/* REMOVE BUTTON */
.cart-remove {
  background: transparent;
  border: 2px solid #ff4d4d;
  color: #ff4d4d;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.cart-remove:hover {
  background: #ff4d4d;
  color: #fff;
}

/* SUMMARY BOX */
.cart-summary {
  margin-top: 50px;
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

.cart-summary h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #f5c400;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 10px;
  color: #ddd;
}

.cart-total {
  margin-top: 25px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-align: right;
}

/* CHECKOUT BUTTON */
.checkout-btn {
  margin-top: 30px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5c400, #ffdd55);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245,196,0,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }

  .cart-item-price,
  .cart-item-qty {
    font-size: 16px;
  }

  .cart-total {
    text-align: center;
  }
}

/* =========================
   SERVICES CARDS
========================= */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 60px 40px;
  background: #0f0f0f;
}

.service-card {
  background: #151515;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #222;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #ffc107;
}

.service-card h3 {
  color: #ffc107;
  margin-bottom: 10px;
}

.service-card p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

.service-card ul {
  margin-bottom: 15px;
  padding-left: 15px;
}

.service-card li {
  font-size: 14px;
  color: #bbb;
}

.service-card button {
  width: 100%;
  background: #ffc107;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.service-card button:hover {
  background: #e0aa00;
}

.service-card.highlight {
  border: 2px solid #ffc107;
  box-shadow: 0 0 20px rgba(255,193,7,0.2);
}

/* =========================
   WHY US SECTION
========================= */
.why-us-section {
  background: #0b0b0b;
  padding: 80px 40px;
  text-align: center;
}

.why-us-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.why-us-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 50px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.why-us-card {
  background: #151515;
  border-radius: 12px;
  padding: 30px 20px;
  border: 1px solid #222;
  transition: 0.3s;
}

.why-us-card:hover {
  border-color: #ffc107;
  transform: translateY(-6px);
}

.why-us-card h3 {
  margin-bottom: 10px;
  color: #ffc107;
}

.why-us-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

/* =========================
   FOOTER
========================= */
.main-footer {
  background: #050505;
  color: #ccc;
  padding-top: 60px;
  border-top: 1px solid #222;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #ffc107;
  margin-bottom: 15px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffc107;
  padding-left: 5px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  color: #aaa;
  text-decoration: none;
  border: 1px solid #222;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s;
  font-size: 13px;
}

.footer-social a:hover {
  color: #000;
  background: #ffc107;
  border-color: #ffc107;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #777;
}

/* =========================
   ABOUT HERO
========================= */
.about-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url("a.1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-content h1 {
  color: #ffc107;
  font-size: 48px;
  margin-bottom: 15px;
}

.about-hero-content p {
  color: #eee;
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

/* =========================
   ABOUT SECTION
========================= */
/* =========================
   ABOUT PAGE (FLASK SAFE)
========================= */

.about-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffc107;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 80px 8%;
  align-items: center;
  background: #000000;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.7;
  color: #555;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =========================
   WHY US
========================= */
.why-us {
  background: #050505;
  padding: 80px 30px;
  text-align: center;
}

.why-us h2 {
  color: #ffc107;
  font-size: 36px;
  margin-bottom: 40px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.why-cards .card {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  padding: 30px 20px;
  border-radius: 12px;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.why-cards .card:hover {
  transform: translateY(-8px);
  border-color: #ffc107;
}

/* =========================
   STATS
========================= */
.stats {
  background: #000;
  padding: 70px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat {
  background: #0a0a0a;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #111;
}

.stat .icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.stat strong {
  font-size: 32px;
  color: #ffc107;
}

.stat p {
  color: #aaa;
}

/* =========================
   CTA
========================= */
.cta {
  background: linear-gradient(135deg, #ffc107, #ffb300);
  padding: 80px 30px;
  text-align: center;
  color: #000;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.cta .btn {
  background: #000;
  color: #ffc107;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.cta .btn:hover {
  background: #111;
  transform: scale(1.05);
}

/* =========================
   RESPONSIVE ABOUT
========================= */
@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }
}

/* =========================
   CONTACT HERO
========================= */
.contact-hero {
  min-height: 100vh;
  background: #050505;
  padding: 80px 30px;
  color: #fff;
}

.contact-hero h1 {
  text-align: center;
  color: #ffc107;
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-hero p {
  text-align: center;
  color: #ccc;
  margin-bottom: 50px;
  font-size: 16px;
}

/* =========================
   CONTACT GRID
========================= */
.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* =========================
   MAP
========================= */
.contact-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  filter: grayscale(100%) contrast(1.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* =========================
   RIGHT SIDE
========================= */
.contact-info {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 15px;
  padding: 30px;
}

/* INFO ITEMS */
.info-item {
  margin-bottom: 15px;
  font-size: 15px;
  color: #ddd;
}

/* CALL BUTTON */
.call-btn {
  display: block;
  margin: 20px 0 30px;
  background: #ffc107;
  color: #000;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

/* =========================
   CONTACT FORM
========================= */
.contact-form h3 {
  color: #ffc107;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #050505;
  border: 1px solid #222;
  color: #fff;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffc107;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  background: #ffc107;
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }



  .contact-hero h1 {
    font-size: 32px;
  }
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* =========================
   AUTH PAGES (LOGIN / REGISTER)
========================= */

body {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  min-height: 100vh;
}

form {
  max-width: 420px;
  margin: 80px auto;
  background: #fff;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp 0.6s ease;
}

form h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #111;
  letter-spacing: 1px;
}

form input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

form input:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Small text links (optional) */
.auth-link {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
}

.auth-link a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 500px) {
  form {
    margin: 40px 15px;
    padding: 30px 20px;
  }
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

.car-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.car-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.status.free { color: green; }
.status.busy { color: red; }

.btn {
  display: inline-block;
  margin-top: 10px;
  background: #ffb400;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  color: black;
}

/* =========================
   ADMIN DASHBOARD
========================= */

.admin-body {
  background: #f3f5f9;
  font-family: Arial, sans-serif;
}

.admin-container {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
/* =========================
   ADMIN DASHBOARD
========================= */
/* =========================
   PREMIUM ADMIN DASHBOARD
========================= */

.admin-layout {
  display: flex;
  min-height: 100vh;
  background: radial-gradient(circle at top, #0f172a, #020617);
  font-family: 'Segoe UI', system-ui, sans-serif;
}

/* SIDEBAR */
.admin-sidebar {
  width: 260px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255,255,255,0.05);
  color: #fff;
  padding: 30px 20px;
  box-shadow: 10px 0 30px rgba(0,0,0,0.3);
}

.admin-sidebar h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c7d2fe;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.admin-sidebar a:hover {
  background: rgba(99, 102, 241, 0.15);
  color: #fff;
  transform: translateX(5px);
}

.admin-sidebar a.active {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

/* MAIN */
.admin-main {
  flex: 1;
  padding: 35px;
  background: linear-gradient(180deg, #020617, #020617);
}

/* HEADER */
.admin-header {
  background: linear-gradient(135deg, #020617, #0f172a);
  border: 1px solid rgba(255,255,255,0.05);
  color: #fff;
  padding: 28px 32px;
  border-radius: 22px;
  margin-bottom: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.admin-header h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* STATS */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-bottom: 35px;
}

.admin-stat-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  padding: 28px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.admin-stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(99,102,241,0.15), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.admin-stat-card:hover::after {
  opacity: 1;
}

.admin-stat-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.admin-stat-card h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a5b4fc;
  margin-bottom: 10px;
}

.admin-stat-card .value {
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-text-fill-color: transparent;
}

/* ACTIONS */
.admin-actions {
  display: flex;
  gap: 18px;
}

.admin-actions .btn {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border: none;
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
  transition: all 0.25s ease;
}

.admin-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(79,70,229,0.5);
}


/* CARDS */
.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.admin-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.admin-card h3 {
  margin-bottom: 10px;
  color: #111827;
}

.admin-card p {
  color: #6b7280;
  font-size: 14px;
}

.admin-stats {
  margin-top: 50px;   /* e ul poshtë */
}

.admin-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-sidebar li {
  list-style: none;
}

/* ========== ADMIN CARS PAGES ========== */

.admin-page {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* ========== PAGE HEADER ========== */

.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.admin-page-header h1 {
  font-size: 26px;
  color: #111827;
}

.admin-page-header .admin-btn {
  text-decoration: none;
}

/* ========== TABLE ========== */

.admin-cars-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.admin-cars-table thead th {
  text-align: left;
  font-size: 13px;
  color: #6b7280;
  padding: 10px;
}

.admin-cars-table tbody tr {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.admin-cars-table tbody tr:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

.admin-cars-table tbody td {
  padding: 14px 10px;
  font-size: 14px;
  color: #111827;
}

/* ========== STATUS BADGE ========== */

.status-available {
  background: #dcfce7;
  color: #166534;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.status-unavailable {
  background: #fee2e2;
  color: #991b1b;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

/* ========== ACTION BUTTONS ========== */

.admin-actions {
  display: flex;
  gap: 8px;
}

.admin-btn-edit {
  background: #f59e0b;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  text-decoration: none;
}

.admin-btn-edit:hover {
  background: #d97706;
}

.admin-btn-delete {
  background: #ef4444;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  text-decoration: none;
}

.admin-btn-delete:hover {
  background: #dc2626;
}

/* ========== FORM (ADD + EDIT) ========== */

.admin-car-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  max-width: 650px;
  margin: 0 auto;
}

.admin-car-form h2 {
  margin-bottom: 25px;
  font-size: 22px;
  color: #111827;
}

.admin-car-form .form-group {
  margin-bottom: 18px;
}

.admin-car-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #374151;
}

.admin-car-form input,
.admin-car-form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.admin-car-form input:focus,
.admin-car-form select:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* ========== FORM ACTIONS ========== */

.admin-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
}

.admin-btn-save {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.admin-btn-save:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.admin-btn-cancel {
  background: #e5e7eb;
  color: #111827;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
}

.admin-btn-cancel:hover {
  background: #d1d5db;
}

/* ========== FORM SECTIONS ========== */

.admin-form-section {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.admin-form-section h3 {
  font-size: 16px;
  color: #2563eb;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-form-section h3::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #2563eb;
  border-radius: 50%;
}
/* =========================
   ADMIN ADD / EDIT CAR PAGE
========================= */

.admin-card {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.admin-card h2 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #1f2933;
}

.admin-card .subtitle {
  color: #6b7280;
  margin-bottom: 25px;
  font-size: 15px;
}

.admin-form h3 {
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 20px;
  color: #111827;
  border-left: 5px solid #2563eb;
  padding-left: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
  font-size: 14px;
}

.form-group input,
.form-group select {
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  transition: 0.2s ease;
  background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
}

.checkbox-group label {
  font-weight: 500;
  font-size: 14px;
}

.checkbox-group input {
  margin-right: 8px;
  transform: scale(1.1);
}

/* Buttons */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37,99,235,0.25);
}

.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

body{
    background:#111;
    color:white;
    font-family:Arial;
}

.table-container{
    width:100%;
    overflow-x:auto;
}

table{
    min-width:1600px;
    width:100%;
    border-collapse:collapse;
    background:#1a1a1a;
}

th, td{
    padding:14px;
    border:1px solid #333;
    text-align:center;
    white-space:nowrap;
}

th{
    background:#222;
}

img{
    border-radius:8px;
}

button{
    padding:8px 18px;
    background:black;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
}
.table-container {
    width: 100%;
    overflow-x: auto;   /* KJO E BËN TË LËVIZË ANASH */
}

table {
    min-width: 1600px;  /* E detyron tabelën të jetë më e gjerë se ekrani */
    border-collapse: collapse;
}
/* SECTION BACKGROUND */
.services-section {
    background: #000;
    padding: 80px 60px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CARD STYLE */
.service-card {
    background: linear-gradient(145deg, #111, #0c0c0c);
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    padding: 35px;
    color: #ccc;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 380px;
    transition: 0.3s ease;
}

/* TITLE */
.service-card h3 {
    color: #ffbf00;
    font-size: 20px;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.service-card p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
}

/* LIST */
.service-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card ul li {
    margin-bottom: 20px;
    font-size: 25px;
}

/* BUTTON */
.add-btn {
    background: #ffbf00;
    color: #000;
    border: none;
    padding: 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.add-btn:hover {
    background: #e6ac00;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-6px);
    border-color: #ffbf00;
}

/* HIGHLIGHTED CARD */
.highlighted {
    border: 2px solid #ffbf00;
    box-shadow: 0 0 25px rgba(255, 191, 0, 0.25);
}
.flatpickr-day.selected {
    background: #ff4500;
    border-color: #ff4500;
}

.flatpickr-day.inRange {
    background: #ff4500;
    border-color: #ff4500;
    color: white;
}

.flatpickr-day.disabled {
    background: #eee !important;
    color: #bbb !important;
}
#calendar{
max-height:600px;   /* sa lartësi do */
 overflow-y:auto;    /* aktivizon scroll vertikal */
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.dashboard-container{
max-width:1200px;
margin:80px auto;
padding:20px;
color:white;
}

.dashboard-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#111;
padding:30px;
border-radius:15px;
border:1px solid #333;
transition:.3s;
text-align:center;
}

.card:hover{
transform:translateY(-8px);
border-color:#ffc107;
}

.card h3{
margin-bottom:15px;
}

.card p{
font-size:20px;
margin-bottom:20px;
}

.card a{
background:#ffc107;
color:black;
padding:10px 20px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
}
/* NAV BUTTONS */

.nav-btn{
  padding:8px 16px;
  margin-left:8px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  transition:0.25s;
  font-size:14px;
}

/* LOGIN */

.login-btn{
  color:white;
  border:1px solid #ffffff55;
}

.login-btn:hover{
  background:#ffffff15;
}

/* REGISTER */

.register-btn{
  background:#00c896;
  color:white;
}

.register-btn:hover{
  background:#00a67d;
}

/* DASHBOARD */

.dashboard-btn{
  background:#1e90ff;
  color:white;
}

.dashboard-btn:hover{
  background:#1873cc;
}

/* LOGOUT */

.logout-btn{
  background:#ff4d4d;
  color:white;
}

.logout-btn:hover{
  background:#cc0000;
}

/* USER TEXT */

.user-welcome{
  color:white;
  margin-right:10px;
  font-weight:500;
}
