/* ============================================================
   ViArt Productions — Main Stylesheet
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:       #1a56db;
  --primary-dark:  #1040b0;
  --primary-light: #e8efff;
  --secondary:     #0f172a;
  --accent:        #f59e0b;
  --success:       #10b981;
  --gray-50:       #f8fafc;
  --gray-100:      #f1f5f9;
  --gray-200:      #e2e8f0;
  --gray-400:      #94a3b8;
  --gray-600:      #475569;
  --gray-800:      #1e293b;
  --white:         #ffffff;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.12);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    all .25s ease;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ─── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; }
.fw-600 { font-weight: 600; }
.text-primary-brand { color: var(--primary) !important; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: .55rem 1.35rem;
  transition: var(--transition);
  font-size: .9rem;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,86,219,.35);
}
.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.btn-lg { padding: .75rem 2rem; font-size: 1rem; border-radius: var(--radius); }
.btn-xl { padding: .9rem 2.4rem; font-size: 1.05rem; border-radius: var(--radius); }

/* ─── Top Bar ────────────────────────────────────────────────── */
.top-bar {
  background: var(--secondary);
  color: var(--gray-400);
  font-size: .8rem;
  padding: .45rem 0;
}

/* ─── Navbar ─────────────────────────────────────────────────── */
#mainNav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: .85rem 0;
  box-shadow: var(--shadow-sm);
  z-index: 1030;
}
#mainNav .navbar-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.brand-icon { color: var(--primary); font-size: 1.4rem; }
.brand-text { color: var(--secondary); }
#mainNav .nav-link {
  font-weight: 500;
  color: var(--gray-600);
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge[data-count="0"],
.cart-badge:empty { display: none; }

/* ─── Section Spacing ────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--secondary); color: var(--white); }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.section-subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.section-label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 50%, #0f2d5a 100%);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,86,219,.2) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 2.25rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-cta .btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.07);
}
.hero-cta .btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.7);
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: .2rem;
}
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-main-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
}
.hero-equipment-list { list-style: none; padding: 0; margin: 0; }
.hero-equipment-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem 0;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-equipment-list li:last-child { border-bottom: none; }
.hero-equipment-list i { color: var(--accent); font-size: 1rem; width: 20px; }

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  background: var(--white);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}
.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--gray-100);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.04); }

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.card-badge-featured {
  background: var(--accent);
  color: var(--secondary);
}

.card-body { padding: 1.4rem; }
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--secondary);
}
.card-desc {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.card-price .price-type {
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-400);
  display: block;
  margin-top: .1rem;
}
.card-footer-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.card-footer-actions .btn { flex: 1; min-width: 0; font-size: .8rem; padding: .45rem .75rem; }

/* ─── Package Card ───────────────────────────────────────────── */
.package-card .included-preview {
  font-size: .8rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  padding: .75rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}
.included-preview ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.included-preview li {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  padding: .15rem 0;
}
.included-preview li i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ─── Product Card ───────────────────────────────────────────── */
.product-card .qty-selector {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-bottom: .75rem;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .85rem;
  transition: var(--transition);
  color: var(--gray-600);
}
.qty-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.qty-input {
  width: 46px;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .2rem;
  font-size: .875rem;
  font-weight: 600;
}
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ─── Quote Cart Sidebar ─────────────────────────────────────── */
.quote-sidebar {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.4rem;
}
.quote-sidebar::-webkit-scrollbar { width: 4px; }
.quote-sidebar::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 2px; }

.quote-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1rem;
}
.quote-cart-empty {
  text-align: center;
  padding: 2rem 0;
  color: var(--gray-400);
}
.quote-cart-empty i { font-size: 2.5rem; display: block; margin-bottom: .5rem; }

.cart-item {
  display: flex;
  gap: .65rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-name { font-size: .83rem; font-weight: 600; color: var(--secondary); line-height: 1.3; }
.cart-item-meta { font-size: .75rem; color: var(--gray-400); }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin-top: .25rem;
}
.cart-item-qty .qty-btn { width: 22px; height: 22px; font-size: .75rem; }
.cart-item-qty .qty-input { width: 36px; font-size: .78rem; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0;
  font-size: .9rem;
  transition: var(--transition);
  margin-left: auto;
  flex-shrink: 0;
}
.cart-item-remove:hover { color: #ef4444; }

.cart-date-section { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.cart-date-section label { font-size: .8rem; font-weight: 600; color: var(--gray-600); margin-bottom: .25rem; }
.cart-date-section input {
  width: 100%;
  padding: .35rem .6rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .83rem;
  background: var(--gray-50);
}

/* ─── Mobile Quote Bar ───────────────────────────────────────── */
.mobile-quote-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: var(--white);
  padding: .85rem 0;
  z-index: 1040;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  display: none;
}
.mobile-quote-bar.has-items { display: block !important; }

/* ─── Category Filter Bar ────────────────────────────────────── */
.category-filter-bar {
  position: sticky;
  top: 73px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: .85rem 0;
}
.filter-scroll {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-btn {
  white-space: nowrap;
  padding: .4rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: .83rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ─── Feature Boxes ──────────────────────────────────────────── */
.feature-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}
.feature-box:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.feature-desc { font-size: .875rem; color: var(--gray-600); line-height: 1.55; margin: 0; }

/* ─── Steps / How It Works ───────────────────────────────────── */
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}
.step-arrow {
  position: absolute;
  right: -20px;
  top: 42px;
  color: var(--gray-200);
  font-size: 1.8rem;
  z-index: 1;
}

/* ─── Event Types ────────────────────────────────────────────── */
.event-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.event-type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.event-type-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.event-type-icon { font-size: 2rem; color: var(--primary); margin-bottom: .75rem; display: block; }
.event-type-name { font-size: .85rem; font-weight: 600; color: var(--secondary); }

/* ─── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title { font-size: 2rem; font-weight: 800; color: var(--white); }
.cta-subtitle { color: rgba(255,255,255,.75); font-size: 1.05rem; }

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 100%);
  padding: 60px 0 50px;
  color: var(--white);
}
.page-hero-title { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.page-hero-sub { color: rgba(255,255,255,.7); font-size: 1rem; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,.55); font-size: .85rem; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.55); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.85); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ─── Package Detail ─────────────────────────────────────────── */
.detail-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--gray-100);
}
.detail-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
}
.detail-price-display {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: .5rem 0 1rem;
}
.detail-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-included-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .4rem 0;
  font-size: .875rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.detail-included-list li:last-child { border-bottom: none; }
.detail-included-list li i { color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* ─── Quote Form ─────────────────────────────────────────────── */
.quote-form-section { background: var(--gray-50); }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}
.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}
.form-section-title i { color: var(--primary); }
.form-label { font-size: .85rem; font-weight: 600; color: var(--gray-600); margin-bottom: .35rem; }
.form-control, .form-select {
  border-color: var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  padding: .55rem .85rem;
  color: var(--secondary);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* ─── Quote Summary ──────────────────────────────────────────── */
.quote-summary-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.quote-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .875rem;
}
.quote-summary-item:last-child { border-bottom: none; }
.qs-name { font-weight: 600; color: var(--secondary); flex: 1; }
.qs-qty { color: var(--gray-400); font-size: .8rem; }

/* ─── Thank You Page ─────────────────────────────────────────── */
.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--gray-50);
}
.ty-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

/* ─── Contact Page ───────────────────────────────────────────── */
.contact-info-card {
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(26,86,219,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,.65);
  padding: 70px 0 30px;
}
.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
}
.footer-tagline { font-size: .85rem; line-height: 1.65; color: rgba(255,255,255,.5); }
.footer-heading {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .65rem;
  font-size: .875rem;
}
.footer-contact i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: .65rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 2.5rem 0 1.5rem; }
.footer-bottom { color: rgba(255,255,255,.4); font-size: .82rem; }

/* ─── Admin Layout ───────────────────────────────────────────── */
.admin-body { background: var(--gray-50); min-height: 100vh; }
.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: var(--secondary);
  z-index: 1000;
  overflow-y: auto;
  transition: transform .3s ease;
}
.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); }
.admin-sidebar-brand {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.admin-brand-text { font-size: 1rem; font-weight: 800; color: var(--white); }
.admin-brand-sub { font-size: .7rem; color: rgba(255,255,255,.35); }
.admin-nav { padding: 1rem 0; }
.admin-nav-section {
  padding: .5rem 1.5rem .2rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.5rem;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-link i { font-size: 1rem; width: 18px; }
.admin-nav-link:hover { color: var(--white); background: rgba(255,255,255,.04); }
.admin-nav-link.active {
  color: var(--white);
  background: rgba(26,86,219,.25);
  border-left-color: var(--primary);
}

.admin-main {
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: .85rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: var(--shadow-sm);
}
.admin-page-title { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin: 0; }
.admin-content { padding: 1.75rem; flex: 1; }

/* Admin stat cards */
.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stat-icon-blue { background: #eff6ff; color: var(--primary); }
.stat-icon-green { background: #f0fdf4; color: var(--success); }
.stat-icon-yellow { background: #fffbeb; color: var(--accent); }
.stat-icon-purple { background: #faf5ff; color: #8b5cf6; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--gray-400); margin-top: .15rem; }

/* Admin table */
.admin-table-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.admin-table-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.admin-table-title { font-size: .95rem; font-weight: 700; color: var(--secondary); }
.table { margin: 0; font-size: .875rem; }
.table th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-600);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.table td {
  padding: .85rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--gray-100);
  color: var(--secondary);
}
.table tr:last-child td { border-bottom: none; }
.table-actions { display: flex; gap: .4rem; }
.btn-action {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: .85rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-action:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-action.danger:hover { background: #ef4444; border-color: #ef4444; }

/* Admin form card */
.admin-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
}
.admin-form-section {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.admin-form-section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.admin-form-section-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}

/* Status badge overrides */
.badge { font-weight: 600; font-size: .72rem; padding: .3em .65em; border-radius: 20px; }

/* ─── Utility ────────────────────────────────────────────────── */
.rounded-xl { border-radius: var(--radius) !important; }
.text-muted-sm { color: var(--gray-400); font-size: .8rem; }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 2rem 0; }
.img-placeholder {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 2rem;
  width: 100%;
  height: 100%;
}
.specs-list { list-style: none; padding: 0; margin: 0; }
.specs-list li {
  display: flex;
  justify-content: space-between;
  padding: .45rem 0;
  font-size: .875rem;
  border-bottom: 1px solid var(--gray-100);
}
.specs-list li:last-child { border-bottom: none; }
.specs-key { color: var(--gray-600); }
.specs-val { font-weight: 600; color: var(--secondary); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .quote-sidebar { display: none; }
  .hero { padding: 70px 0 60px; }
  .hero-stats { gap: 1.25rem; }
  .step-arrow { display: none; }
}
@media (max-width: 767.98px) {
  .section { padding: 56px 0; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .admin-content { padding: 1rem; }
  .form-card { padding: 1.25rem; }
  .detail-card { position: static; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 1.75rem; }
  .card-body { padding: 1rem; }
  .admin-form-card { padding: 1.25rem; }
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp .5s ease both; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }
