/* =========================
   BeldiFarm - styles.css
   ========================= */

:root{
  --bg: #0f172a;
  --card: #0b1220;
  --text: #0b1220;
  --muted: #475569;
  --white: #ffffff;
  --soft: #f7f7f2;

  --green: #1f7a3a;
  --green2:#2ea44f;
  --green3:#0e5a28;

  --border: rgba(15, 23, 42, .12);
  --shadow: 0 14px 40px rgba(2, 6, 23, .12);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: linear-gradient(180deg, #f3f7f2 0%, #ffffff 40%, #f6f2ea 100%);
  color: var(--text);
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 180px;
}
.brand img{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(2,6,23,.10);
}
.brand .name{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand .name strong{
  font-size: 16px;
  letter-spacing:.2px;
}
.brand .name span{
  font-size: 12px;
  color: var(--muted);
}

/* Menu */
.menu{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
  justify-content:center;
}
.menu a{
  font-size: 14px;
  color: #0f172a;
  padding: 8px 10px;
  border-radius: 12px;
}
.menu a:hover{
  background: rgba(46,164,79,.10);
}

/* CTA */
.cta{
  display:flex;
  align-items:center;
  gap: 10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
  font-weight: 700;
  font-size: 14px;
  transition: transform .08s ease, box-shadow .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(2,6,23,.12);
}
.btn.primary{
  background: linear-gradient(135deg, var(--green2), var(--green));
  color: white;
  border-color: rgba(0,0,0,.08);
}
.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(46,164,79,.12);
  color: var(--green3);
  border: 1px solid rgba(46,164,79,.18);
  white-space:nowrap;
}

/* Hero */
.hero{
  padding: 34px 0 14px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: stretch;
}

.heroCard{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.08);
  background: linear-gradient(135deg, #ffffff, #f6fff8);
}

.heroInner{
  padding: 26px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.kicker{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}
.kicker .pill{
  background: rgba(31,122,58,.10);
  color: var(--green3);
  border: 1px solid rgba(31,122,58,.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
h1{
  margin:0;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -.4px;
}
.sub{
  margin:0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.heroActions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 6px;
}

.heroMini{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.miniTitle{
  font-weight: 900;
  font-size: 16px;
}
.miniList{
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  line-height:1.8;
  font-size: 14px;
}
.miniBox{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* Sections */
.section{
  padding: 26px 0;
}
.sectionTitle{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.sectionTitle h2{
  margin:0;
  font-size: 22px;
  letter-spacing:-.2px;
}
.sectionTitle p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

/* Cards grid */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.card .thumb{
  height: 155px;
  background:
    radial-gradient(600px 180px at 20% 0%, rgba(46,164,79,.20), transparent 50%),
    linear-gradient(135deg, #ffffff, #f3fff6);
  border-bottom: 1px solid rgba(15,23,42,.06);
  position: relative;
}
.card .thumb .emoji{
  position:absolute;
  inset:auto 16px 14px auto;
  font-size: 44px;
  opacity:.95;
}
.card .content{
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.card h3{
  margin:0;
  font-size: 18px;
}
.card ul{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.card .price{
  margin-top: 2px;
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  align-items:center;
}
.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.08);
  color: #0f172a;
}
.tag.green{
  background: rgba(46,164,79,.12);
  border-color: rgba(46,164,79,.18);
  color: var(--green3);
}
.small{
  color: var(--muted);
  font-size: 13px;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.step{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  gap: 12px;
}
.step .num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(46,164,79,.14);
  border: 1px solid rgba(46,164,79,.20);
  color: var(--green3);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}
.step h4{
  margin:0 0 6px;
  font-size: 16px;
}
.step p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  line-height:1.6;
}

/* Testimonials */
.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.quote{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  padding: 16px;
}
.quote .who{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: 10px;
}
.avatar{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}

/* Footer */
.footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.55);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}
.footer p{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height:1.7;
}
.footerLinks{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.footerLinks a{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  font-weight: 800;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px){
  .heroGrid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .testimonials{ grid-template-columns: 1fr; }
  .menu{ display:none; }
}
/* =========================
   Images (placeholders)
   ========================= */
.heroMedia{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 260px;
}
.heroMedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.thumb img{
  width: 100%;
  height: 155px;
  object-fit: cover;
  display:block;
}
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.galleryItem{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.galleryItem img{
  width:100%;
  height: 170px;
  object-fit: cover;
  display:block;
}
@media (max-width: 900px){
  .gallery{ grid-template-columns: 1fr 1fr; }
}
/* =========================
   Forms
   ========================= */
.formCard{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  padding: 16px;
}
.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{
  display:flex;
  flex-direction:column;
  gap: 6px;
}
label{
  font-size: 13px;
  color: #0f172a;
  font-weight: 800;
}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  background: #fff;
  outline: none;
  font-size: 14px;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(46,164,79,.55);
  box-shadow: 0 0 0 4px rgba(46,164,79,.15);
}
textarea{ min-height: 120px; resize: vertical; }

.formActions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 12px;
}
.notice{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height:1.7;
}
.full{ grid-column: 1 / -1; }

@media (max-width: 900px){
  .formGrid{ grid-template-columns: 1fr; }
}
/* =========================
   Mobile menu
   ========================= */
.menuToggle{
  display:none;
}

@media (max-width: 900px){
  .menuToggle{
    display:inline-flex;
  }
  .menu.open{
    display:flex !important;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow);
    margin-top: 10px;
  }
  .nav{
    flex-wrap: wrap;
  }
  .cta{
    margin-left: auto;
  }
}

/* =========================
   Page content blocks
   ========================= */
.twoCols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.block{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  padding: 16px;
}
.block h3{ margin: 0 0 8px; font-size: 18px; }
.block p{ margin: 0; color: var(--muted); line-height:1.7; }
.block ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.faq{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
details{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.9);
  padding: 12px 14px;
}
summary{
  cursor:pointer;
  font-weight: 900;
}
details p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px){
  .twoCols{ grid-template-columns: 1fr; }
}
/* =========================
   Prices
   ========================= */
.priceBox{
  margin: 10px 0 14px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #f6fff8;
  border: 1px solid rgba(46,164,79,.25);
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}
.priceMain{
  font-size: 20px;
  font-weight: 900;
  color: #0e5a28;
}
.priceUnit{
  font-size: 13px;
  color: #475569;
}

/* =========================
   Stars (ratings)
   ========================= */
.stars{
  display: inline-flex;
  gap: 2px;
  line-height: 1;
  margin: 6px 0 8px;
  font-size: 16px;
}
.stars span{
  color: #f59e0b; /* amber */
}
.reviewHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-top: 8px;
}
.reviewName{
  display:flex;
  align-items:center;
  gap: 10px;
}
.reviewAvatar{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}

.price-section{
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  margin:40px 0;
}
.price-header{
  text-align:center;
  margin-bottom:20px;
}
.price-logo{
  height:60px;
  margin-bottom:10px;
}
.price-table{
  width:100%;
  border-collapse:collapse;
  font-size:15px;
}
.price-table th,
.price-table td{
  padding:14px;
  border-bottom:1px solid #eee;
}
.price-table th{
  background:#f8fafc;
  font-weight:700;
}
.note{
  margin-top:15px;
  font-size:14px;
  color:#555;
}

