/* ===========================
   ARS Logistics - MAIN STYLES
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  --navy: #0d1b2e;
  --navy-light: #152338;
  --blue: #1a6fd4;
  --blue-bright: #2b87f5;
  --blue-light: #4a9eff;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --gray: #8a9ab5;
  --gray-light: #e8edf5;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 4px 24px rgba(13,27,46,0.12);
  --shadow-lg: 0 12px 48px rgba(13,27,46,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILITY ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 16px rgba(26,111,212,0.35);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,111,212,0.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.tag {
  display: inline-block; background: rgba(26,111,212,0.1); color: var(--blue);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 16px;
}

/* ---- HEADER ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,46,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px; max-width: 1180px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { 
  height: 52px; 
  width: 52px; 
  object-fit: contain;
  border-radius: 50%;
  background: white; /* Optional: ensures the circle is solid if the PNG is transparent but small */
  display: block;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-weight: 500;
  font-size: 14px; padding: 8px 14px; border-radius: 6px; transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav a:hover, .nav a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none; flex-direction: column; background: var(--navy-light);
  padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a {
  color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 15px;
}
.mobile-nav.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,111,212,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 10% 80%, rgba(43,135,245,0.1) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,111,212,0.15); border: 1px solid rgba(26,111,212,0.3);
  color: var(--blue-light); font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 8px 16px; border-radius: 30px; margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--blue-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.3); } }
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px); font-weight: 900;
  color: var(--white); line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--blue-light); }
.hero p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-item {}
.stat-number { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); }
.stat-label { color: var(--gray); font-size: 13px; font-weight: 500; }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(10px);
  margin-bottom: 16px; transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.08); transform: translateX(-4px); }
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
  color: var(--white);
}
.card-icon.blue { background: rgba(26,111,212,0.2); }
.card-icon.green { background: rgba(16,185,129,0.2); }
.card-icon.orange { background: rgba(245,158,11,0.2); }
.hero-card h4 { color: var(--white); font-size: 15px; font-weight: 600; }
.hero-card p { color: var(--gray); font-size: 13px; }
.status-bar { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-dot.green { background: var(--success); }
.status-dot.blue { background: var(--blue-light); }
.status-text { font-size: 12px; color: var(--gray); font-weight: 500; }
.delivery-progress { background: rgba(255,255,255,0.08); border-radius: 4px; height: 6px; margin-top: 10px; overflow: hidden; }
.delivery-progress-bar { height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 4px; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--navy-light); padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 14px; font-weight: 500; }
.trust-item svg { color: var(--blue-light); }

/* ---- SECTION HEADERS ---- */
.section-header { margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.1; margin-bottom: 16px;
}
.section-header p { color: #5a6a85; font-size: 17px; line-height: 1.7; max-width: 580px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ---- ABOUT ---- */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy); min-height: 440px; display: flex; align-items: center; justify-content: center;
}
.about-image-inner {
  width: 100%; height: 100%; min-height: 440px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2e4a 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px;
}
.about-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.about-img-overlay { text-align: center; position: relative; z-index: 2; padding: 40px; }
.about-img-overlay img.logo-overlay { height: 80px; width: auto; margin-bottom: 20px; }
.about-img-overlay p { color: rgba(255,255,255,0.6); font-size: 14px; }
.logo-overlay { height: 100px; width: 100px; border-radius: 50%; background: white; object-fit: contain; padding: 5px; }
.about-badge-float {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--white); border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; z-index: 3;
}
.about-badge-float .num { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--blue); }
.about-badge-float .lbl { font-size: 12px; color: var(--gray); font-weight: 500; line-height: 1.3; }
.values-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(26,111,212,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.value-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.value-item p { font-size: 14px; color: #5a6a85; line-height: 1.6; }

/* ---- SERVICES ---- */
.services {}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.services-grid.five-cols { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) {
  .services-grid.five-cols { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
.service-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { 
  width: 64px; height: 64px; 
  border-radius: 16px; 
  display: flex; align-items: center; justify-content: center; 
  font-size: 28px; margin-bottom: 24px;
  background: var(--off-white);
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon.blue { background: rgba(26,111,212,0.1); color: var(--blue); }
.service-icon.red { background: rgba(239,68,68,0.1); color: var(--danger); }
.service-icon.green { background: rgba(16,185,129,0.1); color: var(--success); }
.service-icon.orange { background: rgba(245,158,11,0.1); color: var(--warning); }
.service-icon.purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: #5a6a85; font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.service-tag { font-size: 12px; font-weight: 600; color: var(--blue); background: rgba(26,111,212,0.08); padding: 4px 10px; border-radius: 20px; }

/* ---- HOW IT WORKS ---- */
.how-it-works { background: var(--navy); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: var(--gray); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-light), transparent);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; background: var(--navy-light);
  border: 2px solid var(--blue); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--blue-light);
  box-shadow: 0 0 20px rgba(26,111,212,0.3);
}
.step h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 14px; line-height: 1.65; }

/* ---- CONTACT ---- */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: #5a6a85; font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }
.contact-detail .icon { width: 48px; height: 48px; background: var(--blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; flex-shrink: 0; }
.contact-detail h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); font-weight: 600; margin-bottom: 3px; }
.contact-detail p { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-light);
  border-radius: 8px; font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--navy);
  transition: var(--transition); background: var(--white);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,111,212,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9ab5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }

/* ---- FOOTER ---- */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.55); }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--blue-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { background: var(--navy); padding: 120px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 56px; font-weight: 900; color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--gray); font-size: 18px; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: 13px; }
.breadcrumb a { color: var(--blue-light); text-decoration: none; }
.breadcrumb span { color: var(--gray); }

/* ---- PHARMACY LOGIN PAGE ---- */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--navy); padding: 120px 24px 60px; position: relative; overflow: hidden; }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px; width: 100%; max-width: 460px; box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo img { height: 60px; }
.auth-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-card .subtitle { text-align: center; color: var(--gray); font-size: 15px; margin-bottom: 32px; }
.auth-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; display: none; }

/* ---- PHARMACY DASHBOARD ---- */
.dashboard { min-height: 100vh; background: var(--off-white); }
.dashboard-header { background: var(--navy); padding: 0; position: sticky; top: 0; z-index: 100; }
.dashboard-header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 32px; }
.dashboard-nav { display: flex; align-items: center; gap: 4px; }
.dashboard-nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 500; padding: 7px 14px; border-radius: 6px; transition: var(--transition); }
.dashboard-nav a:hover, .dashboard-nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.user-info { display: flex; align-items: center; gap: 10px; }
.user-avatar { width: 36px; height: 36px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 14px; }
.user-name { color: var(--white); font-size: 14px; font-weight: 500; }
.dashboard-content { padding: 32px; }
.dash-title { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.dash-subtitle { color: var(--gray); font-size: 15px; margin-bottom: 32px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.stat-card .s-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 10px; }
.stat-card .s-value { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 800; color: var(--navy); }
.stat-card .s-sub { font-size: 12px; color: var(--gray); margin-top: 4px; }
.stat-card.blue-card { background: var(--blue); }
.stat-card.blue-card .s-label, .stat-card.blue-card .s-value, .stat-card.blue-card .s-sub { color: var(--white); }
.stat-card.blue-card .s-label { color: rgba(255,255,255,0.7); }

/* Dashboard Panels */
.panel { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); margin-bottom: 24px; }
.panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.panel-title { font-size: 18px; font-weight: 700; }
.panel-subtitle { font-size: 14px; color: var(--gray); margin-top: 2px; }
.deliveries-table { width: 100%; border-collapse: collapse; }
.deliveries-table th { text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); padding: 12px 16px; background: var(--off-white); border-radius: 6px; }
.deliveries-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-light); font-size: 14px; }
.deliveries-table tr:last-child td { border-bottom: none; }
.deliveries-table tr:hover td { background: var(--off-white); }
.status-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.status-badge.pending { background: #fef3c7; color: #92400e; }
.status-badge.in-transit { background: #dbeafe; color: #1e40af; }
.status-badge.delivered { background: #d1fae5; color: #065f46; }
.status-badge.cancelled { background: #fee2e2; color: #991b1b; }

/* New Request Form */
.delivery-item-block {
  background: var(--off-white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); padding: 24px; margin-bottom: 16px; position: relative;
}
.delivery-item-block .item-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.remove-item { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--gray); cursor: pointer; font-size: 18px; transition: var(--transition); }
.remove-item:hover { color: var(--danger); }
.add-item-btn { display: flex; align-items: center; gap: 8px; color: var(--blue); background: rgba(26,111,212,0.07); border: 2px dashed rgba(26,111,212,0.3); border-radius: var(--radius); width: 100%; padding: 14px; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); justify-content: center; font-family: 'Barlow', sans-serif; }
.add-item-btn:hover { background: rgba(26,111,212,0.12); border-color: var(--blue); }

/* Admin */
.admin-badge { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.filter-row input, .filter-row select { padding: 9px 14px; border: 1.5px solid var(--gray-light); border-radius: 8px; font-family: 'Barlow', sans-serif; font-size: 14px; outline: none; background: var(--white); }
.filter-row input:focus, .filter-row select:focus { border-color: var(--blue); }
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal { background: white; border-radius: var(--radius-lg); padding: 40px; max-width: 680px; width: 90%; max-height: 85vh; overflow-y: auto; }
.modal h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.detail-item label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); font-weight: 600; display: block; margin-bottom: 4px; }
.detail-item p { font-size: 15px; font-weight: 500; }

/* Toast notification */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: white; padding: 14px 20px; border-radius: 10px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-lg); z-index: 9999; transform: translateY(100px); opacity: 0; transition: var(--transition); display: flex; align-items: center; gap: 10px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge-float { right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .dashboard-content { padding: 20px; }
  .detail-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ---- DASHBOARD EXTRAS ---- */
.row-selected { background: #f0f7ff !important; }
.order-checkbox { cursor: pointer; width: 16px; height: 16px; }
.admin-badge { background: #f59e0b; color: white; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; margin-left: 8px; }
