/* ===================== INNER PAGES GLOBAL ===================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 5%;
}

.inner-page-section {
  padding: 5rem 0;
}
.inner-page-section.alt-bg {
  background: var(--green-50);
}

/* About Image Styles */
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.inner-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.inner-page-grid.reverse {
  grid-template-columns: 1fr 1.2fr;
}
.inner-page-grid.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.inner-page-grid.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Card Showcase */
.animal-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 26, 15, 0.03);
  border: 1px solid rgba(200, 234, 208, 0.3);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.animal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 26, 15, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
}
.animal-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.animal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animal-card:hover .animal-img-wrap img {
  transform: scale(1.08);
}
.animal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  text-transform: uppercase;
}
.animal-badge.available {
  background: var(--green-500);
  color: var(--white);
}
.animal-badge.reserved {
  background: var(--gold);
  color: var(--green-950);
}
.animal-badge.elite {
  background: var(--green-950);
  color: var(--gold);
}
.animal-badge.sold {
  background: var(--text-muted);
  color: var(--white);
}
.animal-tag-id {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(10, 26, 15, 0.7);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
}
.animal-details {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.animal-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-950);
  margin-bottom: 0.25rem;
}
.animal-lineage {
  font-size: 0.8rem;
  color: var(--green-500);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.animal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--green-50);
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.meta-value {
  font-size: 0.88rem;
  color: var(--green-900);
  font-weight: 600;
}
.animal-action {
  margin-top: auto;
  display: block;
  text-align: center;
  background: var(--green-50);
  color: var(--green-950);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem;
  transition:
    background var(--transition),
    color var(--transition);
}
.animal-card:hover .animal-action {
  background: var(--gold);
  color: var(--green-950);
}

/* Info Blocks */
.info-heading-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.info-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green-950);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.info-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.info-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-bullets li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-body);
}
.info-bullets li i {
  color: var(--green-500);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}
.info-bullets h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-950);
  margin-bottom: 0.25rem;
}
.info-bullets p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* Feed Page Styles */
.feed-card-premium {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 26, 15, 0.03);
  border: 1px solid rgba(200, 234, 208, 0.3);
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  min-height: 380px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  margin-bottom: 3rem;
}
.feed-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 26, 15, 0.08);
}
.feed-card-premium:last-child {
  margin-bottom: 0;
}
.feed-img-wrap {
  position: relative;
}
.feed-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feed-card-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feed-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-950);
  margin-bottom: 1rem;
}
.feed-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.nutritional-info {
  background: var(--green-50);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.nutritional-info h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--green-700);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.nutritional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.nutri-item {
  display: flex;
  flex-direction: column;
}
.nutri-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.nutri-value {
  font-size: 1.1rem;
  color: var(--green-950);
  font-weight: 700;
}

/* Spec Tables */
.spec-table-container {
  overflow-x: auto;
  border: 1px solid rgba(200, 234, 208, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--white);
}
.spec-table th {
  background: var(--green-950);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.25rem 1.5rem;
}
.spec-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--green-50);
  font-size: 0.9rem;
  color: var(--text-body);
}
.spec-table tr:last-child td {
  border-bottom: none;
}
.spec-table tr:nth-child(even) td {
  background: var(--green-50);
}

/* Buy Page Form & Steps */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 5rem;
  border: 1px solid rgba(200, 234, 208, 0.3);
}
.step-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(200, 234, 208, 0.3);
}
.step-card:last-child {
  border-right: none;
}
.step-number {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--green-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-950);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.buy-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}
.buy-info-box {
  background: var(--green-950);
  color: var(--white);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.buy-info-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.buy-info-box p {
  color: var(--green-200);
  line-height: 1.7;
  font-size: 0.95rem;
}
.buy-features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.buy-features-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
}
.buy-features-list li i {
  color: var(--gold);
  font-size: 1.1rem;
}
.buy-contact-small {
  border-top: 1px solid var(--green-800);
  padding-top: 2rem;
  margin-top: 2rem;
}
.buy-contact-small a {
  color: var(--white);
  font-weight: 600;
  transition: color var(--transition);
}
.buy-contact-small a:hover {
  color: var(--gold);
}

/* Buy Inquiry Form */
.buy-form-container {
  background: var(--white);
  padding: 5rem;
  box-shadow: 0 10px 40px rgba(10, 26, 15, 0.05);
  border: 1px solid rgba(200, 234, 208, 0.3);
}
.buy-form-head {
  margin-bottom: 2.5rem;
}
.buy-form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-950);
  margin-bottom: 0.5rem;
}
.buy-form-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.buy-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.buy-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.buy-field.full {
  grid-column: span 2;
}
.buy-field label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-950);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.buy-field input,
.buy-field select,
.buy-field textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(20, 54, 30, 0.15);
  background: var(--green-50);
  color: var(--green-950);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.buy-field input:focus,
.buy-field select:focus,
.buy-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.buy-field textarea {
  min-height: 120px;
  resize: vertical;
}
.buy-submit-btn {
  grid-column: span 2;
  background: var(--gold);
  color: var(--green-950);
  border: none;
  padding: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  margin-top: 1rem;
}
.buy-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

/* ===================== RESPONSIVE STYLES ===================== */
@media (max-width: 1200px) {
  .inner-page-grid.three-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .inner-page-grid.four-col {
    grid-template-columns: repeat(3, 1fr);
  }
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .buy-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .inner-page-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  .inner-page-grid.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .feed-card-premium {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .feed-img-wrap {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .inner-page-grid.three-col,
  .inner-page-grid.four-col,
  .step-grid {
    grid-template-columns: 1fr;
  }
  .buy-form {
    grid-template-columns: 1fr;
  }
  .buy-field {
    grid-column: span 1 !important;
  }
  .buy-submit-btn {
    grid-column: span 1;
  }
  .buy-info-box,
  .buy-form-container {
    padding: 2.5rem 1.5rem;
  }
  .inner-page-section {
    padding: 3.5rem 0;
  }
  .container {
    padding: 0 1rem;
  }
}

/* ===================== SIRES PAGE EXCELLENCE REDESIGN ===================== */
.sires-genetics-section {
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, var(--green-50) 0%, var(--white) 60%);
}

.sires-genetics-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.sires-genetics-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sires-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 125, 69, 0.08);
  border: 1px solid rgba(45, 125, 69, 0.15);
  color: var(--green-700);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  margin-bottom: 1.25rem;
}

.sires-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--green-950);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.sires-title span {
  position: relative;
  display: inline-block;
  color: var(--green-700);
}

.sires-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: var(--gold-pale);
  z-index: -1;
  opacity: 0.7;
}

.sires-lead-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.sires-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sires-feature-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid rgba(200, 234, 208, 0.4);
  box-shadow: 0 4px 20px rgba(10, 26, 15, 0.02);
  transition: all var(--transition);
}

.sires-feature-card:hover {
  transform: translateY(-4px) translateX(6px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 12px 30px rgba(10, 26, 15, 0.06);
}

.sires-card-icon-wrap {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(45, 125, 69, 0.08);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition);
}

.sires-feature-card:hover .sires-card-icon-wrap {
  background: var(--gold);
  color: var(--green-950);
  transform: rotate(-8deg) scale(1.05);
}

.sires-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-950);
  margin-bottom: 0.35rem;
}

.sires-card-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Image Showcase styling */
.sires-image-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sires-image-bg-glow {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(45, 125, 69, 0.12) 0%, rgba(201, 168, 76, 0.04) 50%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.sires-image-frame {
  position: relative;
  z-index: 2;
  width: 85%;
  height: 85%;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 234, 208, 0.5);
  transition: all var(--transition-slow);
}

.sires-image-frame:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 70px rgba(10, 26, 15, 0.15);
}

.sires-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.sires-image-frame:hover .sires-main-image {
  transform: scale(1.03);
}

/* Floating Stats Cards */
.sires-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 234, 208, 0.8);
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(10, 26, 15, 0.08);
  transition: all var(--transition);
}

.sires-floating-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(10, 26, 15, 0.15);
  background: var(--white);
}

.sires-floating-card.top-left {
  top: 8%;
  left: -8%;
}

.sires-floating-card.bottom-right {
  bottom: 8%;
  right: -8%;
}

.floating-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--green-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.sires-floating-card.bottom-right .floating-card-icon {
  background: rgba(45, 125, 69, 0.12);
  color: var(--green-700);
}

.floating-card-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-950);
  line-height: 1.2;
}

.floating-card-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Responsive adjustments for redesigned section */
@media (max-width: 992px) {
  .sires-genetics-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .sires-image-showcase {
    aspect-ratio: auto;
    height: 450px;
  }
  
  .sires-image-frame {
    width: 80%;
    height: 100%;
  }
  
  .sires-floating-card.top-left {
    left: -4%;
  }
  
  .sires-floating-card.bottom-right {
    right: -4%;
  }
}

@media (max-width: 600px) {
  .sires-genetics-section {
    padding: 4.5rem 0;
  }
  
  .sires-image-showcase {
    height: 350px;
  }
  
  .sires-image-frame {
    width: 95%;
  }
  
  .sires-floating-card {
    padding: 0.75rem 1rem;
  }
  
  .sires-floating-card.top-left {
    top: 5%;
    left: 2%;
  }
  
  .sires-floating-card.bottom-right {
    bottom: 5%;
    right: 2%;
  }
  
  .sires-feature-card {
    gap: 1rem;
    padding: 1.25rem;
  }
}

/* ===================== VALUES SECTION ===================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.value-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  box-shadow: 0 4px 30px rgba(10, 26, 15, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(10, 26, 15, 0.12);
}

.value-icon {
  position: absolute;
  top: -1.75rem;
  left: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--green-500);
  color: var(--white);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(45, 125, 69, 0.3);
}

.value-icon.gold {
  background: var(--gold);
  color: var(--green-950);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.value-content {
  padding-top: 0.5rem;
}

.value-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-950);
  margin-bottom: 0.5rem;
}

.value-subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-500);
  margin-bottom: 1rem;
}

.value-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
