/* =========================
   NEV — CHICKEN FARM THEME
   Orange + near-black gray
   MATCHES CURRENT index.html
   ========================= */

:root {
  --bg: #0b0d10; /* near-black */
  --bg2: #10151b;
  --card: #141a22;
  --card2: #0f1319;

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --muted2: rgba(255, 255, 255, 0.58);

  --line: rgba(255, 255, 255, 0.10);
  --line2: rgba(255, 255, 255, 0.14);

  --orange: #ff7a18;
  --orange2: #ff9a3c;
  --orangeGlow: rgba(255, 122, 24, 0.28);

  --radius: 14px;
  --radius2: 18px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(800px 420px at 10% -10%, rgba(255,122,24,0.22), transparent 60%),
    radial-gradient(700px 360px at 100% 0%, rgba(255,154,60,0.14), transparent 55%),
    radial-gradient(900px 520px at 40% 120%, rgba(255,122,24,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.06) 0px,
      rgba(255,255,255,0.06) 1px,
      transparent 1px,
      transparent 12px
    );
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= TOPBAR ================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 16, 0.62);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.topbar-link { display: inline-flex; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  transition: transform 0.2s, background 0.2s;
}

.chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 122, 24, 0.10);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.12);
}

.mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

/* ================= HERO ================= */

.hero {
  padding: 42px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.brandline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.brand-badge {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.14);
  border: 1px solid rgba(255, 122, 24, 0.25);
  text-transform: uppercase;
}

.brand-sub {
  font-size: 13px;
  color: var(--muted);
}

.hero-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 60ch;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.hero-card-ic {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 24, 0.14);
  border: 1px solid rgba(255, 122, 24, 0.28);
  color: var(--orange2);
  flex: 0 0 auto;
}

.hero-card-h { font-weight: 900; margin-bottom: 2px; }
.hero-card-p { color: var(--muted); font-size: 14px; line-height: 1.4; }

.hero-right { display: flex; }
.hero-photo {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--card);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,13,16,0.12) 0%, rgba(11,13,16,0.80) 92%);
}

.hero-photo-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(11, 13, 16, 0.55);
  backdrop-filter: blur(10px);
}

.overlay-title { font-weight: 900; }
.overlay-sub { margin-top: 4px; color: var(--muted); font-size: 13px; }

/* Divider */
.divider { padding: 22px 0 6px; }

.divider-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.divider-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 13px;
}

/* ================= HIGHLIGHT ================= */

.highlight {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(255,122,24,0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  padding: 52px 0;
}

.highlight-inner { text-align: center; }

.highlight-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.highlight-text {
  color: var(--muted);
  line-height: 1.85;
  max-width: 980px;
  margin: 0 auto;
  font-size: 15px;
}

/* ================= MAIN / CARDS ================= */

.main { padding: 44px 0 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(700px 260px at 15% 0%, rgba(255,122,24,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-form { padding: 26px; }
.card-head { margin-bottom: 14px; }

.section-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.muted { color: var(--muted); line-height: 1.85; font-size: 14.5px; }

.form { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-weight: 900;
  color: var(--orange2);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  padding: 13px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(11,13,16,0.55);
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.45); }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255,122,24,0.55);
  box-shadow: 0 0 0 6px rgba(255,122,24,0.14);
  transform: translateY(-1px);
}

.field textarea { resize: vertical; min-height: 120px; }

.btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #121212;
  box-shadow: 0 16px 30px rgba(255,122,24,0.20);
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 34px rgba(255,122,24,0.26);
}

.fineprint {
  margin-top: 10px;
  color: var(--muted2);
  font-size: 12px;
}

/* right image card */
.card-media { padding: 0; position: sticky; top: 86px; }
.media img {
  width: 100%;
  height: auto;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

/* ================= INFO STACK ================= */

.stack { margin-top: 34px; display: grid; gap: 18px; }

.info {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(700px 240px at 15% 0%, rgba(255,122,24,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.info-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.info-img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.info-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.info-body { padding: 8px 10px; }

.info-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.info-subtitle {
  color: var(--orange2);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.info-body p { color: var(--muted); line-height: 1.85; }

/* ================= GALLERY ================= */

.gallery {
  margin-top: 40px;
  padding: 34px 0 56px;
  border-top: 1px solid var(--line);
}

.gallery-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: saturate(1.05) contrast(1.05);
}

.gallery-grid img:hover { transform: scale(1.04); }

/* ================= FOOTER ================= */

.footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(900px 360px at 10% 0%, rgba(255,122,24,0.12), transparent 60%),
    linear-gradient(180deg, rgba(10,12,15,0.92), rgba(7,9,12,0.96));
  padding: 54px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.footer-logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-desc {
  color: var(--muted);
  line-height: 1.85;
  font-size: 14px;
}

.footer-head {
  color: var(--orange2);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.partners {
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted2);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: var(--muted2);
  transition: color 0.2s, transform 0.2s;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

/* ================= PARTNER BADGES (NEW) ================= */

.partner-badges {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s;
}

.badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255,122,24,0.35);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .card-media { position: static; top: auto; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .info { grid-template-columns: 1fr; }
  .info-reverse { grid-template-columns: 1fr; }
  .info-img img { min-height: 260px; }
  .media img { min-height: 320px; }
}
