/* ========================================
   RAIMED Investment & Catering Services
   Main Stylesheet
   ======================================== */

:root {
  --gold:        #C9973A;
  --gold-light:  #E8B84B;
  --gold-dark:   #A07828;
  --green:       #1A4731;
  --green-mid:   #2D6B4A;
  --green-light: #3D8B5E;
  --cream:       #FAF6EE;
  --cream-dark:  #F0E9D8;
  --charcoal:    #1C1C1C;
  --text:        #2E2E2E;
  --text-muted:  #6B6B6B;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .5px;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Section headers ── */
.section { padding: 80px 0; }

.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,151,58,.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ======================================
   HEADER
   ====================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,71,49,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,151,58,.3);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.logo-sub {
  font-size: .65rem;
  color: rgba(255,255,255,.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav a:hover { color: var(--gold); background: rgba(201,151,58,.1); }
.nav-login {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-login:hover { background: var(--gold-dark) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ======================================
   HERO SLIDER
   ====================================== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slides-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,71,49,.6) 0%, rgba(0,0,0,.25) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 10% 0;
  max-width: 750px;
}
.slide-eyebrow {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease .2s;
}
.slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease .35s;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .7s ease .5s;
}
.slide.active .slide-subtitle { opacity: 1; transform: translateY(0); }

.slide-content .btn-primary {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease .65s;
  font-size: 1rem;
  padding: 16px 40px;
}
.slide.active .slide-content .btn-primary { opacity: 1; transform: translateY(0); }

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ======================================
   STATS BAR
   ====================================== */
.stats-bar {
  background: var(--green);
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ======================================
   SERVICES SECTION
   ====================================== */
.services-section { background: var(--cream); }

.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.cat-tab {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.cat-tab:hover { border-color: var(--gold); color: var(--gold); }
.cat-tab.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

.cat-panel { display: none; }
.cat-panel.active { display: grid; }

.services-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .card-img { transform: scale(1.06); }
.card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(26,71,49,.85);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  backdrop-filter: blur(4px);
}
.card-body { padding: 20px; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.card-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.card-price { display: flex; flex-direction: column; }
.price-amount {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1rem;
}
.price-unit {
  font-size: .75rem;
  color: var(--text-muted);
}
.btn-add-cart {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-add-cart:hover { background: var(--green-light); transform: scale(1.05); }

/* ======================================
   ABOUT SECTION
   ====================================== */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 500px;
}
.about-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.about-img-main {
  width: 80%;
  height: 400px;
  position: absolute;
  top: 0; left: 0;
  box-shadow: var(--shadow-lg);
}
.about-img-small {
  width: 55%;
  height: 260px;
  position: absolute;
  bottom: 0; right: 0;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-content { padding-right: 20px; }
.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-points {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-points li {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}

/* ======================================
   ORDER SECTION
   ====================================== */
.order-section { background: var(--cream); }

.order-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

/* Cart Panel */
.cart-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}
.cart-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}
.cart-empty {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .9rem; font-weight: 600; color: var(--text); }
.cart-item-price { font-size: .82rem; color: var(--text-muted); }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  cursor: pointer;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.qty-val { font-size: .9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove {
  color: #e74c3c;
  cursor: pointer;
  font-size: .85rem;
  background: none;
  border: none;
  padding: 2px 6px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 2px solid var(--gold);
  font-size: 1rem;
  color: var(--text);
}
.cart-total-row strong { color: var(--gold-dark); font-size: 1.1rem; }

/* Order Form */
.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: var(--transition);
  background: var(--cream);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,151,58,.1);
}
.form-actions { margin-top: 28px; text-align: right; }
.btn-submit { font-size: 1rem; padding: 16px 40px; }

.order-message {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
}
.order-message.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.order-message.error   { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }

/* ======================================
   CONTACT SECTION
   ====================================== */
.contact-section { background: var(--green); }
.contact-section .section-tag { color: var(--gold-light); background: rgba(201,151,58,.15); }
.contact-section .section-title { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-items { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(201,151,58,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--gold-light); font-size: .85rem; margin-bottom: 2px; }
.contact-item p { color: rgba(255,255,255,.8); margin: 0; }

.contact-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-img { width: 100%; height: 420px; object-fit: cover; }

/* ======================================
   FOOTER
   ====================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  width: 60px; height: 60px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 16px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-links,
.footer-services,
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-links a { font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-services span,
.footer-contact p { font-size: .88rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.footer-staff-link {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
}
.footer-staff-link:hover { text-decoration: underline; }

/* ======================================
   MODAL
   ====================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal-box h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--green); margin-bottom: 12px; }
.modal-box p { color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.modal-order-num { font-size: .9rem; color: var(--text); }

/* ======================================
   ADMIN - LOGIN PAGE
   ====================================== */
.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green) 0%, var(--charcoal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.login-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 50%; border: 3px solid var(--gold); margin: 0 auto 20px; }
.login-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--green); margin-bottom: 6px; }
.login-sub { font-size: .85rem; color: var(--text-muted); margin-bottom: 32px; }
.login-form { text-align: left; }
.login-form .form-group { margin-bottom: 20px; }
.login-form label { font-size: .85rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 6px; }
.login-form input {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--cream);
}
.login-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.login-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: var(--radius);
}
.login-error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .88rem;
  margin-bottom: 20px;
}
.back-link { margin-top: 20px; display: block; font-size: .85rem; color: var(--text-muted); }
.back-link:hover { color: var(--gold); }

/* ======================================
   ADMIN DASHBOARD
   ====================================== */
.admin-body {
  background: #f4f6f9;
  min-height: 100vh;
  font-family: var(--font-body);
}
.admin-sidebar {
  position: fixed;
  top: 0; left: 0;
  width: 260px;
  height: 100vh;
  background: var(--green);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
}
.sidebar-brand {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-brand img {
  width: 44px; height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.sidebar-brand-text { display: flex; flex-direction: column; }
.sidebar-brand-title { color: var(--gold); font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.sidebar-brand-sub { color: rgba(255,255,255,.5); font-size: .68rem; }

.sidebar-nav { padding: 16px 12px; flex: 1; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 4px;
  transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(201,151,58,.2);
  color: var(--gold-light);
}
.sidebar-nav a span.nav-icon { font-size: 1.1rem; }
.sidebar-footer {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.sidebar-footer a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.sidebar-footer a:hover { color: #e74c3c; background: rgba(231,76,60,.1); }

.admin-main {
  margin-left: 260px;
  padding: 32px;
  min-height: 100vh;
}
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.admin-topbar h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green);
}
.admin-user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-size: .88rem;
  color: var(--text);
  font-weight: 600;
}

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-card-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  background: rgba(201,151,58,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-card-info { flex: 1; }
.stat-card-num { font-size: 1.7rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat-card-label { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* Admin tables */
.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 28px;
}
.admin-card-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--cream-dark);
}
.admin-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green);
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th,
.admin-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: .88rem;
  border-bottom: 1px solid var(--cream-dark);
}
.admin-table th { background: var(--cream); font-weight: 600; color: var(--text-muted); text-transform: uppercase; font-size: .75rem; letter-spacing: .5px; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--cream); }

/* Status badges */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: capitalize;
}
.badge-pending   { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #d1ecf1; color: #0c5460; }
.badge-in_progress { background: #cce5ff; color: #004085; }
.badge-completed { background: #d4edda; color: #155724; }
.badge-cancelled { background: #f8d7da; color: #721c24; }

/* Admin form actions */
.btn-sm {
  padding: 6px 14px;
  font-size: .8rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
}
.btn-view { background: var(--green); color: var(--white); }
.btn-view:hover { background: var(--green-light); }
.btn-edit { background: var(--gold); color: var(--white); }
.btn-edit:hover { background: var(--gold-dark); }
.btn-delete { background: #e74c3c; color: var(--white); }
.btn-delete:hover { background: #c0392b; }

select.admin-status-sel {
  font-family: var(--font-body);
  font-size: .82rem;
  padding: 5px 10px;
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  cursor: pointer;
  background: var(--white);
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 300px; }
  .about-img-main { width: 70%; height: 280px; }
  .about-img-small { width: 50%; height: 200px; }
  .order-layout { grid-template-columns: 1fr; }
  .cart-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(26,71,49,.97);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    backdrop-filter: blur(10px);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; text-align: center; }

  .slide-content { padding: 0 5%; }
  .stats-bar { flex-wrap: wrap; }
  .stat { min-width: 120px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .admin-sidebar { transform: translateX(-100%); transition: transform .3s ease; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 16px; }
  .admin-topbar { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-slider { min-height: 500px; }
  .slide-content { padding: 0 24px; }
  .cat-tabs { gap: 8px; }
  .cat-tab { font-size: .78rem; padding: 8px 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 32px 24px; }
}