@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ================= ROOT ================= */
:root{
  --primary:#E85D04;
  --dark:#1F2933;
  --accent:#FFB703;
  --bg:#F9FAFB;
  --card:#FFFFFF;
  --border:#E5E7EB;
  --text:#111827;
  --muted:#6B7280;
}

/* ================= GLOBAL ================= */
body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

/* ================= HEADER ================= */
.top-header{
  background:#1F2933;
  padding:14px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand-area{
  display:flex;
  align-items:center;
  gap:12px;
}

.parent-logo{
  height:46px;
}

.nearone-text{
  font-size:26px;
  font-weight:700;
  color:#FFB703;
}

.nearone-sub{
  font-size:11px;
  color:#E5E7EB;
}

.auth-area a{
  color:#fff;
  margin-left:16px;
  text-decoration:none;
  font-size:14px;
}

.signup-btn{
  border:1px solid #FFB703;
  padding:6px 14px;
  border-radius:6px;
  color:#FFB703;
}

/* ================= NAV ================= */
.main-nav{
  background:#fff;
  padding:14px 40px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.main-nav a{
  margin-right:22px;
  text-decoration:none;
  color:var(--text);
  font-weight:500;
}

.main-nav a:hover{
  color:var(--primary);
}

/* ================= HERO ================= */
.hero{
  padding:70px 20px;
  text-align:center;
  background:linear-gradient(135deg,#FFF1DB,#FFE3C0);
}

.hero h1{
  font-size:40px;
  font-weight:700;
}

.hero p{
  font-size:16px;
  margin:12px 0 30px;
  color:#374151;
}

/* SEARCH */
.search-bar{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.search-bar input{
  padding:14px;
  width:230px;
  border-radius:8px;
  border:1px solid var(--border);
}

.search-bar button{
  padding:14px 24px;
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

.search-bar button:hover{
  opacity:0.9;
}

.cta-btn{
  padding:14px 30px;
  background:var(--primary);
  color:#fff;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

/* ================= TRUST POPUP ================= */
.trust{
  display:flex;
  justify-content:center;
  gap:24px;
  padding:40px 20px;
}

.trust-box{
  background:#fff;
  padding:18px 24px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  position:relative;
  cursor:pointer;
  transition:0.3s;
}

.trust-box:hover{
  transform:translateY(-8px);
}

.trust-box::after{
  position:absolute;
  bottom:-50px;
  left:50%;
  transform:translateX(-50%);
  background:#111827;
  color:#fff;
  padding:8px 12px;
  border-radius:6px;
  font-size:12px;
  opacity:0;
  transition:0.3s;
}

.trust-box:hover::after{
  opacity:1;
}

/* ================= SECTION ================= */
.section{
  padding:60px 40px;
}

.section h2{
  text-align:center;
  font-size:28px;
  margin-bottom:40px;
}

/* ================= CATEGORIES ================= */
.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:22px;
}

.category-card{
  background:#fff;
  padding:24px;
  border-radius:14px;
  text-align:center;
  text-decoration:none;
  color:var(--text);
  box-shadow:0 8px 24px rgba(0,0,0,0.07);
  transition:0.3s;
}

.category-card:hover{
  transform:translateY(-8px);
  background:var(--primary);
  color:#fff;
}

.category-card.view-all{
  background:#111827;
  color:#fff;
}

/* ================= FEATURED POPUP ================= */
.business-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
}

.business-card{
  background:#fff;
  padding:24px;
  border-radius:16px;
  position:relative;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  overflow:hidden;
}

.business-card::before{
  position:absolute;
  inset:0;
  background:rgba(232,93,4,0.95);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  opacity:0;
  transition:0.35s;
}

.business-card:hover::before{
  opacity:1;
}

.business-card h3{
  margin-top:0;
}

.business-card a{
  display:inline-block;
  margin-top:12px;
  font-weight:600;
  color:var(--primary);
  text-decoration:none;
}

/* ================= HOW IT WORKS POPUP ================= */
.how-it-works .steps{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.step{
  background:#fff;
  padding:26px 30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  position:relative;
  cursor:pointer;
  transition:0.3s;
}

.step:hover{
  transform:translateY(-8px);
}

.step::after{
  position:absolute;
  bottom:-48px;
  left:50%;
  transform:translateX(-50%);
  background:var(--primary);
  color:#fff;
  padding:8px 14px;
  border-radius:8px;
  font-size:12px;
  opacity:0;
  transition:0.3s;
}

.step:hover::after{
  opacity:1;
}

/* ================= CTA ================= */
.cta-section{
  background:#111827;
  color:#fff;
  padding:70px 20px;
  text-align:center;
}

.cta-section h2{
  font-size:30px;
}

.cta-section p{
  margin:16px 0 26px;
  color:#E5E7EB;
}



/* ================= PAGE HEADER ================= */
.page-header {
  background: #F8E0C9;
  padding: 50px 20px;
  text-align: center;
  border-bottom: 1px solid #B1AA81;
}

.page-header h1 {
  margin: 0;
  font-size: 32px;
  color: #2B1A12;
}

.page-header p {
  margin-top: 10px;
  font-size: 15px;
  color: #2B1A12;
}

/* ================= CATEGORY CARD EXTRA ================= */
.category-card h3 {
  margin: 0;
  font-size: 18px;
}

.category-card .count {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #2B1A12;
  opacity: 0.8;
}

/* ================= ADD BUSINESS FORM ================= */
.business-form {
  max-width: 600px;
  margin: auto;
  background: #FFF4E4;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #B1AA81;
}

.business-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.business-form input,
.business-form select,
.business-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 4px;
  border: 1px solid #B1AA81;
}

.business-form textarea {
  min-height: 100px;
}

.checkbox {
  margin-top: 15px;
  font-size: 14px;
}

.note {
  font-size: 13px;
  margin-top: 10px;
  color: #2B1A12;
}

.submit-btn {
  margin-top: 20px;
  padding: 12px;
  width: 100%;
  background: #DC6D18;
  color: #FFF4E4;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #2B1A12;
}

/* ================= BACK BUTTON ================= */
.back-wrapper {
  max-width: 600px;
  margin: 0 auto 15px auto;
}

.back-btn {
  display: inline-block;
  padding: 8px 14px;
  background: #F8E0C9;
  color: #2B1A12;
  text-decoration: none;
  border: 1px solid #B1AA81;
  border-radius: 4px;
  font-size: 14px;
}

.back-btn:hover {
  background: #DC6D18;
  color: #FFF4E4;
}

/* ===== AD PREVIEW ===== */
.ad-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* COMMON CARD */
.ad-preview-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  position: relative;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* HOVER POPUP */
.ad-preview-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}
/* FEATURED STYLE */
.ad-preview-card.featured {
  border: 2px solid #DC6D18;
}

.ad-preview-card.featured::after {
  position: absolute;
  inset: 0;
  background: rgba(220,109,24,0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  border-radius: 14px;
  opacity: 0;
  transition: 0.35s;
}

.ad-preview-card.featured:hover::after {
  opacity: 1;
}

/* BADGE */
.ad-preview-card .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg,#DC6D18,#F59E0B);
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 20px;
}

/* BUTTON */
.ad-preview-card button {
  margin-top: 14px;
  padding: 10px 14px;
  border: none;
  background: #DC6D18;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.banner-preview {
  background: linear-gradient(135deg,#FFF4E4,#F8E0C9);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  border: 2px dashed #DC6D18;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.banner-preview:hover {
  background: #DC6D18;
  color: #fff;
  transform: scale(1.04);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.plan-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #E5E7EB;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.15);
}

.plan-card.highlight {
  border: 2px solid #DC6D18;
  background: linear-gradient(135deg,#FFF4E4,#FFE0C0);
}

.plan-card h3 {
  margin-bottom: 10px;
  color: #2B1A12;
}
.benefits {
  max-width: 600px;
  margin: auto;
  padding: 0;
  list-style: none;
}

.benefits li {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  border-left: 5px solid #DC6D18;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.benefits li:hover {
  transform: translateX(6px);
}
.ad-form {
  max-width: 520px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ad-form input,
.ad-form select,
.ad-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  font-size: 14px;
}

.ad-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg,#DC6D18,#F59E0B);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.fb-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #1877F2;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(24,119,242,0.4);
  transition: 0.3s;
}

.fb-btn:hover {
  transform: scale(1.05);
}
.view-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  background: linear-gradient(135deg,#DC6D18,#F59E0B);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.view-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 22px rgba(220,109,24,0.45);
}
/* ================= PAGE HEADER ================= */
.page-header {
  background: linear-gradient(135deg, #DC6D18, #F59E0B);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 38px;
  margin-bottom: 10px;
  animation: fadeDown 0.8s ease;
}

.page-header p {
  font-size: 16px;
  opacity: 0.9;
  animation: fadeUp 0.8s ease;
}

/* ================= ABOUT SECTION ================= */
.section {
  padding: 60px 30px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #2B1A12;
}

.section p {
  max-width: 850px;
  margin: auto;
  font-size: 15px;
  color: #4A2E1F;
  text-align: center;
  line-height: 1.8;
}

/* ================= INFO GRID (POPUP STYLE) ================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.info-card {
  background: #FFF4E4;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #DC6D18, #F59E0B);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

.info-card h3,
.info-card p {
  position: relative;
  z-index: 1;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.info-card:hover::before {
  opacity: 0.12;
}

.info-card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* ================= BENEFITS LIST ================= */
.benefits {
  list-style: none;
  max-width: 700px;
  margin: 30px auto 0;
  padding: 0;
}

.benefits li {
  background: #F8E0C9;
  margin-bottom: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  color: #2B1A12;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  animation: fadeUp 0.6s ease;
}

/* ================= VISION / COMPANY INFO ================= */
.section strong {
  color: #DC6D18;
  font-weight: 600;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= CONTACT GRID ================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* ================= CONTACT BOX (POPUP CARD) ================= */
.contact-box {
  background: #FFF4E4;
  padding: 28px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #DC6D18, #F59E0B);
  opacity: 0;
  transition: 0.4s ease;
}

.contact-box h3,
.contact-box p {
  position: relative;
  z-index: 1;
}

.contact-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2B1A12;
}

.contact-box p {
  font-size: 14px;
  color: #4A2E1F;
}

/* POPUP HOVER */
.contact-box:hover::before {
  opacity: 0.15;
}

.contact-box:hover {
  transform: translateY(-12px) scale(1.05);
}

/* ================= CONTACT FORM ================= */
.contact-form {
  background: #FFF4E4;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  max-width: 550px;
  margin: 40px auto 0;
  animation: fadeUp 0.8s ease;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #B1AA81;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #DC6D18;
  outline: none;
  box-shadow: 0 0 0 3px rgba(220,109,24,0.15);
}

/* ================= SUBMIT BUTTON ================= */
.contact-form button {
  background: linear-gradient(135deg, #DC6D18, #F59E0B);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220,109,24,0.4);
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== FOOTER ===== */
.site-footer {
  background: #2B1A12;
  color: #FFF4E4;
  margin-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px 30px;
}

.footer-col h3,
.footer-col h4 {
  color: #DC6D18;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #FFF4E4;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #DC6D18;
}

.footer-bottom {
  background: #1F120C;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  border-top: 1px solid #B1AA81;
}
.legal h2 {
  margin-top: 25px;
  color: #DC6D18;
}

.legal p,
.legal ul {
  font-size: 14px;
  line-height: 1.7;
}

.legal ul {
  padding-left: 20px;
}
.legal h2 {
  margin-top: 25px;
  color: #DC6D18;
}

.legal p,
.legal ul {
  font-size: 14px;
  line-height: 1.7;
}

.legal ul {
  padding-left: 20px;
}
/* ================= AUTH PAGES (SIGN IN / SIGN UP) ================= */

/* ================= AUTH PAGES ================= */
.auth-page {
  background: linear-gradient(135deg, #F8E0C9, #FFF4E4);
}

/* CENTER WRAPPER */
.auth-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

/* LOGIN CARD */
.auth-card {
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  animation: popIn 0.6s ease;
}

.auth-card h2 {
  margin-bottom: 5px;
  color: #2B1A12;
}

.auth-sub {
  font-size: 14px;
  color: #6B4A3A;
  margin-bottom: 25px;
}

/* INPUTS */
.auth-card label {
  font-size: 13px;
  font-weight: 600;
  color: #2B1A12;
}

.auth-card input {
  width: 100%;
  padding: 12px 14px;
  margin: 6px 0 16px;
  border: 1px solid #CBBBA0;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.auth-card input:focus {
  border-color: #DC6D18;
  box-shadow: 0 0 0 3px rgba(220,109,24,0.15);
  outline: none;
}

/* BUTTON */
.auth-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #DC6D18, #F59E0B);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(220,109,24,0.45);
}

/* FOOTER */
.auth-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
}

.auth-footer a {
  color: #DC6D18;
  font-weight: 600;
  text-decoration: none;
}

/* ERROR */
.error-msg {
  background: #FEE2E2;
  color: #991B1B;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 15px;
  text-align: center;
}

/* ANIMATION */
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.logout-btn {
  background: #2B1A12;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 8px;
}

.logout-btn:hover {
  opacity: 0.9;
}


/* ================= ADMIN DASHBOARD ================= */

.dashboard-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* ===== STATS CARDS ===== */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.dashboard-card {
  background: #ffffff;
  border-left: 6px solid #DC6D18;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.dashboard-card:hover {
  transform: translateY(-4px);
}

.dashboard-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  color: #333;
}

.dashboard-card p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

.dashboard-card strong {
  font-size: 22px;
  color: #000;
}

/* ===== BUSINESS TABLE ===== */
.biz-table {
  width: 100%;
  margin-top: 25px;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.biz-table thead {
  background: #DC6D18;
  color: #fff;
}

.biz-table th,
.biz-table td {
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
}

.biz-table tbody tr {
  border-bottom: 1px solid #eee;
}

.biz-table tbody tr:hover {
  background: #FFF3E8;
}

.biz-table th {
  font-weight: 600;
}

/* ===== STATUS COLORS ===== */
.status-approved {
  color: #1E8E3E;
  font-weight: bold;
}

.status-pending {
  color: #E37400;
  font-weight: bold;
}

.status-rejected {
  color: #D93025;
  font-weight: bold;
}

/* ===== ACTION BUTTONS ===== */
.biz-table a {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

.biz-table a:first-child {
  background: #1E8E3E;
  color: #fff;
}

.biz-table a:first-child:hover {
  background: #166E30;
}

.biz-table a:last-child {
  background: #D93025;
  color: #fff;
  margin-left: 6px;
}

.biz-table a:last-child:hover {
  background: #B1271C;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 20px;
}

.dashboard-card {
  background: #F8E0C9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

.dashboard-card.pending { border-left: 5px solid orange; }
.dashboard-card.approved { border-left: 5px solid green; }
.dashboard-card.rejected { border-left: 5px solid red; }

.biz-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.biz-table th,
.biz-table td {
  padding: 12px;
  border: 1px solid #B1AA81;
  text-align: center;
}

.biz-table th {
  background: #F8E0C9;
}

.status.pending { color: orange; font-weight: bold; }
.status.approved { color: green; font-weight: bold; }
.status.rejected { color: red; font-weight: bold; }

.btn-approve {
  background: green;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  margin-right: 5px;
}

.btn-reject {
  background: red;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pagination a {
  padding: 8px 14px;
  border: 1px solid #DC6D18;
  text-decoration: none;
  color: #DC6D18;
  border-radius: 4px;
}

.pagination a.active,
.pagination a:hover {
  background: #DC6D18;
  color: #fff;
}

/* ===== PAGE HEADER (ADMIN) ===== */
.page-header {
  background: linear-gradient(135deg, #DC6D18, #F39C12);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.page-header h1 {
  margin: 0;
  font-size: 32px;
}

.page-header p {
  margin-top: 8px;
  font-size: 16px;
  opacity: 0.95;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .biz-table th,
  .biz-table td {
    font-size: 13px;
    padding: 10px;
  }

  .dashboard-card strong {
    font-size: 20px;
  }
}
/* ================= RESPONSIVE (MOBILE & TABLET) ================= */

/* ===== TABLET (≤1024px) ===== */
@media (max-width: 1024px) {

  .top-header,
  .main-nav {
    padding: 12px 20px;
  }

  .main-nav a {
    margin-right: 14px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section {
    padding: 50px 20px;
  }

  .dashboard-cards {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .biz-table th,
  .biz-table td {
    font-size: 13px;
    padding: 10px;
  }
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {

  /* HEADER STACK */
  .top-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .brand-area {
    justify-content: center;
  }

  .auth-area {
    margin-top: 6px;
  }

  /* NAV SCROLL */
  .main-nav {
    overflow-x: auto;
    white-space: nowrap;
  }

  .main-nav a {
    display: inline-block;
    margin-right: 16px;
    font-size: 14px;
  }

  /* HERO */
  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  /* SEARCH */
  .search-bar input {
    width: 100%;
  }

  .search-bar {
    flex-direction: column;
  }

  /* CATEGORY GRID */
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  /* DASHBOARD */
  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  /* TABLE SCROLL */
  .biz-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* PAGE HEADER */
  .page-header h1 {
    font-size: 26px;
  }

  .page-header p {
    font-size: 14px;
  }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {

  .nearone-text {
    font-size: 22px;
  }

  .parent-logo {
    height: 38px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .cta-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .category-card {
    padding: 18px;
  }

  .dashboard-card strong {
    font-size: 20px;
  }

  .auth-card {
    padding: 25px 20px;
  }
}
