/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.main-header {
  background: #8B4513;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #FF8C00;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.anniversary-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #8B4513;
  color: #FF8C00;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title-main {
  display: block;
  font-size: 72px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.hero-title-sub {
  display: block;
  font-size: 48px;
  color: #FF8C00;
  font-weight: 700;
  margin-top: 10px;
}

.hero-features {
  list-style: none;
  margin: 30px 0;
}

.hero-features li {
  color: #fff;
  font-size: 16px;
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.hero-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF8C00;
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-light {
  background: #F5DEB3;
  color: #8B4513;
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-primary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-primary:hover {
  background: #fff;
  color: #8B4513;
}

.btn-green {
  background: #CD853F;
  color: #fff;
}

.btn-green:hover {
  background: #B8732F;
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  height: 500px;
}

.hero-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: #FF8C00;
  top: 50px;
  right: 0;
  transform: rotate(45deg);
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #D2691E;
  top: 0;
  right: 150px;
  transform: rotate(15deg);
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: #F5DEB3;
  bottom: 0;
  right: 100px;
  transform: rotate(-30deg);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: fadeIn 0.5s;
}

.hero-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-chicken {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 400px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(139, 69, 19, 0.7);
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: rgba(139, 69, 19, 0.9);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active,
.slider-dot:hover {
  background: #FF8C00;
  transform: scale(1.2);
}

/* Products Showcase */
.products-showcase {
  background: #8B4513;
  padding: 60px 0;
  position: relative;
}

.natural-badge {
  text-align: center;
  margin-bottom: 40px;
}

.natural-badge span {
  background: #fff;
  color: #CD853F;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  border: 3px solid #CD853F;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.showcase-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.showcase-item h3 {
  color: #fff;
  font-size: 18px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-label {
  color: #CD853F;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.about-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-left p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-right {
  position: relative;
}

.about-right img {
  width: 100%;
  border-radius: 10px;
}

.about-cta {
  background: #F5DEB3;
  padding: 30px;
  border-radius: 10px;
  margin-top: 25px;
}

.about-cta h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Leader Section */
.leader-section {
  background: #F5DEB3;
  padding: 80px 0;
}

.leader-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.leader-image img {
  border-radius: 10px;
}

.leader-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.leader-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.leader-text img {
  border-radius: 10px;
  margin-top: 20px;
}

/* Products Grid */
.products-grid {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.products-grid h2 {
  font-size: 42px;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: #F5DEB3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.product-category {
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.product-rating {
  color: #FF8C00;
  font-size: 16px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #666;
}

/* Delivery Areas */
.delivery-areas {
  background: #F5DEB3;
  padding: 80px 0;
  text-align: center;
}

.delivery-areas h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.section-desc {
  color: #666;
  margin-bottom: 40px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.area-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  transition: all 0.3s;
}

.area-box:hover {
  background: #CD853F;
  color: #fff;
  transform: translateY(-3px);
}

/* B2B Section */
.b2b-section {
  background: #F5DEB3;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.b2b-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.b2b-badges {
  position: relative;
  height: 500px;
}

.badge-circle {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.badge-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.badge-2 {
  top: 120px;
  left: 0;
}
.badge-3 {
  top: 120px;
  right: 0;
}
.badge-4 {
  bottom: 80px;
  left: 30%;
}
.badge-5 {
  bottom: 80px;
  right: 30%;
}

.b2b-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.b2b-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
  font-style: italic;
}

.b2b-text h3 {
  font-size: 16px;
  margin: 30px 0 20px;
  color: #1a1a1a;
  font-weight: 700;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.gallery-section h2 {
  font-size: 42px;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.gallery-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.gallery-images img {
  border-radius: 10px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active,
.dot:hover {
  background: #CD853F;
}

/* Contact CTA */
.contact-cta {
  background: #F5DEB3;
  padding: 80px 0;
}

.cta-box {
  background: #fff;
  padding: 60px;
  border-radius: 15px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #1a1a1a;
}

/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.why-choose h2 {
  font-size: 42px;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-item h3 {
  font-size: 16px;
  color: #1a1a1a;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: #F5DEB3;
}

.blog-section h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #1a1a1a;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-date {
  color: #999;
  font-size: 14px;
  display: block;
  padding: 20px 30px 0;
}

.blog-card h3 {
  padding: 10px 30px 30px;
  font-size: 20px;
}

.blog-card h3 a {
  color: #1a1a1a;
  transition: color 0.3s;
}

.blog-card h3 a:hover {
  color: #CD853F;
}

/* Footer */
.main-footer {
  background: #8B4513;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-dots {
  color: #666;
  font-size: 24px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #bbb;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-blog-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-blog-item {
  display: flex;
  gap: 15px;
}

.footer-blog-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.footer-blog-item .blog-date {
  color: #999;
  font-size: 12px;
}

.footer-blog-item h4 {
  font-size: 14px;
  margin-top: 5px;
}

.footer-blog-item h4 a {
  color: #fff;
  transition: color 0.3s;
}

.footer-blog-item h4 a:hover {
  color: #CD853F;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  color: #bbb;
}

.contact-item p {
  font-size: 14px;
  color: #fff;
}

.contact-item a {
  color: #fff;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #CD853F;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #bbb;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #bbb;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .about-content,
  .leader-content,
  .b2b-content,
  .content-grid,
  .mv-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-cards-full {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image {
    height: 400px;
    margin-top: 40px;
  }

  .slider-btn {
    padding: 10px 15px;
    font-size: 24px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #8B4513;
    padding: 80px 30px 30px;
    transition: left 0.3s;
    z-index: 999;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 60px 0;
  }

  .hero-title-main {
    font-size: 42px;
  }

  .hero-title-sub {
    font-size: 32px;
  }

  .hero-features {
    font-size: 14px;
  }

  .hero-image {
    height: 300px;
    margin-top: 30px;
  }

  .hero-chicken {
    max-width: 280px;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .slider-btn {
    padding: 8px 12px;
    font-size: 20px;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }

  .slider-dots {
    bottom: 10px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  /* Products & Grids */
  .showcase-grid,
  .product-cards,
  .features-grid,
  .blog-grid,
  .cert-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-cards-full {
    grid-template-columns: 1fr;
  }

  .product-card-full {
    flex-direction: column;
  }

  .product-image-full {
    width: 100%;
    height: 250px;
  }

  /* Text Sizes */
  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .about-section h2,
  .products-grid h2,
  .delivery-areas h2,
  .gallery-section h2 {
    font-size: 32px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  /* Sections Padding */
  .hero-section,
  .products-showcase,
  .about-section,
  .leader-section,
  .products-grid,
  .delivery-areas,
  .gallery-section,
  .contact-cta,
  .why-choose,
  .about-detail,
  .mission-vision,
  .products-list,
  .contact-page {
    padding: 50px 0;
  }

  .cta-box {
    padding: 40px 30px;
  }

  /* Gallery */
  .gallery-images {
    grid-template-columns: 1fr;
  }

  .gallery-grid-full {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  /* WhatsApp Float */
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-float img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  /* Hero Section Extra Small */
  .hero-title-main {
    font-size: 32px;
  }

  .hero-title-sub {
    font-size: 24px;
  }

  .hero-features {
    font-size: 13px;
  }

  .hero-features li {
    padding-left: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-image {
    height: 250px;
  }

  .hero-chicken {
    max-width: 220px;
  }

  .slider-btn {
    padding: 6px 10px;
    font-size: 18px;
  }

  /* Buttons */
  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Text Sizes */
  .page-hero h1 {
    font-size: 28px;
  }

  .section-label {
    font-size: 12px;
  }

  .about-section h2,
  .products-grid h2,
  .delivery-areas h2 {
    font-size: 24px;
  }

  .cta-box h2 {
    font-size: 22px;
  }

  .cta-box {
    padding: 30px 20px;
  }

  /* Product Cards */
  .product-category {
    font-size: 11px;
    padding: 4px 12px;
  }

  .product-card h3,
  .product-card-full h3 {
    font-size: 16px;
  }

  .product-image {
    width: 100px;
    height: 100px;
  }

  .product-image img {
    width: 60px;
  }

  /* Showcase */
  .natural-badge span {
    font-size: 14px;
    padding: 10px 30px;
  }

  .showcase-item h3 {
    font-size: 14px;
  }

  .showcase-item img {
    width: 120px;
  }

  /* Stats Grid */
  .stat-box h3 {
    font-size: 36px;
  }

  .stat-box p {
    font-size: 14px;
  }

  /* Contact Form */
  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 10px;
  }

  /* WhatsApp Float */
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-float img {
    width: 45px;
    height: 45px;
  }
}

/* Page Hero */
.page-hero {
  background: #8B4513;
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  color: #bbb;
}

/* About Detail */
.about-detail {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.content-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.content-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.content-image img {
  border-radius: 10px;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box {
  background: #F5DEB3;
  padding: 40px 20px;
  border-radius: 10px;
}

.stat-box h3 {
  font-size: 48px;
  color: #CD853F;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  color: #666;
}

/* Mission Vision */
.mission-vision {
  background: #F5DEB3;
  padding: 80px 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  border-left: 4px solid #CD853F;
}

.mv-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.mv-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Products List */
.products-list {
  padding: 80px 0;
}

.filter-tabs {
  text-align: center;
  margin-bottom: 50px;
}

.tab-btn {
  background: #F5DEB3;
  border: none;
  padding: 12px 30px;
  margin: 0 5px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: #CD853F;
  color: #fff;
}

.product-cards-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.product-card-full {
  display: flex;
  gap: 30px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s;
}

.product-card-full:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-image-full {
  flex-shrink: 0;
}

.product-image-full img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.product-info {
  flex-grow: 1;
}

.product-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-info p {
  color: #666;
  margin-bottom: 20px;
}

/* Gallery Page */
.gallery-page {
  padding: 80px 0;
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Page */
.contact-page {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info-box h2,
.contact-form-box h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h4 {
  font-size: 16px;
  color: #CD853F;
  margin-bottom: 10px;
  font-weight: 700;
}

.info-item p {
  color: #666;
  line-height: 1.6;
}

.info-item a {
  color: #666;
  transition: color 0.3s;
}

.info-item a:hover {
  color: #CD853F;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alert {
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #CD853F;
}

.map-section {
  text-align: center;
}

.map-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.map-placeholder {
  background: #F5DEB3;
  height: 400px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

/* Blog List */
.blog-list {
  padding: 80px 0;
}

.blog-grid-full {
  display: grid;
  gap: 40px;
}

.blog-card-full {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card-full:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.blog-card-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.blog-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.blog-content h2 a {
  color: #1a1a1a;
  transition: color 0.3s;
}

.blog-content h2 a:hover {
  color: #CD853F;
}

.blog-content p {
  color: #666;
  margin-bottom: 20px;
}

.read-more {
  color: #CD853F;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: #B8732F;
}

/* Certificates */
.certificates {
  padding: 80px 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.cert-box {
  background: #F5DEB3;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}

.cert-box:hover {
  background: #CD853F;
  color: #fff;
  transform: translateY(-5px);
}

.cert-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cert-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.cert-box p {
  font-size: 14px;
  line-height: 1.6;
}

.cert-box:hover p {
  color: #fff;
}

.cert-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cert-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cert-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Responsive for new pages */
@media (max-width: 1024px) {
  .content-grid,
  .mv-grid,
  .contact-grid,
  .blog-card-full {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-cards-full {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gallery-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card-full {
    flex-direction: column;
  }

  .product-image-full img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-grid,
  .cert-grid,
  .gallery-grid-full {
    grid-template-columns: 1fr;
  }
}
