/* =========================================================
   Bioverda Agro Industries — Stylesheet
   Theme: White background, atmospheric green gradients,
   glassmorphism cards, mobile-first, smooth animations
   ========================================================= */

:root {
  --green-1: #1b5e20;
  --green-2: #2e7d32;
  --green-3: #43a047;
  --green-4: #66bb6a;
  --green-5: #a5d6a7;
  --green-mist: #e8f5e9;
  --white: #ffffff;
  --text-dark: #1b2b1c;
  --text-muted: #5b6b5c;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-soft: 0 8px 32px rgba(46, 125, 50, 0.12);
  --radius: 20px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.container {
  max-width: 100%;
  margin: 0;
  padding: 0 32px;
}

.section { padding: 90px 0; position: relative; }

/* ---------- Glassmorphism ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-2), var(--green-4));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(46, 125, 50, 0.45); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green-3);
  color: var(--green-2);
}
.btn-outline:hover { background: var(--green-mist); }
.btn-glass {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--green-1);
}
.btn-glass:hover { background: rgba(255,255,255,0.8); }
.btn.full { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(46,125,50,0.08);
}
.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.footer-logo-img { height: 64px; width: auto; object-fit: contain; margin-bottom: 12px; }
.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-1);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--green-4);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--green-3);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green-2); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.cart-link { display: flex; align-items: center; gap: 4px; }
.cart-badge {
  background: var(--green-3);
  color: white;
  font-size: 0.7rem;
  padding: 1px 7px;
  border-radius: 20px;
  font-weight: 700;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.user-greet { font-size: 0.9rem; margin-right: 10px; color: var(--green-1); font-weight: 500; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--green-2); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, #f4fbf4 0%, #ffffff 55%, #eaf7ea 100%);
  padding-top: 70px;
  overflow: hidden;
}
.hero .container { padding: 0 16px; }
.hero-bg-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  background: linear-gradient(135deg, var(--green-3), var(--green-5));
  animation: float 8s ease-in-out infinite;
}
.shape1 { width: 300px; height: 300px; top: -80px; left: -80px; }
.shape2 { width: 220px; height: 220px; bottom: 10%; right: -60px; animation-delay: 2s; }
.shape3 { width: 160px; height: 160px; top: 40%; left: 45%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.05); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  padding: 40px 0 20px;
}
.pill {
  display: inline-block;
  background: var(--green-mist);
  color: var(--green-2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.highlight {
  background: linear-gradient(135deg, var(--green-2), var(--green-4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 28px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats strong { display: block; font-size: 1.5rem; color: var(--green-1); font-family: 'Poppins',sans-serif; }
.hero-stats span { font-size: 0.85rem; color: var(--text-muted); }

.hero-card { padding: 30px; display: flex; align-items: center; justify-content: center; }
.hero-img { width: 100%; max-width: 380px; height: auto; display: block; }

/* About block */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.about-card { padding: 32px; }
.about-card h3 { color: var(--green-1); margin-bottom: 12px; font-size: 1.3rem; }
.about-card p { color: var(--text-muted); line-height: 1.7; }

/* ---------- Section headers ---------- */
.section-head { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.section-head .tag {
  display: inline-block;
  color: var(--green-3);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--text-dark); margin-bottom: 10px; }
.section-head p { color: var(--text-muted); }
.section-head.light .tag { color: var(--green-5); }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255,255,255,0.85); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px 26px;
  text-align: left;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-3), var(--green-4));
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-8px); }
.service-card:hover h4, .service-card:hover p, .service-card:hover .service-icon { color: #fff; position: relative; z-index: 1; }
.service-card h4, .service-card p, .service-icon { position: relative; z-index: 1; transition: var(--transition); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; display: inline-block; }
.service-card h4 { margin-bottom: 8px; font-size: 1.05rem; color: var(--text-dark); }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ---------- Why Choose Us ---------- */
.why-section {
  background: linear-gradient(135deg, var(--green-1), var(--green-3) 60%, var(--green-4));
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 32px 24px;
  text-align: center;
  color: var(--white);
}
.why-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.2); }
.why-icon { font-size: 2.4rem; margin-bottom: 16px; }
.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; opacity: 0.9; line-height: 1.6; }

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card { padding: 28px; text-align: center; }
.portfolio-card:hover { transform: translateY(-8px); }
.portfolio-thumb {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}
.thumb-website { background: linear-gradient(135deg, var(--green-2), var(--green-4)); }
.thumb-app { background: linear-gradient(135deg, var(--green-3), var(--green-5)); }
.thumb-client { background: linear-gradient(135deg, var(--green-1), var(--green-3)); }
.portfolio-card h4 { margin-bottom: 8px; }
.portfolio-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Pricing ---------- */
.pricing-section { background: var(--green-mist); }

.pricing-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.pricing-tab {
  padding: 12px 28px;
  border-radius: 50px;
  background: white;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #d7e6d8;
  transition: var(--transition);
}
.pricing-tab.active { background: linear-gradient(135deg, var(--green-2), var(--green-4)); color: white; border-color: transparent; }
.pricing-tab:hover:not(.active) { background: #f2f9f2; }

.pricing-tab-panel { display: none; animation: fadeIn 0.4s ease; }
.pricing-tab-panel.active { display: block; }

.coming-soon-box {
  max-width: 460px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
}
.coming-soon-icon { font-size: 3rem; margin-bottom: 16px; }
.coming-soon-box h3 { color: var(--green-1); margin-bottom: 10px; }
.coming-soon-box p { color: var(--text-muted); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.price-card { padding: 24px 24px 30px; text-align: center; cursor: pointer; }
.price-card:hover { transform: translateY(-8px); }
.price-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.price-card:hover .price-img { transform: scale(1.06); }
.price-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.price-short { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; min-height: 40px; }
.price-tag { font-size: 1.6rem; font-weight: 800; color: var(--green-2); margin-bottom: 18px; font-family: 'Poppins',sans-serif; }

/* ---------- Footer ---------- */
.footer { background: var(--green-1); color: rgba(255,255,255,0.9); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; opacity: 0.8; line-height: 1.7; }

.social-icons { display: flex; gap: 16px; margin-bottom: 16px; }
.social-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  transition: var(--transition);
}
.social-icon:hover { transform: translateY(-4px) scale(1.05); }
.social-icon.whatsapp:hover { background: #25D366; border-color: #25D366; }
.social-icon.instagram:hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); border-color: transparent; }
.social-icon.youtube:hover { background: #FF0000; border-color: #FF0000; }
.social-icon.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-icon.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.footer-links h4, .footer-contact h4 { margin-bottom: 16px; color: var(--green-5); font-size: 1rem; }
.footer-link { display: block; margin-bottom: 10px; font-size: 0.9rem; opacity: 0.85; transition: var(--transition); }
.footer-link:hover { opacity: 1; color: var(--green-5); padding-left: 4px; }

.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-form input, .contact-form textarea {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: inherit;
  resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green-4); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 28px 0 24px;
  font-size: 0.85rem;
  opacity: 0.75;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-bottom .social-icons { margin-bottom: 18px; }
.admin-link { color: rgba(255,255,255,0.6); text-decoration: underline; transition: var(--transition); }
.admin-link:hover { color: var(--green-5); }

/* ---------- Modals / Overlay ---------- */
.overlay {
  position: fixed; inset: 0;
  background: rgba(20, 40, 20, 0.45);
  backdrop-filter: blur(4px);
  z-index: 900;
  display: none;
}
.overlay.active { display: block; animation: fadeIn 0.3s ease; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  z-index: 1000;
  display: none;
  width: 92%;
  max-width: 460px;
  max-height: 88vh;
  overflow-y: auto;
}
.modal.active { display: block; animation: popIn 0.35s ease; }
.modal.wide { max-width: 640px; }
.modal-box {
  background: rgba(255,255,255,0.85);
  padding: 36px 30px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(46,125,50,0.1);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--green-2);
  line-height: 1;
  transition: var(--transition);
}
.modal-close:hover { background: var(--green-2); color: white; transform: rotate(90deg); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  from { opacity: 0; transform: translate(-50%, -40%) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -46%) scale(1); }
}

/* Auth modal */
.auth-tabs { display: flex; gap: 10px; margin-bottom: 24px; }
.auth-tab {
  flex: 1;
  padding: 10px;
  background: var(--green-mist);
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.auth-tab.active { background: linear-gradient(135deg, var(--green-2), var(--green-4)); color: white; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form h3 { color: var(--green-1); margin-bottom: 6px; }
.modal-subtext { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 4px; line-height: 1.5; }
.forgot-password-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--green-3);
  font-weight: 600;
  margin-top: -4px;
}
.forgot-password-link:hover { color: var(--green-1); text-decoration: underline; }
.auth-form input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7e6d8;
  font-family: inherit;
  font-size: 0.95rem;
}
.auth-form input:focus { outline: none; border-color: var(--green-3); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.payment-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-top: 4px; }
.payment-options { display: flex; gap: 10px; }
.payment-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1.5px solid #d7e6d8;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  transition: var(--transition);
}
.payment-option:has(input:checked) { border-color: var(--green-3); background: var(--green-mist); }
.payment-option input { accent-color: var(--green-3); }
.upi-note { font-size: 0.8rem; color: var(--text-muted); margin: 8px 0 16px; line-height: 1.5; }

.form-msg { font-size: 0.85rem; min-height: 18px; text-align: center; }
.form-msg.success { color: var(--green-2); font-weight: 600; }
.form-msg.error { color: #c62828; font-weight: 600; }

/* Product modal */
.pm-gallery { margin-bottom: 14px; }
.pm-image {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.5);
}
.pm-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-thumb {
  width: 56px; height: 56px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: var(--transition);
}
.pm-thumb:hover { opacity: 1; }
.pm-thumb.active-thumb { border-color: var(--green-3); opacity: 1; }

#pmName { color: var(--green-1); margin-bottom: 4px; }
#pmDesc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 14px; }
.feature-list { margin-bottom: 22px; }
.feature-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.feature-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green-3);
  font-weight: 700;
}

/* Star ratings */
.card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.star-rating { color: #f5a623; font-size: 0.95rem; letter-spacing: 1px; }
.rating-count { font-size: 0.8rem; color: var(--text-muted); }

.qty-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.qty-control button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-mist);
  color: var(--green-2);
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
}
.qty-control button:hover { background: var(--green-3); color: white; }
#qtyValue { font-size: 1.2rem; font-weight: 700; min-width: 30px; text-align: center; }

.pm-btn-row { display: flex; gap: 12px; margin-bottom: 8px; }
.pm-btn-row .btn { flex: 1; }

/* Reviews section */
.pm-reviews-section { margin-top: 28px; border-top: 1px solid #e5efe6; padding-top: 20px; }
.pm-reviews-section h4 { color: var(--green-1); margin-bottom: 14px; }
.review-card { padding: 12px 0; border-bottom: 1px solid #f0f5f0; }
.review-card .star-rating { font-size: 0.85rem; }
.review-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.review-author { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

#writeReviewBox { margin-top: 18px; padding-top: 16px; border-top: 1px dashed #d7e6d8; }
#writeReviewBox h5 { color: var(--green-2); margin-bottom: 10px; font-size: 0.95rem; }
.star-input { font-size: 1.6rem; color: #ccc; margin-bottom: 12px; cursor: pointer; }
.star-input span { transition: var(--transition); }
.star-input span.filled { color: #f5a623; }
#reviewText {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7e6d8;
  font-family: inherit;
  font-size: 0.88rem;
  resize: vertical;
  margin-bottom: 10px;
}
#reviewText:focus { outline: none; border-color: var(--green-3); }

/* Success modal */
.success-box { text-align: center; }
.success-icon { font-size: 3rem; margin-bottom: 10px; }
.success-box h3 { color: var(--green-1); margin-bottom: 10px; }
.success-box p { color: var(--text-muted); margin-bottom: 22px; }

/* Cart modal */
.cart-box { max-width: 520px; }
.cart-tabs { display: flex; gap: 10px; margin-bottom: 20px; }
.cart-tab {
  flex: 1;
  padding: 10px;
  background: var(--green-mist);
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.cart-tab.active { background: linear-gradient(135deg, var(--green-2), var(--green-4)); color: white; }

.order-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid #e5efe6;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.order-id { font-weight: 700; color: var(--green-1); font-size: 0.95rem; }
.order-status {
  background: var(--green-mist);
  color: var(--green-2);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.order-items-list { margin-bottom: 10px; }
.order-items-list li { font-size: 0.85rem; color: var(--text-dark); padding: 2px 0; }
.order-address { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.payment-info { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; flex-wrap: wrap; }
.payment-badge { padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.payment-badge.payment-paid { background: var(--green-mist); color: var(--green-2); }
.payment-badge.payment-pending { background: #fff3e0; color: #e65100; }
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--green-1);
  border-top: 1px dashed #d7e6d8;
  padding-top: 8px;
  margin-bottom: 12px;
}
.btn-delete-order {
  width: 100%;
  padding: 9px;
  border-radius: 10px;
  background: rgba(198, 40, 40, 0.08);
  color: #c62828;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}
.btn-delete-order:hover { background: #c62828; color: white; }
.btn-delete-order:disabled { opacity: 0.6; cursor: not-allowed; }
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e5efe6;
}
.cart-item-info h5 { font-size: 0.95rem; margin-bottom: 4px; color: var(--text-dark); }
.cart-item-info span { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.cart-qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-mist);
  color: var(--green-2);
  font-weight: 700;
}
.cart-qty-btn:hover { background: var(--green-3); color: white; }
.cart-remove-btn {
  color: #c62828;
  font-size: 0.8rem;
  font-weight: 600;
  background: none;
  padding: 4px 8px;
}
.gst-breakdown {
  padding: 12px 0 0;
  border-top: 1px dashed #d7e6d8;
  margin-top: 8px;
}
.gst-breakdown div {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 3px 0;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 1.1rem;
  color: var(--green-1);
  border-top: 2px solid var(--green-mist);
  margin-top: 10px;
}
.empty-text { text-align: center; color: var(--text-muted); padding: 30px 0; }

/* Info modal */
.info-body { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; max-height: 50vh; overflow-y: auto; }
.info-body h5 { color: var(--green-2); margin: 14px 0 6px; }

.service-modal-icon { font-size: 2.8rem; margin-bottom: 12px; }
#serviceModalTitle { color: var(--green-1); margin-bottom: 14px; }

/* ---------- Animations ---------- */
.fade-in-up { animation: fadeUp 0.8s ease both; }
.fade-in { animation: fadeIn 1s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .why-grid, .portfolio-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .about-block, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    z-index: 150;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .hamburger { display: flex; }
  .nav-actions { gap: 8px; }
  .user-greet { display: none; }
}

@media (max-width: 560px) {
  .services-grid, .why-grid, .portfolio-grid, .pricing-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero-stats { gap: 24px; }
  .two-col { grid-template-columns: 1fr; }
}
