/* ===== CSS Variables & Color Palette ===== */
:root {
  --primary: #5b1e24;
  --secondary: #3b2a23;
  --accent: #c8a27a;
  --light: #f7f3ee;
  --gold: #d4af37;
  --text: #2c2c2c;
  --border: #e8e8e8;
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
}

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

/* ===== Typography ===== */
h1,
h2,
h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1,
h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary);
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--light);
}

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(91, 30, 36, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* ===== Navigation ===== */
.navbar {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 80px; */
}

.logo {
  width: 120px;
  height: 120px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  height: 455px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.slider-slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(91, 30, 36, 0.85) 0%,
    rgba(59, 42, 35, 0.85) 100%
  );
}

.slider-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 0.8s ease-out;
}

.slider-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.slider-subtitle {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.slider-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Slider Navigation Arrows ===== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(196, 160, 122, 0.8);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.slider-arrow:hover {
  background-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 2rem;
}

.slider-next {
  right: 2rem;
}

/* ===== Slider Indicators ===== */
.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 4;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--accent);
  transform: scale(1.3);
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== What We Do Section ===== */
.what-we-do {
  padding: 5rem 0;
  background-color: var(--light);
}

.what-we-do h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-showcase-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  border-top: 5px solid var(--primary);
}

.service-showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(91, 30, 36, 0.18);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-showcase-card h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-showcase-card p {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-list {
  list-style: none;
  margin: 1.5rem 0;
}

.service-list li {
  color: var(--text);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-list li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  color: var(--light);
}

.stat-numbers {
  font-size: 3.5rem;
  font-weight: 700;
  color: #c8a27a;
  margin-bottom: 0.5rem;
}

.stat-labels {
  font-size: 1.1rem;
  color: #f7f3ee;
}

/* ===== Guarantee Section ===== */
.guarantee-section {
  padding: 5rem 0;
  background-color: white;
}

.guarantee-section h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.guarantee-section > .container > .section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Guarantee Filter Tabs ===== */
.guarantee-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.guarantee-filter .filter-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--light);
  color: var(--text);
  border: 2px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.guarantee-filter .filter-btn:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.guarantee-filter .filter-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== Guarantee Grid ===== */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.guarantee-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
  opacity: 1;
  display: block;
}

.guarantee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.guarantee-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #e8e8e8;
}

.guarantee-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.guarantee-card:hover .guarantee-card-image img {
  transform: scale(1.08);
}

.guarantee-card-content {
  padding: 2rem;
}

.guarantee-card-content h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.guarantee-card-content p {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.guarantee-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guarantee-features li {
  color: var(--text);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.guarantee-features li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ===== Heritage Section ===== */
.heritage-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light) 0%, #f9f5f0 100%);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.heritage-year {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.heritage-content h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.heritage-content p {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.heritage-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  background-color: white;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.value-item h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin: 0;
}

.heritage-quote {
  background-color: white;
  padding: 2.5rem;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  grid-column: 1 / -1;
  text-align: center;
}

.heritage-quote p {
  font-size: 1.3rem;
  color: var(--primary);
  font-style: italic;
  margin: 0;
}

.quote-author {
  font-weight: 600;
  font-style: normal;
  color: var(--secondary);
  margin-top: 1rem !important;
}

/* ===== Gallery Preview Section ===== */
.gallery-preview {
  padding: 5rem 0;
  background-color: white;
}

.gallery-preview h2 {
  color: var(--primary);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.gallery-preview-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.gallery-preview-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-preview-item:hover img {
  transform: scale(1.08);
}

/* ===== CTA Final Section ===== */
.cta-final {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  color: var(--light);
}

.cta-final h2 {
  color: var(--light);
  margin-bottom: 1.5rem;
}

.cta-final > p {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.store-hours {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--accent);
}

/* ===== Footer ===== */
/* ===== Footer ===== */
footer {
  background-color: var(--secondary);
  color: var(--light);
  padding: 3rem 1rem;
  text-align: center;
}

footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

footer p {
  color: var(--light);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.social-links a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--light);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  footer {
    padding: 2.5rem 1rem;
  }

  footer p {
    font-size: 14px;
  }

  .social-links {
    flex-direction: column;
    gap: 12px;
  }

  .social-links a {
    font-size: 15px;
  }
}
/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  header {
    padding: 1rem 0;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-slider {
    height: 140px;
  }

  .slider-title {
    font-size: 2rem;
  }

  .slider-subtitle {
    font-size: 1.2rem;
  }

  .slider-arrow {
    padding: 0.75rem 1rem;
    font-size: 1.5rem;
  }

  .slider-prev {
    left: 1rem;
  }

  .slider-next {
    right: 1rem;
  }

  .slider-indicators {
    bottom: 1.5rem;
    gap: 0.5rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero {
    height: 400px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .heritage-grid {
    grid-template-columns: 1fr;
  }

  .heritage-values {
    grid-template-columns: 1fr;
  }

  .value-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview-item {
    height: 300px;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-filter {
    gap: 0.75rem;
  }

  .guarantee-filter .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .guarantee-card-image {
    height: 200px;
  }

  .guarantee-card-content {
    padding: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .nav-container {
    height: 70px;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-intro {
    font-size: 1rem;
  }

  .service-showcase-card {
    padding: 1.5rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .heritage-year {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .gallery-preview-grid {
    gap: 1.5rem;
  }

  .gallery-preview-item {
    height: 250px;
  }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Page Hero */
/* .page-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
} */

/* .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 30, 36, 0.85) 0%, rgba(59, 42, 35, 0.85) 100%);
} */

/* .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
} */

.hero-year {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: white;
  max-width: 900px;
}

/* Story Section */
.story-section {
  padding: 5rem 0;
  background-color: white;
}

.story-section h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-content p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.story-content .btn {
  display: inline-block;
  margin-top: 1.5rem;
}

/* Quote Section */
.quote-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  color: white;
}

.quote-section blockquote {
  max-width: 800px;
  margin: 0 auto;
}

.quote-section blockquote p {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: white;
}

.quote-section blockquote footer {
  font-size: 1.2rem;
  color: var(--accent);
  font-style: normal;
}

/* What We Do Section */
.what-we-do-section {
  padding: 5rem 0;
  background-color: var(--light);
}

.what-we-do-section h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  line-height: 1.4;
}

.what-we-do-section .section-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--text);
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 0;
  background-color: white;
}

.why-choose-section h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.why-choose-section .section-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 3rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.reason-card {
  padding: 2rem;
  background-color: var(--light);
  border-radius: 8px;
  border-left: 5px solid var(--accent);
  transition: all 0.3s ease;
}

.reason-card:hover {
  background-color: #ede8e3;
  transform: translateX(10px);
}

.reason-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.reason-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.reason-card p {
  color: var(--text);
  line-height: 1.6;
}

/* Game Processing Section */
.game-processing-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light) 0%, #f9f5f0 100%);
}

.game-processing-section h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.game-processing-section .section-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.processing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.processing-item {
  background-color: white;
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.processing-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background-color: var(--light);
}

/* Final Promise Section */
.promise-section {
  padding: 4rem 0;
  background-color: white;
  text-align: center;
}

.final-quote {
  max-width: 800px;
  margin: 0 auto;
}

.final-quote p {
  font-size: 2.2rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.final-quote footer {
  font-size: 1.1rem;
  color: var(--secondary);
  font-style: normal;
}

/* Responsive About Page */
@media (max-width: 768px) {
  .page-hero {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-year {
    font-size: 1rem;
  }

  .story-section h2 {
    font-size: 1.8rem;
  }

  .story-content p {
    text-align: left;
    font-size: 1rem;
  }

  .quote-section blockquote p {
    font-size: 1.4rem;
  }

  .what-we-do-section h2 {
    font-size: 1.6rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-section h2 {
    font-size: 1.8rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    border-left: 5px solid var(--accent);
  }

  .game-processing-section h2 {
    font-size: 1.8rem;
  }

  .processing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-quote p {
    font-size: 1.6rem;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-wrapper h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.address-block {
  margin-bottom: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: 6px;
}

.address-block p {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--accent);
}

.hours-list p {
  color: var(--text);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.intro-text {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-style: italic;
}

.walk-ins {
  color: var(--secondary);
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.map-address {
  background-color: white;
  padding: 1.5rem;
  border-radius: 6px;
}

.map-address p {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.map-note {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
  margin-top: 1.5rem;
}

.btn-small {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
}

.btn-small:hover {
  background-color: var(--secondary);
}

/* Map Wrapper */
.map-wrapper {
  display: flex;
  flex-direction: column;
}

.map-wrapper h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Contact CTA */
.contact-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  color: white;
}

.contact-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-note {
  margin-top: 2rem !important;
  font-size: 1rem;
  color: var(--accent);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-wrapper {
    order: 2;
  }

  .contact-info-wrapper {
    order: 1;
  }

  .map-container {
    min-height: 350px;
  }

  .info-card {
    padding: 1.5rem;
  }

  .info-card h3 {
    font-size: 1.2rem;
  }

  .address-block {
    padding: 1rem;
  }

  .contact-cta h2 {
    font-size: 1.8rem;
  }

  .contact-cta p {
    font-size: 1rem;
  }

  .cta-note {
    font-size: 0.9rem;
  }
}
/* ===== MENU PAGE STYLES ===== */

/* Menu Hero Section */
.page-hero {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(91, 30, 36, 0.85) 0%,
    rgba(59, 42, 35, 0.85) 100%
  );
}

.page-hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 800;
}

.page-hero p {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-description {
  margin-top: 2rem;
}

.hero-description p {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Menu Section */
.menu-section {
  padding: 5rem 0;
  background-color: white;
}

.menu-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.menu-filter .filter-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--light);
  color: var(--text);
  border: 2px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.menu-filter .filter-btn:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.menu-filter .filter-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Section Headers */
.section-header {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--light) 0%, #f9f5f0 100%);
  border-left: 5px solid var(--primary);
  border-radius: 8px;
}

.section-header h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.section-header .note {
  font-style: italic;
  color: var(--secondary);
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* Menu Items */
.menu-item {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
  opacity: 1;
  display: block;
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.menu-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.menu-description {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.menu-price {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Final Section */
.final-section {
  padding: 5rem 0;
  background-color: white;
  text-align: center;
}

.final-section h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.final-section p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.final-section .highlight {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 1.5rem 0;
}

.btn-large {
  padding: 18px 45px !important;
  font-size: 1.1rem !important;
}

/* Responsive Menu Page */
@media (max-width: 768px) {
  .page-hero {
    height: 350px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 1.2rem;
  }

  .hero-description p {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .menu-filter {
    gap: 0.75rem;
  }

  .menu-filter .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-header {
    padding: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .final-section h2 {
    font-size: 1.8rem;
  }

  .final-section p {
    font-size: 1rem;
  }

  .final-section .highlight {
    font-size: 1.1rem;
  }
}
/* ===== MEAT-MARKET PAGE STYLES ===== */

/* Category Navigation */
.category-nav {
  padding: 2rem 0;
  background-color: white;
  border-bottom: 2px solid var(--light);
  position: sticky;
  top: 0;
  z-index: 10;
}

.categories {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cat-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.cat-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Content Sections */
.content-section {
  padding: 5rem 0;
  background-color: white;
}

.content-section.alternate {
  background-color: var(--light);
}

.content-section h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-intro {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.section-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.subsection {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-section.alternate .subsection {
  background-color: white;
}

.subsection h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.subsection.full {
  grid-column: 1 / -1;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list li {
  color: var(--text);
  padding: 0.7rem 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 1rem;
}

.product-list li:last-child {
  border-bottom: none;
}

.product-block {
  margin-bottom: 1.5rem;
}

.product-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.sub-list {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0;
}

.sub-list li {
  color: var(--text);
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.product-item {
  color: var(--primary);
  font-weight: 600;
  padding: 0.7rem 0;
}

.inline-cta {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.inline-cta:hover {
  background-color: var(--primary);
  color: white;
}

/* Exotic Grid */
.exotic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.exotic-item {
  background-color: white;
  padding: 1.8rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.exotic-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.exotic-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.exotic-item p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.availability-note {
  color: var(--secondary);
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 2rem;
}

/* Final Section with Alternate Background */
.final-section.alternate {
  background-color: var(--light);
  padding: 5rem 0;
  text-align: center;
}

.final-section.alternate h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.final-section.alternate p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.final-section.alternate .highlight {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 1.5rem 0;
}

/* Responsive Meat Market Page */
@media (max-width: 768px) {
  .categories {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .cat-link {
    font-size: 0.85rem;
    padding: 0.4rem 0;
  }

  .content-section {
    padding: 3rem 0;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

  .section-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .subsection {
    padding: 1.5rem;
  }

  .subsection h3 {
    font-size: 1.2rem;
  }

  .exotic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .exotic-item {
    padding: 1.2rem;
  }

  .exotic-item h3 {
    font-size: 1.1rem;
  }

  .final-section.alternate h2 {
    font-size: 1.8rem;
  }

  .final-section.alternate p {
    font-size: 1rem;
  }

  .final-section.alternate .highlight {
    font-size: 1.1rem;
  }
}
/* ===== CATERING PAGE STYLES ===== */

/* Catering Stats Section */
.catering-stats {
  background-color: var(--light);
  padding: 4rem 0;
}

.catering-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.catering-stats .stat-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary);
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

/* Catering Section */
.catering-section {
  padding: 5rem 0;
  background-color: white;
}

.catering-section.alternate {
  background-color: var(--light);
}

.catering-section h2 {
  color: var(--primary);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-intro {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

/* Catering Grid */
.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.catering-item {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.catering-section.alternate .catering-item {
  background-color: white;
}

.catering-item h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.catering-item p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

/* Occasion Grid */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.occasion-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.catering-section.alternate .occasion-card {
  background-color: #f9f9f9;
}

.occasion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.occasion-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.occasion-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

/* Highlight Section */
.highlight-section {
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.catering-section.alternate .highlight-section {
  background-color: #f9f9f9;
}

.highlight-section h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.highlight-section p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

/* Turkey Grid */
.turkey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.turkey-card {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary);
  position: relative;
}

.turkey-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.turkey-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.turkey-badge {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Holiday Note */
.holiday-note {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 5px solid var(--accent);
  margin-top: 2rem;
}

.holiday-note p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.reason-item {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary);
}

.catering-section.alternate .reason-item {
  background-color: #f9f9f9;
}

.reason-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.reason-item p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  color: white;
}

.final-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.final-cta p {
  color: var(--light);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  margin-bottom: 2rem;
}

.btn-large {
  padding: 18px 45px !important;
  font-size: 1.1rem !important;
}

.cta-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.cta-links a:hover {
  color: var(--accent);
}

.separator {
  color: var(--light);
  opacity: 0.5;
}

/* Responsive Catering Page */
@media (max-width: 768px) {
  .catering-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }

  .stat-card .stat-label {
    font-size: 0.85rem;
  }

  .catering-section {
    padding: 3rem 0;
  }

  .catering-section h2 {
    font-size: 1.6rem;
  }

  .section-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .catering-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .occasion-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .turkey-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .highlight-section {
    padding: 1.5rem;
  }

  .holiday-note {
    padding: 1.5rem;
  }

  .final-cta {
    padding: 3rem 0;
  }

  .final-cta h2 {
    font-size: 1.8rem;
  }

  .final-cta p {
    font-size: 1rem;
  }

  .cta-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .cta-links a {
    font-size: 0.9rem;
  }
}
/* ===== MEAT PROCESSING PAGE STYLES ===== */

/* Processing Stats Section */
.processing-stats {
  background-color: var(--light);
  padding: 4rem 0;
}

.processing-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.processing-stats .stat-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary);
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

/* Wild Game Processing Section */
.processing-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
}

.processing-section h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
}

/* Processing Content */
.processing-content {
  padding: 5rem 0;
  background-color: white;
}

.processing-content.alternate {
  background-color: var(--light);
}

.processing-content h2 {
  color: var(--primary);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.subsection-title {
  color: var(--primary);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.section-intro {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.important-note {
  color: var(--secondary);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f9f5f0;
  border-left: 4px solid var(--secondary);
  border-radius: 4px;
}

/* Pricing Boxes */
.pricing-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.price-box {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  border-top: 4px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.processing-content.alternate .price-box {
  background-color: white;
}

.price-box h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price-box .price {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.price-box p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

/* Pricing Table */
.pricing-table-wrapper {
  margin-bottom: 3rem;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.processing-content.alternate .pricing-table-wrapper {
  background-color: #f9f9f9;
}

.table-title {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.pricing-table thead {
  background-color: var(--light);
}

.pricing-table th {
  color: var(--primary);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
}

.pricing-table td {
  color: var(--text);
  padding: 1rem;
  border-bottom: 1px solid #e8e8e8;
}

.pricing-table tr:hover {
  background-color: var(--light);
}

.pricing-table .table-section {
  background-color: var(--light);
}

.pricing-table .table-section td {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
}

.table-note {
  color: var(--secondary);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.reason-item {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.why-section .reason-item {
  background-color: #f9f9f9;
}

.reason-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.reason-item p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

/* Why Section */
.why-section {
  padding: 5rem 0;
  background-color: white;
}

.why-section h2 {
  color: var(--primary);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* Processing CTA Section */
.processing-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  color: white;
}

.processing-cta h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.processing-cta h3 {
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.processing-cta p {
  color: var(--light);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.processing-cta .cta-links {
  margin-top: 2rem;
  font-size: 1.05rem;
}

.processing-cta .cta-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.processing-cta .cta-links a:hover {
  color: var(--light);
}

/* Responsive Meat Processing Page */
@media (max-width: 768px) {
  .processing-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }

  .stat-card .stat-label {
    font-size: 0.85rem;
  }

  .processing-section h2 {
    font-size: 1.4rem;
  }

  .processing-content {
    padding: 3rem 0;
  }

  .processing-content h2 {
    font-size: 1.6rem;
  }

  .subsection-title {
    font-size: 1.2rem;
  }

  .section-intro {
    font-size: 0.95rem;
  }

  .pricing-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-table-wrapper {
    padding: 1.5rem;
    overflow-x: auto;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-section h2 {
    font-size: 1.6rem;
  }

  .processing-cta {
    padding: 3rem 0;
  }

  .processing-cta h2 {
    font-size: 1.6rem;
  }

  .processing-cta h3 {
    font-size: 1.2rem;
  }

  .processing-cta p {
    font-size: 1rem;
  }

  .processing-cta .cta-links {
    font-size: 0.9rem;
  }
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */

/* Privacy Section */
.privacy-section {
  padding: 5rem 0;
  background-color: white;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--light);
}

.policy-header p {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.policy-header strong {
  color: var(--primary);
}

.policy-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  background-color: var(--light);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary);
}

.policy-intro p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.policy-intro p:last-child {
  margin-bottom: 0;
}

/* Policy Sections */
.policy-section {
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.policy-section h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light);
}

.subsection {
  margin-bottom: 2rem;
}

.subsection h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.subsection p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-list {
  list-style-position: inside;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-list li {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
}

.policy-list li strong {
  color: var(--primary);
}

.policy-section p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.policy-section p strong {
  color: var(--primary);
  font-weight: 600;
}

/* Wi-Fi Notice Box */
.wifi-notice {
  background-color: #fff3cd;
  padding: 2rem;
  border-radius: 8px;
  border-left: 5px solid var(--secondary);
  margin-bottom: 2rem;
}

.wifi-notice h2 {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.wifi-notice p {
  color: var(--text);
}

/* Contact Info Box */
.contact-info-box {
  background-color: var(--light);
  padding: 3rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary);
  max-width: 900px;
  margin: 3rem auto 0;
}

.contact-info-box h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-info-box p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.detail-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.detail-item strong {
  color: var(--primary);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.detail-item p {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0;
}

.detail-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.detail-item a:hover {
  color: var(--accent);
}

/* Responsive Privacy Policy Page */
@media (max-width: 768px) {
  .privacy-section {
    padding: 2rem 0;
  }

  .policy-intro {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .policy-intro p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .policy-section {
    margin-bottom: 2rem;
  }

  .policy-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .subsection h3 {
    font-size: 1.1rem;
  }

  .subsection p {
    font-size: 0.95rem;
  }

  .policy-list {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-left: 1.5rem;
  }

  .policy-list li {
    margin-bottom: 0.6rem;
  }

  .policy-section p {
    font-size: 0.95rem;
  }

  .wifi-notice {
    padding: 1.5rem;
  }

  .wifi-notice h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .contact-info-box {
    padding: 1.5rem;
    margin: 2rem auto 0;
  }

  .contact-info-box h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .contact-info-box p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .contact-details {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .detail-item {
    padding: 1rem;
  }

  .detail-item strong {
    font-size: 0.9rem;
  }

  .detail-item p {
    font-size: 0.85rem;
  }
}
/* ===== TERMS AND CONDITIONS PAGE STYLES ===== */

/* Terms Section */
.terms-section {
  padding: 5rem 0;
  background-color: white;
}

.terms-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--light);
}

.terms-header p {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.terms-header strong {
  color: var(--primary);
}

.terms-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  background-color: var(--light);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary);
}

.terms-intro p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.terms-intro p:last-child {
  margin-bottom: 0;
}

/* Terms Section Content */
.terms-section-content {
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.terms-section-content h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light);
}

.terms-section-content p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.terms-section-content p strong {
  color: var(--primary);
  font-weight: 600;
}

.terms-list {
  list-style-position: inside;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.terms-list li {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
}

.terms-list li strong {
  color: var(--primary);
}

/* Business Info */
.business-info {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.business-info p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.business-info p:first-child {
  font-weight: 600;
  color: var(--primary);
}

/* Contact Info Box */
.contact-info-box {
  background-color: var(--light);
  padding: 3rem;
  border-radius: 8px;
  border-left: 5px solid var(--primary);
  max-width: 900px;
  margin: 3rem auto 0;
}

.contact-info-box h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-info-box p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.detail-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.detail-item strong {
  color: var(--primary);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.detail-item p {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0;
}

.detail-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.detail-item a:hover {
  color: var(--accent);
}

/* Responsive Terms and Conditions Page */
@media (max-width: 768px) {
  .terms-section {
    padding: 2rem 0;
  }

  .terms-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .terms-header p {
    font-size: 0.95rem;
  }

  .terms-intro {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .terms-intro p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .terms-section-content {
    margin-bottom: 2rem;
  }

  .terms-section-content h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .terms-section-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .terms-list {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-left: 1.5rem;
  }

  .terms-list li {
    margin-bottom: 0.6rem;
  }

  .business-info {
    padding: 1.5rem;
  }

  .business-info p {
    font-size: 0.95rem;
  }

  .contact-info-box {
    padding: 1.5rem;
    margin: 2rem auto 0;
  }

  .contact-info-box h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .contact-info-box p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .contact-details {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .detail-item {
    padding: 1rem;
  }

  .detail-item strong {
    font-size: 0.9rem;
  }

  .detail-item p {
    font-size: 0.85rem;
  }
}
