html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
:root {
  --honey: #f4b400;
  --dark-honey: #d99800;
  --forest: #2f5d34;
}

body {
  background: #f6f4ee;
  font-family: "Segoe UI", sans-serif;
}

.top-bar {
  background: var(--forest);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.navbar {
  background: var(--honey);
}

.navbar {
  background: white;
}

.nav-link {
  color: white !important;
  font-weight: 600;
}

.nav-link:hover {
  color: #fff7d1 !important;
}

.footer-area {
  background: #222;
  color: white;
  padding: 40px 0;
}

.footer-area h5 {
  color: var(--honey);
}
.hero-section {
  min-height: 470px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(31, 90, 51, .25)),
    url('/images/bee-hero.jpg');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  max-width: 700px;
}

.hero-content h1 span {
  color: var(--honey);
  font-style: italic;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 22px 0;
}



.stats-section {
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: white;
  border-radius: 18px;
  padding: 30px 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-card h2 {
  color: var(--forest);
  font-weight: 800;
  font-size: 2.4rem;
}

.stat-card p {
  margin: 0;
  color: #666;
  font-weight: 600;
}

.content-section {
  padding: 80px 0 40px;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  font-weight: 800;
  color: var(--forest);
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
}

.feature-card {
  background: white;
  border-radius: 18px;
  padding: 35px 28px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
}

.feature-card:hover {
transform: translateY(30px);
}

.feature-icon {
  font-size: 44px;
  margin-bottom: 18px;
}

.feature-card h4 {
  color: var(--forest);
  font-weight: 800;
  margin-bottom: 14px;
}

.feature-card p {
  color: #555;
  line-height: 1.7;
}

.announcement-preview {
  padding: 60px 0;
  background: #fff8e1;
}

.announcement-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.announcement-card span {
  color: var(--dark-honey);
  font-weight: 700;
  font-size: 14px;
}

.announcement-card h5 {
  margin-top: 10px;
  color: var(--forest);
  font-weight: 800;
}

.announcement-card p {
  color: #555;
  line-height: 1.6;
}

.announcement-card a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 460px;
  }


  .stats-section {
    margin-top: 20px;
  }
}

.navbar {
  min-height: 90px;
}
.hero-section {
  min-height: 520px;
  background:
    linear-gradient(rgba(47, 93, 52, 0.58), rgba(47, 93, 52, 0.58)),
    url('/images/bee-hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  padding-top: 90px;
  padding-left: 20px;
  max-width: 700px;
}

.hero-content h1 {
font-size: 4rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-top: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.quick-actions-section {
  margin-top: -25px;
  position: relative;
  z-index: 10;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.quick-action-card {
  background: white;
  border-radius: 18px;
  padding: 24px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--forest);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  transition: 0.2s ease;
  min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quick-action-card:hover {
  transform: translateY(-5px);
  color: var(--dark-honey);
}

.quick-action-card div {
  font-size: 32px;
  margin-bottom: 10px;
}

.quick-action-card span {
  display: block;
  font-size: 14px;
}

.navbar {
  min-height: 88px;
}

@media (max-width: 992px) {
  .quick-actions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

 
}

@media (max-width: 576px) {
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero-content {
  display: none;
}




.stats-section {
  margin-top: 35px;
}

.bee-calendar-section {
  padding: 50px 0;
  background: #ffffff;
}

.bee-calendar-card {
  background: #fff8e1;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.bee-calendar-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.bee-calendar-table th {
  color: var(--forest);
  font-size: 18px;
  padding: 12px;
}

.bee-calendar-table td {
  background: white;
  padding: 16px;
  font-weight: 600;
}

.bee-calendar-table td:first-child {
  border-radius: 14px 0 0 14px;
  color: var(--dark-honey);
  width: 160px;
}

.bee-calendar-table td:last-child {
  border-radius: 0 14px 14px 0;
  color: #444;
}
.president-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.president-section {
  padding: 80px 0;
  background: #f7f7f7;
}

.president-card-clean {
  display: flex;
  gap: 40px;
  align-items: center;
  background: white;
  border-radius: 26px;
  padding: 45px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.president-icon {
  width: 180px;
  height: 180px;
  min-width: 180px;
  border-radius: 50%;
  background: #fff8e1;
 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.president-text h2 {
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 20px;
}

.president-text p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .president-card-clean {
    flex-direction: column;
    text-align: center;
  }
}

.section-badge {
  display: inline-block;
  background: var(--honey);
  color: #222;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.president-card h2 {
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 20px;
}

.president-card p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}
.president-icon img {
  max-width: 125px;
  max-height: 125px;
}
.page-header {
  background: linear-gradient(rgba(47, 93, 52, 0.88), rgba(47, 93, 52, 0.88));
  padding: 70px 0;
  color: white;
  text-align: center;
}

.page-header h1 {
  font-weight: 900;
  font-size: 2.8rem;
}

.page-header p {
  font-size: 1.15rem;
  margin-top: 10px;
}

.announcements-page {
  padding: 70px 0;
  background: #f7f7f7;
}
.board-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.board-card {
  background: white;
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.board-card img {
  width: 100px;
  margin-bottom: 20px;
}

.board-card h4 {
  color: var(--forest);
  font-weight: 800;
}

.board-card-small {
  background: white;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.board-card-small h5 {
  color: var(--forest);
  font-weight: 700;
}
.about-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.about-intro-card {
  background: white;
  border-radius: 26px;
  padding: 45px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.about-logo {
  max-width: 210px;
}

.about-intro-card h2 {
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 20px;
}

.about-intro-card p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

.mission-card {
  background: white;
  border-radius: 22px;
  padding: 35px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.mission-card h3 {
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 16px;
}

.mission-card p {
  color: #555;
  line-height: 1.8;
}

.activities-section {
  padding: 70px 0;
  background: #fff8e1;
}

.activity-card {
  background: white;
  border-radius: 22px;
  padding: 32px;
  height: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-card div {
  font-size: 42px;
  margin-bottom: 15px;
}

.activity-card h4 {
  color: var(--forest);
  font-weight: 800;
}

.activity-card p {
  color: #555;
  line-height: 1.7;
}
.documents-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.document-card {
  background: white;
  border-radius: 22px;
  padding: 35px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.document-icon {
  font-size: 48px;
  margin-bottom: 18px;
}

.document-card h4 {
  color: var(--forest);
  font-weight: 800;
}

.document-card p {
  color: #555;
  line-height: 1.7;
}
.gallery-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.gallery-card {
  background: white;
  border-radius: 22px;
  padding: 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-placeholder {
  height: 180px;
  border-radius: 18px;
  background: #fff8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin-bottom: 22px;
}

.gallery-card h4 {
  color: var(--forest);
  font-weight: 800;
}

.gallery-card p {
  color: #555;
  line-height: 1.7;
}
.contact-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.contact-card {
  background: white;
  border-radius: 22px;
  padding: 35px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  font-size: 44px;
  margin-bottom: 16px;
}

.contact-card h4 {
  color: var(--forest);
  font-weight: 800;
}

.contact-card p {
  color: #555;
}

.contact-form-card {
  background: white;
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 25px;
}

.contact-form-card .form-control {
  border-radius: 12px;
  padding: 12px 14px;
}
.trainings-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.training-card {
  background: white;
  border-radius: 22px;
  padding: 34px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.training-icon {
  font-size: 46px;
  margin-bottom: 16px;
}

.training-card span {
  color: var(--dark-honey);
  font-weight: 800;
  font-size: 14px;
}

.training-card h4 {
  color: var(--forest);
  font-weight: 900;
  margin-top: 10px;
}

.training-card p {
  color: #555;
  line-height: 1.7;
}
.membership-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.membership-info-card,
.membership-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.membership-info-card h2,
.membership-card h3 {
  color: var(--forest);
  font-weight: 900;
}

.membership-info-card p,
.membership-card li {
  color: #555;
  line-height: 1.8;
}

.membership-card ul,
.membership-card ol {
  margin-top: 18px;
}
.guide-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.guide-card {
  background: white;
  border-radius: 22px;
  padding: 34px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
}

.guide-icon {
  font-size: 46px;
  margin-bottom: 18px;
}

.guide-card h4 {
  color: var(--forest);
  font-weight: 900;
}

.guide-card p {
  color: #555;
  line-height: 1.7;
}
.dropdown-menu {
  border: none;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.dropdown-item {
  border-radius: 10px;
  font-weight: 700;
  color: var(--forest);
}

.dropdown-item:hover {
  background: #fff8e1;
  color: var(--dark-honey);
}
.navbar {
  position: relative;
  z-index: 1000;
}

.dropdown-menu {
  z-index: 2000;
}
.footer-area {
  background: #1f1f1f;
  color: white;
  padding-top: 60px;
  padding-bottom: 25px;
}

.footer-logo-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  width: 60px;
  margin-right: 15px;
}

.footer-area h5 {
  color: var(--honey);
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  color: #bbb;
}
.notice-strip {
  background: var(--forest);
  color: white;
  padding: 9px 0;
  position: relative;
  z-index: 20;
}

.notice-static {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
}

.notice-static strong {
  color: var(--honey);
}

.notice-static span::before {
  content: "•";
  margin-right: 10px;
  color: var(--honey);
}

@media (max-width: 768px) {
  .notice-static {
    overflow-x: auto;
    justify-content: flex-start;
  }
}
header {
  position: relative;
  z-index: 3000;
}

.top-bar {
  position: relative;
  z-index: 3001;
}

.navbar {
  position: relative;
  z-index: 3002;
  background: #ffffff;
  min-height: 82px;
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
}

.navbar .container {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-right: 14px;
}

.brand-title {
  color: var(--forest);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.brand-subtitle {
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: var(--forest) !important;
  font-weight: 800;
}

.nav-link:hover {
  color: var(--dark-honey) !important;
}
.navbar-brand {
  margin-right: auto;
}
.hero-content {
  display: block !important;
  max-width: 620px;
  color: white;
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.08;
  font-weight: 900;
}

.hero-content h1 span {
  color: var(--honey);
  font-style: italic;
}

.hero-content p {
  max-width: 560px;
  font-size: 1.15rem;
  margin-top: 20px;
}
.hero-section {
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(31, 90, 51, .16)),
    url('/images/bee-hero.jpg');
  background-size: cover;
  background-position: center center;
}
.bee-calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bee-month-card {
  background: white;
  border-radius: 22px;
  padding: 28px;
  min-height: 220px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.bee-month-card:hover {
  transform: translateY(-6px);
}

.bee-month-card .month-icon {
  font-size: 42px;
  margin-bottom: 14px;
}

.bee-month-card span {
  display: inline-block;
  color: var(--dark-honey);
  font-weight: 900;
  margin-bottom: 10px;
}

.bee-month-card h4 {
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 12px;
}

.bee-month-card p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.bee-month-card.highlight {
  background: #fff8e1;
  border: 2px solid var(--honey);
}

@media (max-width: 992px) {
  .bee-calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .bee-calendar-grid {
    grid-template-columns: 1fr;
  }
}
.activities-home-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.activities-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-home-card {
  background: white;
  border-radius: 24px;
  padding: 34px;
  min-height: 310px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: 0.2s ease;
}

.activity-home-card:hover {
  transform: translateY(-6px);
}

.activity-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #fff8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
}

.activity-home-card span {
  color: var(--dark-honey);
  font-weight: 900;
  font-size: 14px;
}

.activity-home-card h4 {
  color: var(--forest);
  font-weight: 900;
  margin-top: 10px;
  margin-bottom: 14px;
}

.activity-home-card p {
  color: #555;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 992px) {
  .activities-home-grid {
    grid-template-columns: 1fr;
  }
}
.president-card-clean {
  overflow: hidden;
}

.president-icon {
  width: 170px;
  height: 170px;
  min-width: 170px;
}

.president-icon img {
  width: 125px !important;
  height: 125px !important;
  object-fit: contain;
}
.president-icon {
  width: 160px;
  height: 160px;
  min-width: 160px;
 
  overflow: hidden;
  background: #fff8e1;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.president-icon img {
  width: 155px !important;
  height: 155px !important;
  object-fit: contain;
}
.home-announcements-section {
  padding: 70px 0;
  background: #fff8e1;
}

.home-announcements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-announcement-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  min-height: 260px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
}

.home-announcement-card:hover {
  transform: translateY(-6px);
}

.home-announcement-card span {
  color: var(--dark-honey);
  font-weight: 900;
  font-size: 14px;
}

.home-announcement-card h4 {
  color: var(--forest);
  font-weight: 900;
  margin-top: 12px;
  margin-bottom: 14px;
}

.home-announcement-card p {
  color: #555;
  line-height: 1.7;
}

.home-announcement-card a {
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.home-announcement-card a:hover {
  color: var(--dark-honey);
}

@media (max-width: 992px) {
  .home-announcements-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-preview-section {
  padding: 80px 0;
  background: #ffffff;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-preview-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .3s;
}

.gallery-preview-grid img:hover {
  transform: scale(1.03);
}

@media(max-width:992px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }
}
.membership-benefits-section {
  padding: 80px 0;
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #f7f7f7;
  border-radius: 24px;
  padding: 34px;
  min-height: 280px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
  transition: .25s;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 20px;
  background: #fff8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.benefit-card h4 {
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 14px;
}

.benefit-card p {
  color: #555;
  line-height: 1.7;
}

@media(max-width:992px) {

  .benefits-grid {
    grid-template-columns: 1fr;
  }

}
.membership-form-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.membership-form-card {
  background: white;
  border-radius: 26px;
  padding: 42px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.membership-form-card h2 {
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 28px;
}

.membership-form-card .form-label {
  color: var(--forest);
  font-weight: 800;
}

.membership-form-card .form-control {
  border-radius: 14px;
  padding: 13px 15px;
}

.success-message {
  background: #e8f5e9;
  color: var(--forest);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 30px;
  border-left: 6px solid var(--forest);
}

.success-message h3 {
  font-weight: 900;
}
body {
  background: #f6f4ee;
}

.stats-section {
  background: #f6f4ee;
}

.bee-calendar-section {
  background: #ffffff;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.activities-home-section {
  background: #f8f4e8;
}

.president-section {
  background: #ffffff;
}

.membership-benefits-section {
  background: #f8f4e8;
}

.home-announcements-section {
  background: #ffffff;
}

.gallery-preview-section {
  background: #f8f4e8;
}
.section-divider {
  width: 120px;
  height: 4px;
  background: var(--honey);
  border-radius: 20px;
  margin: 50px auto;
}
.season-status-section {
  padding: 25px 0 60px;
  background: #f6f4ee;
}

.season-status-card {
  max-width: 1180px;
  margin: auto;
  background: white;
  border: 2px solid var(--honey);
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.season-status-card h3 {
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 8px;
}

.season-subtitle {
  color: #666;
  margin-bottom: 0;
}

.season-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
}

.season-intro {
  display: flex;
  gap: 18px;
  align-items: center;
}

.season-big-icon {
  font-size: 64px;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.season-item {
  background: transparent;
  border-left: 1px solid rgba(212, 154, 0, .45);
  border-radius: 0;
  padding: 14px 20px;
}

.season-label {
  display: block;
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 10px;
}

.status-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 18px;
  font-weight: 900;
}

.status-active {
  background: #dff3df;
  color: #1e8e3e;
}

.status-warn {
  background: #fff0c2;
  color: #d98b00;
}

.status-info {
  background: #e7edff;
  color: #2f5d9f;
}

.status-purple {
  background: #efe0ff;
  color: #7b3dbb;
}

@media(max-width:992px) {
  .season-layout {
    grid-template-columns: 1fr;
  }

  .season-grid {
    grid-template-columns: 1fr;
  }

  .season-item {
    border-left: none;
    border-top: 1px solid rgba(212, 154, 0, .45);
  }
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.season-item {
  background: #f8f4e8;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.season-label {
  display: block;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}

.season-active {
  color: #1e8e3e;
  font-weight: 900;
}

.season-warn {
  color: #d98b00;
  font-weight: 900;
}

.season-info {
  color: var(--forest);
  font-weight: 900;
}

@media (max-width: 768px) {

  .season-status-card {
    padding: 28px 18px;
    overflow: hidden;
  }

  .season-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
  }

  .season-item {
    width: 100%;
    min-width: 0;
    padding: 22px 12px;
  }
}
.honey-value-section {
  padding: 70px 0;
  background: #f8f4e8;
}

.honey-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.honey-value-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  min-height: 280px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  transition: .25s;
}

.honey-value-card:hover {
  transform: translateY(-6px);
}

.honey-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px auto;
  border-radius: 24px;
  background: #fff8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.honey-value-card h4 {
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 14px;
}

.honey-value-card p {
  color: #555;
  line-height: 1.75;
}

@media(max-width:992px) {
  .honey-value-grid {
    grid-template-columns: 1fr;
  }
}
.counter::after {
  content: "+";
}

.stat-card:nth-child(3) .counter::after {
  content: "";
}
.counter::after {
  content: "+";
}

.counter.no-plus::after {
  content: "";
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: left;
}

.stat-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  background: #fff8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.stat-card h2 {
  margin: 0;
}

.stat-card p {
  margin-top: 6px;
}

.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 180px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.stat-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.stat-card h2 {
  font-size: 52px;
  font-weight: 800;
  color: #1f5d3b;
  margin: 0;
}

.stat-card p {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 18px;
  color: #666;
}
.stat-card {
  min-height: 220px;
  padding: 25px 20px;
}

.stat-icon {
  font-size: 38px;
  margin-bottom: 8px;
}

.stat-card h2 {
  margin-bottom: 6px;
}
.stat-card {
  min-height: 165px !important;
  padding: 22px 16px !important;
  gap: 6px !important;
}

.stat-icon {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  font-size: 26px !important;
  margin-bottom: 4px !important;
}

.stat-card h2 {
  font-size: 38px !important;
  line-height: 1.1;
  margin: 0 !important;
}

.stat-card p {
  font-size: 15px !important;
  margin: 4px 0 0 0 !important;
}
.stat-card h2:not(.counter) {
  font-size: 34px !important;
}
.honey-value-card {
  min-height: 260px;
  padding: 30px;
}
.stat-icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50%;
  background: #fff8e1;
  color: var(--dark-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px !important;
  margin-bottom: 10px !important;
}

.stat-icon i {
  font-size: 28px;
}
.stat-card {
  transition: all .25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, .12);
}

.stat-icon {
  box-shadow: 0 4px 12px rgba(217, 164, 0, .15);
}
.season-small-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px auto;
  border-radius: 50%;
  background: #fff8e1;
  color: var(--dark-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.honey-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px auto;
  border-radius: 24px;
  background: #fff8e1;
  color: var(--dark-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}
.season-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.season-item {
  min-width: 160px;
  min-height: 150px;
  padding: 20px;
}
.season-status-grid {
  display: flex;
  gap: 20px;
}
.season-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.season-status-card {
  max-width: 1180px !important;
  padding: 34px !important;
}

.season-header {
  text-align: center;
  margin-bottom: 26px;
}

.season-header h3 {
  color: var(--forest);
  font-weight: 900;
}

.season-header p {
  color: #666;
  margin: 0;
}

.season-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
}

.season-item {
  min-height: 150px !important;
  padding: 22px !important;
  border-radius: 18px !important;
  background: #f8f4e8 !important;
  text-align: center !important;
}

.season-small-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background: #fff8e1;
  color: var(--dark-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.honey-ai-image {
  width: 240px;
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}

.honey-value-card:hover .honey-ai-image {
  transform: translateY(-4px) scale(1.05);
}
.honey-value-card {
  text-align: center;
}

.honey-value-card h4 {
  margin-top: 12px;
}
@media(max-width:768px) {

  .honey-ai-image {
    width: 120px;
    height: 120px;
  }

}
.honey-ai-image {
  border: 1px solid red;
}
.honey-value-card {
  transition: all .3s ease;
}

.honey-value-card:hover {
  transform: translateY(-6px);
}

.honey-value-card:hover .honey-ai-image {
  transform: scale(1.05);
}
.honey-value-card {
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .08);
}
.quick-ai-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
  transition: transform .3s ease;
}

.quick-action-card:hover .quick-ai-image {
  transform: translateY(-3px) scale(1.06);
}

@media (max-width: 768px) {
  .quick-ai-image {
    width: 58px;
    height: 58px;
  }
}
.quick-ai-image {
  width: 110px;
  height: 92px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 10px 14px rgba(120, 80, 0, .18));
  transition: transform .3s ease, filter .3s ease;
}

.quick-action-card {
  min-height: 150px;
  padding: 24px 18px 20px;
}

.quick-action-card:hover .quick-ai-image {
  transform: translateY(-5px) scale(1.08);
  filter: drop-shadow(0 14px 18px rgba(120, 80, 0, .25));
}

@media (max-width: 768px) {
  .quick-ai-image {
    width: 82px;
    height: 72px;
  }

  .quick-action-card {
    min-height: 130px;
    padding: 20px 14px;
  }
}
.quick-ai-image {
  width: 128px;
  height: 96px;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px;
}
.quick-action-card {
  min-height: 138px;
  padding: 18px 16px 16px;
}
@media (max-width: 768px) {
  .quick-ai-image {
    width: 92px;
    height: 74px;
  }

  .quick-action-card {
    min-height: 120px;
  }
}
.stat-ai-image {
  width: 118px;
  height: 96px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
  filter: drop-shadow(0 10px 14px rgba(120, 80, 0, .16));
}

.stat-card {
  overflow: hidden;
}
@media(max-width:768px) {
  .stat-ai-image {
    width: 90px;
    height: 74px;
  }
}
.quick-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8df, #ffe6a3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 10px 24px rgba(180, 120, 0, .16);
}

.quick-icon i {
  font-size: 24px;
  color: #d99a00;
}

.quick-action-card {
  min-height: 128px;
  padding: 22px 16px 18px;
}

.quick-action-card:hover .quick-icon {
  transform: translateY(-3px);
}
.season-status-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  border: 1px solid rgba(221, 156, 0, .45);
}

.season-item {
  position: relative;
  background: #fffaf0;
  border: 1px solid rgba(221, 156, 0, .25);
  box-shadow: 0 10px 24px rgba(80, 60, 20, .06);
  transition: all .25s ease;
}

.season-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(80, 60, 20, .10);
}
.season-small-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8df, #ffe7a6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.season-small-icon i {
  font-size: 24px;
  color: #d99a00;
}
.status-pill {
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.status-active {
  background: #dff8df;
  color: #00853f;
}

.status-warn {
  background: #fff1c7;
  color: #d99000;
}

.status-info {
  background: #dde8ff;
  color: #2f62a8;
}
.activity-ai-image {
  width: 210px;
  height: 145px;
  object-fit: contain;
  display: block;
  margin: 0 0 12px;
}

.activity-home-card:hover .activity-ai-image {
  transform: translateY(-4px) scale(1.05);
}
.activity-home-card {
  padding: 28px 34px;
}
.activity-home-card {
  transition: all .3s ease;
}

.activity-home-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.activity-home-card:hover .activity-ai-image {
  transform: scale(1.05);
}
.activity-home-card span {
  display: inline-block;
  background: #fff4cf;
  color: #c58a00;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
@media(max-width:768px) {

  .activity-ai-image {
    width: 110px;
    height: 90px;
  }

}
.benefit-ai-image {
  width: 190px;
  height: 135px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
}

.benefit-card span {
  display: inline-block;
}

.benefit-card {
  transition: all .3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.benefit-card:hover .benefit-ai-image {
  transform: scale(1.05);
}
.benefit-ai-image {
  width: 220px;
  height: 150px;
  margin-bottom: 8px;
}

.benefit-card h4 {
  margin-top: 4px;
  margin-bottom: 12px;
}
@media(max-width:768px) {
  .benefit-ai-image {
    width: 150px;
    height: 110px;
  }
}
.footer-logo {
  width: 72px;
  height: 72px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-links a {
  transition: all .25s ease;
}

.footer-links a:hover {
  color: #ffd66b;
  padding-left: 6px;
}
.footer-top-border {
  height: 4px;
  background:
    linear-gradient(90deg,
      #c99700,
      #f5d26a,
      #c99700);
}
.footer-contact i {
  color: #f5c84c;
  width: 20px;
  margin-right: 8px;
}
.footer-logo img {
  width: 70px;
}
.footer-links a {
  transition: .25s;
}

.footer-links a:hover {
  color: #ffd66b;
  padding-left: 5px;
}
.member-login-btn {
  color: #123f24;
  font-weight: 700;
  border: none;
}

.member-login-btn:hover {
  color: #123f24;
  transform: translateY(-2px);
}
.login-section {
  padding: 90px 0;
  background: #f7f1e3;
}

.login-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.login-header {
  text-align: center;
  margin-bottom: 28px;
}

.login-header img {
  width: 86px;
  margin-bottom: 16px;
}

.login-header h1 {
  color: #14532d;
  font-weight: 800;
}

.login-header p {
  color: #555;
}

.login-form label {
  font-weight: 700;
  color: #14532d;
  margin-bottom: 8px;
}

.login-form .form-group {
  margin-bottom: 18px;
}

.login-form .form-control {
  height: 52px;
  border-radius: 14px;
}
.social-section {
  padding: 10px 0;
  background: #f7f1e3;
}

.social-card {
background: linear-gradient(180deg,
      #ffffff 0%,
      #fffdf7 100%);

  border-radius: 28px;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.social-card h3 {
  color: #14532d;
  font-weight: 800;
  margin: 10px 0;
}

.social-card p {
  margin: 0;
  color: #555;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 150px;
  height: 64px;
  border-radius: 18px;
  background: #fff7dc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #14532d;
  font-weight: 800;
  transition: .3s;
}

.social-link i {
  font-size: 26px;
  color: #d99a00;
}

.social-link:hover {
  transform: translateY(-4px);
  background: #fff2c9;
  color: #14532d;
  box-shadow: 0 14px 30px rgba(120, 80, 0, .15);
}

@media(max-width:768px) {
  .social-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .social-links {
    width: 100%;
    flex-direction: column;
  }

  .social-link {
    width: 100%;
  }
}
@media (max-width: 768px) {

  .season-status-card .season-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .season-status-card .season-item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 22px 10px !important;
    box-sizing: border-box !important;
  }

  .season-status-card {
    padding: 26px 14px !important;
    overflow: hidden !important;
  }
}
.kastbal-section {
  padding: 80px 0;
}

.kastbal-card {
  background: #fff;
  border-radius: 32px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.kastbal-content {
  flex: 1;
}

.kastbal-content h2 {
  color: #1f5a31;
  font-size: 42px;
  font-weight: 800;
  margin: 15px 0;
}

.kastbal-content p {
  color: #555;
  font-size: 18px;
  line-height: 1.8;
}

.kastbal-content ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.kastbal-content li {
  margin-bottom: 12px;
  font-weight: 600;
}

.kastbal-image {
  flex: 0 0 350px;
  text-align: center;
}

.kastbal-image img {
  max-width: 100%;
  height: auto;
  transition: .4s;
}

.kastbal-image img:hover {
  transform: scale(1.05);
}

@media(max-width:768px) {

  .kastbal-card {
    flex-direction: column-reverse;
    padding: 30px;
    text-align: center;
  }

  .kastbal-content h2 {
    font-size: 30px;
  }

  .kastbal-image {
    flex: auto;
  }
}
.kastbal-image img {
  max-width: 420px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.kastbal-image {
  text-align: center;
}

.kastbal-image img {
  max-width: 320px;
  width: 100%;
  height: auto;
  transition: .3s;
}

.kastbal-image img:hover {
  transform: scale(1.03);
}
.kastbal-section {
  padding: 80px 20px;
  background: #f3f0e7;
}

.kastbal-content {
  max-width: 1300px;
  margin: auto;
  background: #fff;
  border-radius: 30px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.kastbal-left {
  flex: 1;
}

.kastbal-badge {
  display: inline-block;
  background: #f0b315;
  color: #000;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
}

.kastbal-left h2 {
  font-size: 56px;
  color: #1f5d39;
  margin-bottom: 25px;
  line-height: 1.1;
}

.kastbal-left p {
  font-size: 24px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.kastbal-highlight {
  background: #fff9eb;
  border: 1px solid #f0d18a;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #444;
}

.kastbal-features {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.kastbal-features li {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1f5d39;
  font-weight: 600;
}

.kastbal-btn {
  display: inline-block;
  background: #1f8f55;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}

.kastbal-btn:hover {
  background: #166a40;
}

.kastbal-right {
  flex: 0 0 400px;
  text-align: center;
}

.kastbal-right img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  transition: .3s;
}

.kastbal-right img:hover {
  transform: scale(1.03);
}

@media(max-width:992px) {

  .kastbal-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 35px;
  }

  .kastbal-left h2 {
    font-size: 38px;
  }

  .kastbal-left p {
    font-size: 18px;
  }

  .kastbal-features li {
    font-size: 18px;
  }

  .kastbal-right {
    flex: auto;
  }

  .kastbal-right img {
    max-width: 250px;
  }
}
.kastbal-content {
  padding: 40px;
  gap: 40px;
}
.kastbal-left h2 {
  font-size: 42px;
}
.kastbal-left p {
  font-size: 18px;
  line-height: 1.7;
}
.kastbal-highlight {
  padding: 15px;
  font-size: 16px;
}
.kastbal-features li {
  font-size: 18px;
  margin-bottom: 10px;
}
.kastbal-right {
  flex: 0 0 260px;
}
.kastbal-right img {
  max-width: 220px;
}
.kastbal-btn {
  padding: 12px 24px;
  font-size: 15px;
}
.kastbal-hero {
  padding: 80px 0 50px;
  text-align: center;
}

.kastbal-hero h1 {
  color: #1f5a31;
  font-size: 48px;
  font-weight: 800;
  margin: 20px 0;
}

.kastbal-hero p {
  max-width: 850px;
  margin: auto;
  color: #555;
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.product-card img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.product-card h3 {
  color: #1f5a31;
  font-weight: 700;
}

.product-size {
  display: inline-block;
  background: #fff4cf;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 10px 0;
}

.order-btn {
  display: block;
  margin-top: 20px;
  background: #1f8f55;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
}

.kastbal-trust {
  padding: 80px 0;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.trust-grid div {
  background: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}
.product-price {
  font-size: 32px;
  font-weight: 800;
  color: #1f5a31;
  margin: 15px 0;
}
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.analysis-btn {
  display: block;
  text-decoration: none;
  background: #fff7dc;
  color: #1f5a31;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
}

.analysis-btn:hover {
  background: #ffefb5;
}

.order-btn {
  background: #1f8f55;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
}
.product-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
  font-size: 13px;
  color: #666;
}
.kastbal-notice {
  margin: 30px auto 0;
  max-width: 850px;

  background: #fff8e6;
  border: 1px solid #f2d48b;

  padding: 16px 22px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: #6b4f00;
  font-weight: 600;
}

.kastbal-notice i {
  font-size: 22px;
  color: #c99700;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 40px auto 0;
}

.product-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 22px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .07);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  margin-bottom: 14px;
}

.product-card h3 {
  color: #14532d;
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0;
}

.weight {
  background: #fff1c7;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 14px;
}

.price {
  font-size: 30px;
  font-weight: 800;
  color: #14532d;
  margin-bottom: 8px;
}

.stock {
  font-size: 14px;
  color: #159447;
  margin-bottom: 14px;
}

.product-card p {
  font-size: 15px;
  line-height: 1.55;
  min-height: 70px;
  margin-bottom: 16px;
}

.product-actions {
  width: 100%;
  margin-top: auto;
}

.analysis-btn,
.order-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  margin-top: 10px;
}

.analysis-btn {
  background: #fff4d8;
  color: #14532d;
}

.order-btn {
  background: #249457;
  color: #fff;
}

.product-meta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  font-size: 13px;
  color: #666;
}
@media(max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }
}
.product-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  position: relative;
  transition: .3s;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-badge {
  display: inline-block;
  background: #f0b323;
  color: #000;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.product-card img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  margin: 20px auto;
  display: block;
}

.product-card h3 {
  color: #14532d;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.weight {
  display: inline-block;

  background: #fff0c9;
  color: #8b5a00;

  padding: 8px 18px;
  border-radius: 999px;

  margin-bottom: 15px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: #14532d;
  margin-bottom: 10px;
}

.stock {
  color: #1e9f4a;
  font-weight: 600;
  margin-bottom: 18px;
}

.product-description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

.btn-outline {
  display: block;
  width: 100%;

  background: #f7edd1;
  color: #14532d;

  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;

  margin-bottom: 10px;
}

.btn-whatsapp {
  display: block;
  width: 100%;

  background: #25D366;
  color: white;

  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

.product-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-tags span {
  background: #f5f2ea;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}
.product-card img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .12));
}
.product-badge {
  margin: 0 auto 15px auto;
}
.product-badge {
  font-size: 14px;
  padding: 8px 18px;
}
.product-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.why-kastbal-image-section {
  max-width: 1180px;
  margin: 45px auto 0;
  text-align: center;
}

.why-kastbal-image-section img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}
@media(max-width:768px) {
  .why-kastbal-image-section {
    margin-top: 30px;
  }
}
.order-section {
  padding: 60px 20px;
}

.order-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.order-container h1 {
  text-align: center;
  color: #14532d;
  margin-bottom: 20px;
}

.order-info {
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.order-btn {
  width: 100%;
  background: #16a34a;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
}
.coming-soon-section {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #f7f1e3;
}

.coming-soon-card {
    max-width: 620px;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 55px 40px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.coming-soon-icon {
    font-size: 58px;
    margin-bottom: 16px;
}

.coming-soon-badge {
    display: inline-block;
    background: #f5b51b;
    color: #111;
    padding: 9px 20px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
}

.coming-soon-card h1 {
    color: #14532d;
    font-weight: 800;
    margin-bottom: 14px;
}

.coming-soon-card p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.coming-soon-btn {
    display: inline-block;
    background: #198754;
    color: #fff;
    padding: 13px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.coming-soon-btn:hover {
    color: #fff;
    background: #146c43;
}


