/* ════════════════════════════════════════
   Sardar Agro Farm — main.css v2.0
   ════════════════════════════════════════ */

:root {
  --green-deep:  #1a4a2e;
  --green-mid:   #2d7a4f;
  --green-light: #4caf7d;
  --green-pale:  #e8f5ee;
  --gold:        #c8972a;
  --gold-light:  #f0c84a;
  --cream:       #faf7f0;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #444;
  --text-light:  #777;
  --shadow:      0 8px 40px rgba(26,74,46,0.13);
  --shadow-lg:   0 16px 60px rgba(26,74,46,0.18);
  --radius:      18px;
  --radius-lg:   28px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans Bengali', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--green-mid); }

/* ═══════════════════════
   LAYOUT HELPERS
═══════════════════════ */
.sardar-container { max-width: 1140px; margin: 0 auto; padding: 0 5%; }
.sardar-main-content { padding-top: 100px; min-height: 60vh; }
section { padding: 80px 0; }

/* ═══════════════════════
   NAVBAR
═══════════════════════ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(26,74,46,0.97); backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 5%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.nav-logo-text { font-family: 'Noto Serif Bengali', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 0.68rem; color: var(--gold-light); font-weight: 400; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links li a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.86rem; padding: 7px 12px; border-radius: 8px; transition: all 0.2s; font-weight: 500; display: block; }
.nav-links li a:hover, .nav-links li.active a { background: rgba(200,151,42,0.2); color: var(--gold-light); }
.nav-links li a.nav-cta { background: var(--gold); color: var(--green-deep); font-weight: 700; border-radius: 20px; padding: 7px 18px; }
.nav-links li a.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.admin-bar #site-nav { top: 32px; }

/* ═══════════════════════
   PAGE HERO BANNER
═══════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 120px 0 60px; margin-top: 0;
  border-bottom: 3px solid var(--gold);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,151,42,0.08), transparent 70%);
}
.page-hero-short { padding: 100px 0 40px; }
.page-hero-breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.page-hero-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--gold-light); }
h1.page-hero-title { font-family: 'Noto Serif Bengali', serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.7; }

/* ═══════════════════════
   SECTION COMMON
═══════════════════════ */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag { display: inline-block; background: var(--green-pale); color: var(--green-mid); font-size: 0.74rem; font-weight: 700; padding: 5px 16px; border-radius: 50px; letter-spacing: 0.5px; margin-bottom: 14px; text-transform: uppercase; }
h2.section-title { font-family: 'Noto Serif Bengali', serif; font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 800; color: var(--green-deep); line-height: 1.25; margin-bottom: 14px; }
.section-desc { font-size: 1rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* ═══════════════════════
   HERO SECTION (home)
═══════════════════════ */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(26,74,46,0.92) 0%, rgba(26,74,46,0.6) 60%, rgba(200,151,42,0.1) 100%),
    url('https://images.unsplash.com/photo-1570042225831-d98fa7577f1e?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center; padding: 110px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-content { max-width: 660px; animation: fadeInUp 0.9s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,151,42,0.2); border: 1px solid rgba(200,151,42,0.5); border-radius: 50px; padding: 6px 18px; font-size: 0.82rem; color: var(--gold-light); margin-bottom: 24px; }
h1.hero-title { font-family: 'Noto Serif Bengali', serif; font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 12px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
h1.hero-title span { color: var(--gold-light); display: block; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 52px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.hero-stat-num { font-family: 'Noto Serif Bengali', serif; font-size: 1.9rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ═══════════════════════
   BUTTONS
═══════════════════════ */
.btn-primary, a.btn-primary {
  background: var(--gold); color: var(--green-deep);
  font-family: 'Noto Sans Bengali', sans-serif; font-size: 1rem; font-weight: 700;
  padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s; box-shadow: 0 6px 24px rgba(200,151,42,0.35);
}
.btn-primary:hover, a.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,151,42,0.5); color: var(--green-deep); }
.btn-secondary, a.btn-secondary {
  background: transparent; color: var(--white);
  font-family: 'Noto Sans Bengali', sans-serif; font-size: 1rem; font-weight: 600;
  padding: 13px 26px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-order { background: var(--green-mid); color: var(--white); border: none; cursor: pointer; font-family: 'Noto Sans Bengali', sans-serif; font-size: 0.95rem; font-weight: 700; padding: 13px; border-radius: 12px; width: 100%; transition: all 0.25s; text-decoration: none; display: block; text-align: center; }
.btn-order:hover { background: var(--green-deep); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,74,46,0.3); color: var(--white); }
.btn-submit { background: linear-gradient(135deg, var(--green-mid), var(--green-deep)); color: var(--white); border: none; cursor: pointer; font-family: 'Noto Sans Bengali', sans-serif; font-size: 1rem; font-weight: 700; padding: 14px; border-radius: 12px; width: 100%; transition: all 0.25s; margin-top: 6px; }
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,74,46,0.35); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ═══════════════════════
   QUICK LINKS (home)
═══════════════════════ */
.quick-links-section { background: var(--white); padding: 50px 0; }
.quick-links-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.quick-link-card { background: var(--cream); border: 1.5px solid transparent; border-radius: var(--radius); padding: 24px 16px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: var(--text-dark); transition: all 0.25s; text-align: center; }
.quick-link-card:hover { border-color: var(--green-light); box-shadow: var(--shadow); transform: translateY(-3px); color: var(--green-deep); }
.quick-link-cta { background: var(--green-pale); border-color: var(--green-light); }
.ql-icon { font-size: 1.8rem; }
.ql-title { font-size: 0.88rem; font-weight: 700; color: var(--green-deep); line-height: 1.3; }
.ql-arrow { font-size: 1rem; color: var(--green-mid); }

/* ═══════════════════════
   FEATURES GRID
═══════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; max-width: 1140px; margin: 0 auto; }
.feature-card { background: var(--cream); border-radius: var(--radius); padding: 34px 26px; border: 1.5px solid transparent; transition: all 0.3s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green-mid), var(--gold)); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover { border-color: var(--green-light); box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.feature-title { font-family: 'Noto Serif Bengali', serif; font-size: 1.1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 10px; }
.feature-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ═══════════════════════
   PRODUCT CARDS
═══════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 1140px; margin: 0 auto; }
.product-card { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 4px 24px rgba(26,74,46,0.08); transition: all 0.35s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img-milk { background: linear-gradient(135deg, #e8f5ff, #d0ebff); }
.product-img-ghee { background: linear-gradient(135deg, #fffbe8, #ffefc0); }
.product-img-cow  { background: linear-gradient(135deg, #e8f5ee, #c5e8d0); }
.product-emoji { font-size: 5.5rem; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.1)); transition: transform 0.3s; }
.product-card:hover .product-emoji { transform: scale(1.08); }
.product-badge { position: absolute; top: 14px; right: 14px; background: var(--green-mid); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.product-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.product-title { font-family: 'Noto Serif Bengali', serif; font-size: 1.38rem; font-weight: 800; color: var(--green-deep); margin-bottom: 8px; }
.product-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; flex: 1; }
.product-features { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.product-features li { font-size: 0.87rem; color: var(--green-deep); display: flex; align-items: center; gap: 8px; font-weight: 500; }
.product-features li::before { content: '✓'; background: var(--green-light); color: var(--white); width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 900; flex-shrink: 0; }
.product-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.price-num { font-family: 'Noto Serif Bengali', serif; font-size: 1.55rem; font-weight: 900; color: var(--green-deep); }
.price-unit { font-size: 0.8rem; color: var(--text-light); }

/* ═══════════════════════
   PRODUCT DETAIL CARDS (products page)
═══════════════════════ */
.products-page-section { background: var(--white); }
.product-detail-card { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; margin-bottom: 70px; padding: 50px; background: var(--cream); border-radius: var(--radius-lg); border: 1.5px solid rgba(26,74,46,0.08); }
.product-detail-card:last-child { margin-bottom: 0; }
.product-detail-reverse { direction: rtl; }
.product-detail-reverse > * { direction: ltr; }
.pdc-visual { border-radius: var(--radius); height: 300px; display: flex; align-items: center; justify-content: center; }
.pdc-badge { display: inline-block; background: var(--green-mid); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; margin-bottom: 14px; }
.pdc-badge-gold { background: var(--gold); color: var(--green-deep); }
.pdc-badge-red { background: #e74c3c; }
.pdc-title { font-family: 'Noto Serif Bengali', serif; font-size: 2rem; font-weight: 900; color: var(--green-deep); margin-bottom: 14px; }
.pdc-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.pdc-features { list-style: none; margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.pdc-features li { font-size: 0.9rem; color: var(--green-deep); display: flex; align-items: center; gap: 9px; font-weight: 500; }
.pdc-features li::before { content: '✓'; background: var(--green-light); color: var(--white); width: 19px; height: 19px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 900; flex-shrink: 0; }
.pdc-price-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ═══════════════════════
   ABOUT PAGE
═══════════════════════ */
.about-story-section { background: var(--white); }
.about-story-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.about-story-img-box { background: linear-gradient(135deg, var(--green-pale), #c5e8d0); border-radius: var(--radius-lg); height: 360px; display: flex; align-items: center; justify-content: center; position: relative; }
.about-story-badge { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--green-deep); color: var(--white); font-size: 0.82rem; font-weight: 700; padding: 6px 18px; border-radius: 50px; white-space: nowrap; }
.about-story-content .section-title { margin-bottom: 20px; }
.about-story-content p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; }
.about-features-section { background: var(--green-pale); }
.about-stats-section { background: var(--green-deep); padding: 60px 0; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.about-stat-num { font-family: 'Noto Serif Bengali', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold-light); }
.about-stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ═══════════════════════
   PROCESS PAGE
═══════════════════════ */
.process-page-section { background: var(--white); }
.process-wrap { max-width: 860px; margin: 0 auto; }
.process-step { display: grid; grid-template-columns: 70px 1fr; gap: 24px; align-items: flex-start; position: relative; padding-bottom: 44px; }
.process-step:last-child { padding-bottom: 0; }
.process-step::after { content: ''; position: absolute; left: 34px; top: 70px; width: 2px; height: calc(100% - 70px); background: linear-gradient(180deg, var(--green-light), transparent); }
.process-step:last-child::after { display: none; }
.step-indicator { display: flex; flex-direction: column; align-items: center; }
.step-num { width: 60px; height: 60px; background: var(--green-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif Bengali', serif; font-size: 1.3rem; font-weight: 900; color: var(--white); flex-shrink: 0; box-shadow: 0 4px 16px rgba(45,122,79,0.35); position: relative; z-index: 1; }
.step-content-wrap { padding-top: 8px; }
.step-icon-title { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 10px; }
.step-emoji { font-size: 2rem; line-height: 1; margin-top: 2px; }
.step-title { font-family: 'Noto Serif Bengali', serif; font-size: 1.18rem; font-weight: 700; color: var(--green-deep); margin-bottom: 3px; }
.step-time { font-size: 0.78rem; color: var(--gold); font-weight: 600; }
.step-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; }
.quality-pledge-section { background: var(--green-pale); }
.quality-pledge-box { background: var(--white); border-radius: var(--radius-lg); padding: 56px; text-align: center; max-width: 680px; margin: 0 auto; border: 2px solid var(--green-light); }
.qp-icon { font-size: 4rem; margin-bottom: 20px; display: block; }
.quality-pledge-box h3 { font-family: 'Noto Serif Bengali', serif; font-size: 1.6rem; font-weight: 800; color: var(--green-deep); margin-bottom: 16px; }
.quality-pledge-box p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }

/* ═══════════════════════
   GALLERY PAGE
═══════════════════════ */
.gallery-page-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px 200px; gap: 14px; border-radius: 20px; overflow: hidden; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; font-size: 4rem; cursor: pointer; transition: transform 0.3s; }
.gallery-item:hover { transform: scale(1.02); }
.gi-1 { grid-column: span 2; grid-row: span 2; font-size: 7rem; background: linear-gradient(135deg, #c5e8d0, #a8d8b9); }
.gi-2 { background: linear-gradient(135deg, #e8f5ff, #c0dcff); }
.gi-3 { background: linear-gradient(135deg, #fffbe8, #ffefc0); }
.gi-4 { background: linear-gradient(135deg, #e8f0ee, #d0e8dc); }
.gi-5 { background: linear-gradient(135deg, #fff0e8, #ffdcc0); }
.gi-6 { background: linear-gradient(135deg, #f5e8ff, #e0c0ff); }
.gallery-label { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: rgba(26,74,46,0.85); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; white-space: nowrap; }
.gallery-note { text-align: center; margin-top: 28px; color: var(--text-mid); font-size: 0.92rem; }
.gallery-testi-section { background: var(--green-deep); padding: 80px 5%; }

/* WP Image Gallery */
.wp-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.wp-gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 1; position: relative; }
.wp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.wp-gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,74,46,0.5); display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: 0; transition: opacity 0.3s; }
.wp-gallery-item:hover .gallery-overlay { opacity: 1; }

/* ═══════════════════════
   TESTIMONIALS
═══════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 1000px; margin: 0 auto; }
.testi-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.testi-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(200,151,42,0.4); }
.testi-stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 0.94rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-mid); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.testi-name { font-weight: 700; color: var(--white); font-size: 0.93rem; }
.testi-loc { font-size: 0.76rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ═══════════════════════
   CONTACT PAGE
═══════════════════════ */
.contact-page-section { background: var(--white); }
.contact-wrap { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; }
.contact-info h3 { font-family: 'Noto Serif Bengali', serif; font-size: 1.55rem; font-weight: 800; color: var(--green-deep); margin-bottom: 14px; }
.contact-info > p { font-size: 0.94rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 44px; height: 44px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item-label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 3px; }
.contact-item-val { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; line-height: 1.5; }
.contact-item-val a { color: var(--green-mid); text-decoration: none; }
.contact-price-ref { background: var(--green-pale); border-radius: var(--radius); padding: 20px 22px; }
.cpr-title { font-family: 'Noto Serif Bengali', serif; font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 14px; }
.cpr-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(26,74,46,0.08); font-size: 0.9rem; }
.cpr-item:last-child { border-bottom: none; }
.cpr-item strong { color: var(--green-deep); font-weight: 700; }
.contact-form { background: var(--cream); border-radius: 24px; padding: 38px; border: 1.5px solid rgba(26,74,46,0.1); }
.form-title { font-family: 'Noto Serif Bengali', serif; font-size: 1.28rem; font-weight: 700; color: var(--green-deep); margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 11px 15px; border: 1.5px solid rgba(26,74,46,0.15); border-radius: 10px; font-family: 'Noto Sans Bengali', sans-serif; font-size: 0.93rem; color: var(--text-dark); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(45,122,79,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ═══════════════════════
   HOME PAGE SECTIONS
═══════════════════════ */
.home-products-section { background: var(--green-pale); }
.home-why-section { background: var(--white); }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
#site-footer { background: #0d2818; padding: 60px 5% 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 48px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-name { font-family: 'Noto Serif Bengali', serif; font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.footer-brand-tag { font-size: 0.8rem; color: var(--gold-light); margin-bottom: 14px; }
.footer-desc { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 300px; }
.footer-col-title { font-family: 'Noto Serif Bengali', serif; font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { text-decoration: none; font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.social-btn:hover { background: var(--green-mid); border-color: var(--green-mid); }

/* ═══════════════════════
   WHATSAPP FLOAT
═══════════════════════ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9998; width: 58px; height: 58px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 6px 24px rgba(37,211,102,0.45); cursor: pointer; transition: all 0.25s; text-decoration: none; animation: pulse 2.5s infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

/* ═══════════════════════
   TOAST
═══════════════════════ */
.toast { position: fixed; bottom: 100px; right: 28px; z-index: 99999; background: var(--green-mid); color: var(--white); padding: 14px 22px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; box-shadow: 0 8px 30px rgba(26,74,46,0.35); transform: translateY(20px); opacity: 0; transition: all 0.3s; pointer-events: none; max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ═══════════════════════
   WOOCOMMERCE STYLES
═══════════════════════ */
.sardar-woo-main { padding-top: 70px; }
.woo-content-section { padding: 60px 0; background: var(--cream); }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important; gap: 24px !important; }
.woocommerce ul.products li.product { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(26,74,46,0.07); transition: all 0.3s; margin: 0 !important; float: none !important; width: auto !important; }
.woocommerce ul.products li.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.woocommerce ul.products li.product a img { border-radius: 0; width: 100%; height: 220px; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: 'Noto Serif Bengali', serif; font-size: 1.1rem; font-weight: 700; color: var(--green-deep); padding: 14px 18px 6px; }
.woocommerce ul.products li.product .price { color: var(--green-mid); font-weight: 700; font-size: 1.1rem; padding: 0 18px 10px; display: block; }
.woocommerce ul.products li.product .button { background: var(--green-mid) !important; color: var(--white) !important; border-radius: 8px !important; font-family: 'Noto Sans Bengali', sans-serif !important; font-weight: 700 !important; margin: 0 18px 18px !important; padding: 10px 18px !important; display: block !important; text-align: center !important; transition: background 0.2s !important; width: calc(100% - 36px) !important; }
.woocommerce ul.products li.product .button:hover { background: var(--green-deep) !important; }
.woocommerce .woocommerce-breadcrumb { font-size: 0; }
.woocommerce div.product .product_title { font-family: 'Noto Serif Bengali', serif; font-size: 2rem; font-weight: 900; color: var(--green-deep); }
.woocommerce div.product .price { font-size: 1.6rem; color: var(--green-mid); font-weight: 700; }
.woocommerce .single_add_to_cart_button { background: var(--green-mid) !important; border-radius: 50px !important; font-family: 'Noto Sans Bengali', sans-serif !important; font-weight: 700 !important; padding: 14px 32px !important; }
.woocommerce .single_add_to_cart_button:hover { background: var(--green-deep) !important; }

/* ═══════════════════════
   ELEMENTOR COMPATIBILITY
═══════════════════════ */
.elementor-page #site-nav { z-index: 9999; }
.elementor-section { max-width: 100% !important; }
.elementor-widget-heading .elementor-heading-title { font-family: 'Noto Serif Bengali', serif !important; }

/* ═══════════════════════
   ANIMATIONS
═══════════════════════ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); } 50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); } }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media (max-width: 1024px) {
  .quick-links-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-story-wrap { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-card { grid-template-columns: 1fr; gap: 28px; }
  .product-detail-reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-1 { grid-column: span 2; font-size: 5rem; height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--green-deep); padding: 16px 5%; gap: 2px; border-bottom: 2px solid var(--gold); z-index: 9998; }
  .hero-stats { gap: 20px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-bar .nav-links.open { top: 108px; }
}
@media screen and (max-width: 782px) { .admin-bar #site-nav { top: 46px; } }


/* ═══════════════════════════════════════
   OWNER HERO SECTION — bold full-width
═══════════════════════════════════════ */
.owner-hero-section {
  background: linear-gradient(135deg, #1a4a2e 0%, #2d7a4f 55%, #1e5535 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

/* Decorative circles */
.owner-hero-bg-circle {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,42,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.owner-hero-bg-circle2 {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  bottom: -80px; left: 40%;
  pointer-events: none;
}

.owner-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 5% 60px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── LEFT side ── */
.owner-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.owner-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,151,42,0.2);
  border: 1px solid rgba(200,151,42,0.45);
  color: #f0c84a;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
  width: fit-content;
}

.owner-hero-title {
  font-family: 'Noto Serif Bengali', serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.owner-hero-name-highlight {
  color: #f0c84a;
  position: relative;
  display: inline-block;
}
.owner-hero-name-highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #f0c84a, transparent);
  border-radius: 2px;
}

.owner-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-style: italic;
}

/* ── cards row ── */
.owner-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.owner-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.owner-card:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(200,151,42,0.5);
  transform: translateY(-3px);
}
.owner-card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
.owner-card-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  line-height: 1.45;
}

/* ── CTA button ── */
.owner-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c8972a;
  color: #1a4a2e;
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: all 0.25s;
  box-shadow: 0 8px 28px rgba(200,151,42,0.45);
}
.owner-hero-btn:hover {
  background: #f0c84a;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200,151,42,0.6);
  color: #1a4a2e;
}

/* ── RIGHT side: photo ── */
.owner-hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.owner-hero-photo-wrap {
  position: relative;
  width: 380px;
}

.owner-hero-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px 24px 0 0;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
}

.owner-hero-name-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c8972a, #f0c84a);
  color: #1a4a2e;
  padding: 12px 28px;
  border-radius: 50px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(200,151,42,0.5);
  border: 3px solid rgba(255,255,255,0.4);
}
.onb-name {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}
.onb-role {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.8;
  margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .owner-cards-row { grid-template-columns: repeat(2, 1fr); }
  .owner-hero-photo { height: 400px; }
  .owner-hero-photo-wrap { width: 320px; }
}
@media (max-width: 768px) {
  .owner-hero-inner {
    grid-template-columns: 1fr;
    padding: 50px 5% 0;
    gap: 30px;
  }
  .owner-hero-right { justify-content: center; }
  .owner-hero-photo-wrap { width: 280px; }
  .owner-hero-photo { height: 340px; }
  .owner-cards-row { grid-template-columns: repeat(2, 1fr); }
  .owner-hero-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .owner-cards-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .owner-hero-photo-wrap { width: 240px; }
  .owner-hero-photo { height: 300px; }
}

/* Owner section responsive fix */
@media (max-width: 768px) {
  .owner-circle-wrap {
    width: 300px !important;
    height: 300px !important;
  }
}
