* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f7f8f7;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 92%;
  max-width: 1450px;
  margin: auto;
}
.topbar {
  background: #006b32;
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar i {
  color: #ffd347;
  margin-right: 6px;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}

.navbar {
  padding: 8px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 80px;
  width: auto;
  object-fit: cover;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  font-size: 14px;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: #087333;
}

nav a.active {
  border-bottom: 3px solid #087333;
  padding-bottom: 3px;
}

.menu-btn {
  display: none;
  font-size: 25px;
  cursor: pointer;
}
.hero-sec {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

.hero-bg .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.hero-bg .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-bg .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  display: block;
}

.hero-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-content-home {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 760px;
  margin: auto;
}

.hero-sec h1 {
  margin: 0;

  font-size: 48px;
  line-height: 1.15;

  color: #075f2c;
  font-weight: 800;
}

.hero-sec h1 span {
  display: block;

  color: #111;
  font-weight: 500;
  font-size: 37px;
}

.hero-sec p {
  margin: 15px 0 25px;

  font-size: 17px;
  color: #222;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 13px 25px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-green {
  background: #087333;
  color: #fff;
}

.btn-green:hover {
  background: #054f24;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #222;

  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: #f5f5f5;
  color: #222;
}

.quick-section {
  margin-top: -35px;
  position: relative;
  z-index: 5;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-card {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}

.quick-card:hover {
  transform: translateY(-5px);
}

.quick-icon {
  min-width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.green {
  background: #209537;
}
.gold {
  background: #e8a621;
}
.blue {
  background: #087e9b;
}
.purple {
  background: #7d2ca6;
}

.quick-text {
  flex: 1;
}

.quick-text h3 {
  font-size: 15px;
}

.quick-text p {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.arrow-circle {
  width: 32px;
  height: 32px;
  border: 1px solid #087333;
  color: #087333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   CONTENT
========================= */

.main-section {
  padding: 24px 0 40px;
}

.grid-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
}

.panel {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.panel-title {
  background: #076b31;
  color: #fff;
  padding: 11px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-title h2 {
  font-size: 15px;
  font-weight: 600;
}

.panel-body {
  padding: 20px;
}

/* =========================
   TODAY RESULT
========================= */

.today-result {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
}

.lottery-name {
  text-align: center;
  border-right: 1px solid #ddd;
  padding: 15px;
}

.lottery-name h2 {
  font-size: 30px;
  color: #dd2b78;
}

.lottery-name h4 {
  margin-bottom: 10px;
}

.draw-no {
  background: #dff3e5;
  padding: 6px 15px;
  display: inline-block;
  border-radius: 5px;
  font-size: 13px;
}

.result-winning {
  text-align: center;
  padding: 15px;
}

.result-winning .prize {
  color: #075f2c;
  font-size: 28px;
  font-weight: 800;
}

.result-number {
  background: #075f2c;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 7px;
  margin: 10px auto;
  max-width: 280px;
}

/* =========================
   WEEKLY
========================= */

.weekly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.lottery-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 12px 6px;
}

.lottery-card h3 {
  color: #842ca0;
  font-size: 16px;
}
.lottery-card:nth-child(2) h3 {
  color: #e22b65;
}
.lottery-card:nth-child(3) h3 {
  color: #f45400;
}
.lottery-card:nth-child(4) h3 {
  color: #1455aa;
}
.lottery-card .day {
  font-size: 12px;
  font-weight: 700;
}
.lottery-card p {
  font-size: 12px;
  margin: 8px 0;
}

.lottery-card strong {
  color: #075f2c;
}

.card-btn {
  display: block;
  margin-top: 12px;
  background: #087333;
  color: #fff;
  padding: 7px;
  border-radius: 5px;
  font-size: 12px;
}

/* =========================
   BOTTOM GRID
========================= */

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.update-item {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.date-box {
  width: 48px;
  height: 48px;
  background: #e4f3e8;
  color: #087333;
  border-radius: 7px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
}

.date-box span {
  font-size: 10px;
}

.update-text h4 {
  font-size: 12px;
}

.update-text p {
  color: #777;
  font-size: 11px;
  margin-top: 4px;
}
.live-box {
  height: 190px;

  background: linear-gradient(rgba(7, 25, 55, 0.55), rgba(7, 25, 55, 0.7)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");

  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: #fff;
  border-radius: 8px;
}

.live-box h2 {
  font-size: 27px;
  text-align: center;
}

.live-btn {
  margin-top: 15px;
  background: #e60019;
  padding: 9px 18px;
  border-radius: 6px;
}

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

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}
footer {
  background: #055e2c;
  color: #fff;
}
.inner-hero {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;

  background: linear-gradient(
      90deg,
      rgba(0, 88, 42, 0.92),
      rgba(0, 88, 42, 0.58),
      rgba(0, 88, 42, 0.18)
    ),
    url("https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?auto=format&fit=crop&w=1800&q=85");

  background-size: cover;
  background-position: center;
}
.hero-bg .swiper-button-next,
.hero-bg .swiper-button-prev {
  min-width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #1e5ac8;
  transition: all 0.25s ease;
}

.hero-bg .swiper-button-next:hover,
.hero-bg .swiper-button-prev:hover {
  background: #076b31;
  color: #fff;
}

.hero-bg .swiper-button-next::after,
.hero-bg .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}


.inner-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -85px;
  height: 150px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 50% 50% 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-bottom: 30px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb span:last-child {
  color: #ffd33d;
}
.about-section {
  padding: 40px 0 35px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 35px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  height: 385px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
}
.trust-card {
  position: absolute;
  right: -28px;
  bottom: -25px;
  background: #fff;
  width: 150px;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.trust-card i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e7f5eb;
  color: #087438;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.trust-card strong {
  display: block;
  color: #111;
  font-size: 15px;
  line-height: 1.4;
}

.section-label {
  color: #555;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.section-label::before {
  content: "";
  width: 35px;
  height: 3px;
  background: #e3b623;
  border-radius: 4px;
}

.about-text h2 {
  color: #087438;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-text p {
  color: #555;
  font-size: 14px;
  margin-bottom: 14px;
}

.about-buttons {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-green {
  background: #087438;
  color: #fff;
}

.btn-green:hover {
  background: #05592b;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #087438;
  color: #087438;
  background: #fff;
}

.btn-outline:hover {
  background: #eef8f1;
}
.section-title-line {
  margin: 9px auto 0;
  width: 82px;
  height: 3px;
  background: #e5b71d;
  border-radius: 5px;
  position: relative;
}

.section-title-line::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #e5b71d;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px #fff;
}

/* =========================
       MISSION VISION
    ========================== */

.mission-section {
  padding: 35px 0 45px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mission-card {
  border: 1px solid #e1e1e1;
  border-radius: 13px;
  padding: 24px;
  display: flex;
  gap: 18px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mission-icon {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.mission-card:nth-child(1) .mission-icon {
  background: #e4f2d8;
  color: #087438;
}

.mission-card:nth-child(2) .mission-icon {
  background: #fff2c9;
  color: #d49a00;
}

.mission-card:nth-child(3) .mission-icon {
  background: #e8f5e8;
  color: #087438;
}

.mission-card h3 {
  color: #087438;
  font-size: 17px;
  margin-bottom: 7px;
}

.mission-card p,
.mission-card li {
  font-size: 12px;
  color: #555;
}

.value-list {
  list-style: none;
}

.value-list li {
  margin-bottom: 3px;
}

.value-list i {
  color: #087438;
  margin-right: 6px;
  font-size: 10px;
}

/* =========================
       WHY CHOOSE
    ========================== */

.why-section {
  padding: 20px 0 45px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.why-card {
  text-align: center;
  border: 1px solid #e4e4e4;
  border-radius: 7px;
  padding: 15px 8px;
  transition: 0.3s;
  background: #fff;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #e6f3dc;
  color: #087438;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}

.why-card h3 {
  color: #087438;
  font-size: 13px;
  line-height: 1.25;
  min-height: 33px;
  margin-bottom: 8px;
}

.why-card p {
  color: #555;
  font-size: 11px;
  line-height: 1.55;
}
.stats-section {
  padding: 0 0 45px;
}
.stats-box {
  background: linear-gradient(rgba(0, 108, 51, 0.97), rgba(0, 108, 51, 0.97)),
    url("https://images.unsplash.com/photo-1593693411515-c20261bcad6e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 13px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat-item {
  text-align: center;
  color: #fff;
  padding: 14px 10px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.38);
}
.stat-item i {
  font-size: 24px;
  margin-bottom: 5px;
}
.stat-item h3 {
  color: #ffd52c;
  font-size: 20px;
  line-height: 1.15;
}
.stat-item p {
  font-size: 12px;
  margin-top: 4px;
}
.commitment-section {
  padding: 0 0 30px;
}
.commitment-box {
  background: linear-gradient(90deg, #f2f8f3, #fffef5);
  border: 1px solid #dde8df;
  border-radius: 14px;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.85fr 1.7fr;
  gap: 35px;
  align-items: center;
  overflow: hidden;
}

.commitment-image {
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
}

.commitment-content h2 {
  color: #087438;
  font-size: 26px;
  margin-bottom: 12px;
}

.commitment-content > p {
  color: #555;
  font-size: 13px;
  margin-bottom: 22px;
}

.commitment-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.commitment-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.commitment-point i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #a9cfb4;
  color: #087438;
  border-radius: 50%;
}

.commitment-point h4 {
  color: #087438;
  font-size: 12px;
}

.commitment-point p {
  font-size: 10px;
  color: #555;
}

/* =========================
       SUPPORT CTA
    ========================== */

.support-section {
  padding: 0 0 40px;
}

.support-box-about {
  background: linear-gradient(90deg, #007138, #00612f);
  border-radius: 12px;
  color: #fff;
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px 20px 160px;
  position: relative;
  overflow: visible;
}

.support-icon {
  width: 115px;
  height: 115px;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  color: #087438;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.support-icon i {
  font-size: 42px;
}

.support-icon strong {
  font-size: 13px;
  margin-top: 4px;
}

.support-text h2 {
  font-size: 28px;
  margin-bottom: 3px;
}

.support-text p {
  font-size: 12px;
  max-width: 520px;
}

.support-btn {
  background: #f5c327;
  color: #163018;
  padding: 13px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-hero {
  min-height: 310px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background: linear-gradient(
      90deg,
      rgba(0, 87, 41, 0.94),
      rgba(0, 87, 41, 0.62),
      rgba(0, 87, 41, 0.15)
    ),
    url("https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?auto=format&fit=crop&w=1800&q=85");

  background-size: cover;
  background-position: center;
}

.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -83px;
  left: -5%;
  width: 110%;
  height: 135px;
  background: #fff;
  border-radius: 50% 50% 0 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding-bottom: 35px;
}

.hero-content h1 {
  font-size: 49px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-content h2 {
  font-size: 25px;
  margin: 5px 0 8px;
}

.hero-content p {
  font-size: 14px;
  max-width: 430px;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.breadcrumb span {
  color: #ffd131;
}
.section-title {
  text-align: center;
  margin-bottom: 14px;
}

.section-title h2 {
  color: #087238;
  font-size: 28px;
}

.section-title p {
  color: #666;
  font-size: 13px;
  margin-top: 5px;
}

.title-line {
  width: 80px;
  height: 3px;
  background: #e8b91f;
  margin: 8px auto;
  border-radius: 5px;
  position: relative;
}

.title-line::after {
  content: "";
  width: 9px;
  height: 9px;
  background: #e8b91f;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px #fff;
}

/* CONTACT CARDS */

.contact-info-section {
  padding: 30px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}

.contact-card .icon {
  width: 58px;
  height: 58px;
  background: #23803b;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-card h3 {
  color: #087238;
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-card strong {
  display: block;
  color: #087238;
  font-size: 20px;
  margin: 5px 0;
}

.contact-card p {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}

/* FORM + MAP */

.main-contact-section {
  padding: 15px 0 35px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.box {
  border: 1px solid #e2e2e2;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.box-inner {
  padding: 14px;
}

.box-title {
  text-align: center;
  margin-bottom: 20px;
}

.box-title h2 {
  color: #087238;
  font-size: 24px;
}

.box-title .title-line {
  margin-top: 7px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 12px;
}

.form-control {
  width: 100%;
  border: 1px solid #d8d8d8;
  outline: none;
  border-radius: 6px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 12px;
  transition: 0.3s;
}

.form-control:focus {
  border-color: #087238;
  box-shadow: 0 0 0 3px rgba(8, 114, 56, 0.08);
}

textarea.form-control {
  height: 135px;
  resize: none;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 5px;
}

.secure-text {
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 7px;
}

.secure-text i {
  color: #087238;
}

.send-btn {
  border: 0;
  background: #087238;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
}

.send-btn:hover {
  background: #05582b;
}

/* MAP */

.map-area {
  min-height: 430px;
}

.map-area iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* FAQ */

.faq-section {
  padding: 10px 0 35px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  text-align: left;
}

.faq-question .q-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question .q-icon {
  width: 23px;
  height: 23px;
  border: 1px solid #aaa;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
}

.faq-answer {
  display: none;
  padding: 0 16px 15px 49px;
  color: #666;
  font-size: 11px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question > i {
  transform: rotate(180deg);
}

/* HOURS AND SUPPORT */

.help-section {
  padding: 0 0 40px;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hours-box {
  border: 1px solid #e2e2e2;
  border-radius: 13px;
  padding: 16px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 25px;
  background: #fff;
}

.hours-icon {
  text-align: center;
  color: #087238;
}

.hours-icon i {
  font-size: 66px;
  margin-bottom: 12px;
}

.hours-icon strong {
  display: block;
  font-size: 22px;
  margin-top: -8px;
}

.hours-icon p {
  font-size: 11px;
  font-weight: 600;
}

.hours-content h2 {
  color: #087238;
  font-size: 22px;
  margin-bottom: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 12px;
}

.hours-row:last-child {
  border: 0;
}

.urgent-box {
  border-radius: 13px;
  background: linear-gradient(135deg, #08753a, #005828);
  color: #fff;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.urgent-box h2 {
  font-size: 20px;
}

.urgent-box > p {
  font-size: 12px;
  margin: 8px 0 16px;
}

.phone-box {
  max-width: 400px;
  width: 100%;
  border: 1px solid #f4c629;
  margin: auto;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.phone-box i {
  color: #f4c629;
  font-size: 25px;
}

.phone-box strong {
  font-size: 18px;
  line-height: 1;
}

.phone-box small {
  display: block;
  font-size: 10px;
}
.lootery-sec {
  padding: 60px 0;
  background: #f8f9fb;
}

.lottery-tickets-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 24px;
  margin: 0 auto;
}

.lottery-ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.lottery-ticket:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.lottery-ticket-img {
  width: 100%;
  height: 220px;
}

.lottery-ticket-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.lottery-ticket-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.lottery-plan-name {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.lottery-price {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 22px;
}
.lottery-ticket-number {
  width: 100%;
  padding: 12px 10px;
  border-top: 2px dashed #e5e5e5;
  border-bottom: 2px dashed #e5e5e5;
  margin-bottom: 22px;
}

.lottery-ticket-label {
  display: block;
  font-size: 11.5px;
  color: #999;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lottery-number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lottery-number-box {
  background: #f7f8fa;
  border: 1.5px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px 4px;
  font-size: 11px;
  font-weight: 600;
  color: #444;
  font-family: "Courier New", monospace;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lottery-number-box:hover {
  border-color: #1e5ac8;
  background: #eef3fc;
}

.lottery-number-box.selected {
  background: #1e5ac8;
  border-color: #1e5ac8;
  color: #fff;
}

/* ===== Buy button ===== */
.lottery-buy-btn {
  display: block;
  width: 100%;
  background: #1e5ac8;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  transition: all 0.25s ease;
}

.lottery-buy-btn:hover {
  background: #164a9e;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Standard variant ===== */
.lottery-ticket-standard {
  border: 2px solid #1e5ac8;
}

.lottery-popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #1e5ac8;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  z-index: 3;
  text-transform: uppercase;
}

/* ===== Bumper variant (featured, middle, elevated) ===== */
.lottery-ticket-bumper {
  border: 2px solid #f2a900;
  background: linear-gradient(180deg, #fff 70%, #fffaf0 100%);
  transform: scale(1.06);
  box-shadow: 0 20px 45px rgba(242, 169, 0, 0.18);
  z-index: 2;
}

.lottery-ticket-bumper:hover {
  transform: scale(1.06) translateY(-6px);
}

.lottery-ticket-bumper .lottery-price {
  color: #d18a00;
}

.lottery-ticket-bumper .lottery-number-box.selected {
  background: #f2a900;
  border-color: #f2a900;
}

.lottery-ticket-bumper .lottery-buy-btn {
  background: linear-gradient(135deg, #f2a900 0%, #ffc93c 100%);
  color: #1a1a1a;
  box-shadow: 0 10px 24px rgba(242, 169, 0, 0.3);
}

.lottery-ticket-bumper .lottery-buy-btn:hover {
  background: linear-gradient(135deg, #d18a00 0%, #f2a900 100%);
  color: #1a1a1a;
}

.lottery-hot-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #ff4d4d 0%, #ff8a3d 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}
.page-wrapper {
  width: 92%;
  max-width: 1350px;
  margin: auto;
  padding: 25px 0 35px;
}
.result-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 55px rgba(8, 80, 42, 0.12);
  overflow: hidden;
}
.status-section {
  padding: 30px 24px;
}

.status-title {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 30px;
}

.status-title h2 {
  font-size: 26px;
  font-weight: 700;
  color: #242b31;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-title h2 span {
  color: #08763a;
}

.title-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.title-divider span {
  width: 60px;
  height: 2px;
  background: #e3e7e8;
}

.title-divider i {
  color: #08763a;
  font-size: 11px;
}

.status-title p {
  color: #687078;
  font-size: 14.5px;
  margin: 0;
}

.status-form {
  max-width: 670px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e9ea;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-grid-two {
  grid-template-columns: 1fr 1fr;
}

/* ===== Prefix input ===== */
.input-prefix-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #d7dddf;
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
  background: #fff;
  transition: all 0.25s ease;
}

.input-prefix-wrap:focus-within {
  border-color: #08763a;
  box-shadow: 0 0 0 3px rgba(8, 118, 58, 0.1);
}

.input-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 12px;
  background: #f5fbf6;
  color: #08763a;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid #d7dddf;
  white-space: nowrap;
}

.input-prefix i {
  font-size: 13px;
}

.input-control-prefix {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  height: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 0 14px;
  color: #1a1a1a;
  background: transparent;
}

/* ===== Submit button ===== */
.check-btn {
  width: 100%;
  margin-top: 20px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #058036, #0a8e3f);
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(8, 118, 58, 0.2);
  transition: all 0.25s ease;
}

.check-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(8, 118, 58, 0.28);
}

.check-btn i {
  font-size: 14px;
}

/* ===== Privacy note ===== */
.safe-message {
  width: max-content;
  max-width: 100%;
  margin: 16px auto 0;
  background: #f5fbf6;
  color: #53a16c;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 12.5px;
  text-align: center;
}

.safe-message i {
  margin-right: 6px;
}
.features {
  border: 1px solid #dbe9df;
  border-radius: 14px;
  background: #f9fdf9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #dde8df;
}

.feature-icon {
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #08763a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature h3 {
  color: #08763a;
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 4px;
}

.feature p {
  color: #666;
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
}
.result-message {
  display: none;
  margin-top: 20px;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

.result-message.success {
  display: block;
  background: #ecf8ef;
  color: #08763a;
  border: 1px solid #cce7d3;
}

.result-message.error {
  display: block;
  background: #fff1f1;
  color: #c03737;
  border: 1px solid #f2cece;
}
.page-title {
  padding: 28px 0 20px;
  text-align: center;
}

.page-title h1 {
  font-size: 30px;
  color: #21183f;
}

.page-title h1 span {
  color: #b31e4b;
}
.page-title p {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}
#orderResult {
  display: none;
}

#orderResult.show {
  display: block;
}
.ticket-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0px;
}

.ticket-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ddd8ef;
  box-shadow: 0 7px 24px rgba(42, 24, 92, 0.06);
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 520px 1fr;
  overflow: hidden;
}

.ticket-card.basic {
  border-color: #8d55dc;
}

.ticket-card.standard {
  border-color: #d8567c;
}

.ticket-card.special {
  border-color: #3b70d4;
}

/* ===========================
   TICKET IMAGE
=========================== */

.ticket-photo {
  background: #fff;
  display: flex;
  align-items: center;
}

.ticket-photo img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.ticket-content {
  padding: 20px 24px;
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.ticket-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticket-name i {
  font-size: 22px;
}

.ticket-name h2 {
  font-size: 22px;
}

.basic .ticket-name {
  color: #6d2dcc;
}

.standard .ticket-name {
  color: #b22251;
}

.special .ticket-name {
  color: #245cad;
}

.price {
  padding: 7px 18px;
  border-radius: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.basic .price {
  background: #6f2bc9;
}

.standard .price {
  background: #b31e4b;
}

.special .price {
  background: #285ca9;
}

/* ===========================
   NUMBER AREA
=========================== */

.selection-layout {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 25px;
}

.number-panel-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.number-btn {
  min-height: 34px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: 0.2s;
}

.number-btn:hover {
  transform: translateY(-1px);
}

.basic .number-btn.selected {
  background: #702bc9;
  color: #fff;
  border-color: #702bc9;
}

.standard .number-btn.selected {
  background: #b6204d;
  color: #fff;
  border-color: #b6204d;
}

.special .number-btn.selected {
  background: #285baa;
  color: #fff;
  border-color: #285baa;
}

/* ===========================
   SELECTED AREA
=========================== */

.selected-box {
  border-left: 1px solid #e7e3eb;
  padding-left: 20px;
}

.selected-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.selected-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 80px;
  margin-bottom: 20px;
}

.chip {
  border-radius: 7px;
  padding: 7px 11px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chip button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.basic .chip {
  background: #f1e9fc;
  color: #6422b7;
  border: 1px solid #8c54db;
}

.standard .chip {
  background: #fff0f4;
  color: #ad2049;
  border: 1px solid #c8496f;
}

.special .chip {
  background: #edf4ff;
  color: #24539a;
  border: 1px solid #4675c0;
}

/* ===========================
   QUANTITY
=========================== */

.quantity-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 7px;
}

.quantity-control {
  display: flex;
  align-items: center;
  width: 150px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 7px;
  overflow: hidden;
}

.quantity-control button {
  width: 45px;
  height: 100%;
  border: 0;
  background: #f7f7fa;
  cursor: pointer;
  font-size: 18px;
}

.quantity-control span {
  flex: 1;
  text-align: center;
  font-weight: 600;
}

.delete-ticket {
  float: right;
  margin-top: -38px;
  border: 1px solid #ff9cb2;
  color: #ef3e64;
  background: #fff;
  width: 40px;
  height: 38px;
  border-radius: 7px;
  cursor: pointer;
}

/* ===========================
   SUMMARY
=========================== */

.summary-section {
  margin-bottom: 25px;
}

.summary-box {
  background: linear-gradient(90deg, #f5f0ff, #fff0f7);
  border: 1px solid #d9caef;
  border-radius: 14px;
  padding: 18px 22px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 15px;
  align-items: center;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a50ec, #481295);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.summary-item small {
  display: block;
  color: #555;
  font-size: 11px;
}

.summary-item strong {
  display: block;
  font-size: 25px;
  color: #4d1998;
}

.payment-btn {
  min-height: 62px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;

  background: linear-gradient(90deg, #9339e8, #ed3376, #ff6a1c);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.secure-text {
  text-align: center;
  font-size: 11px;
  color: #5b4c6f;
  display: block;
  margin-top: 8px;
}

/* ===========================
   NOTE
=========================== */

.note {
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 13px;
  margin-bottom: 30px;
  color: #555;
  font-size: 12px;
}

.note strong {
  color: #ef3869;
}

/* ===========================
   MOBILE
=========================== */

.menu-btn {
  display: none;
  color: #fff;
  font-size: 24px;
}
:root {
  --purple: #6f23c7;
  --purple-dark: #250642;
  --purple-light: #f4edff;
  --pink: #ec2f83;
  --green: #159447;
  --text: #17142d;
  --muted: #6f6980;
  --border: #e4dcf0;
  --white: #ffffff;
}

.page-title {
  padding: 22px 0 22px;
  text-align: center;
}
.page-title p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}
.track-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: 0 7px 25px rgba(51, 21, 96, 0.06);
  overflow: hidden;
  margin-bottom: 20px;
}

.track-form {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 22px;
  align-items: end;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ddd6e9;
  background: #fff;
  border-radius: 9px;
  height: 54px;
  overflow: hidden;
  transition: 0.2s;
}

.input-wrap:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(111, 35, 199, 0.07);
}

.input-icon {
  width: 55px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 18px;
}

.input-wrap input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  font-size: 13px;
  padding: 0 13px 0 0px;
}

.track-btn {
  height: 54px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(90deg, #7728d4, #ec3081);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(113, 38, 199, 0.18);
}

.track-tip {
  background: #faf6ff;
  border-top: 1px solid #eee6f6;
  padding: 13px 20px;
  text-align: center;
  color: #68419b;
  font-size: 11px;
}

.track-tip i {
  margin-right: 7px;
}

/* =========================
   ORDER DETAILS
========================= */

.order-card {
  background: #fff;
  border: 1px solid #dce9df;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

.order-summary {
  padding: 25px;
  background: linear-gradient(90deg, #fffdf2, #f6fff8);

  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr;
  gap: 25px;
  align-items: center;
}

.status-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.status-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ca553, #087e38);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.order-label {
  font-size: 11px;
  color: #777184;
}

.status-area h2 {
  color: var(--green);
  font-size: 26px;
  margin: 3px 0;
}

.status-area p {
  font-size: 11px;
  color: #6a6575;
}

.order-detail {
  border-left: 1px solid #e3e7e2;
  padding-left: 25px;
}

.order-detail strong {
  display: block;
  color: var(--purple);
  font-size: 21px;
  margin: 3px 0 12px;
}

.order-detail .date {
  font-size: 12px;
  font-weight: 600;
}

.amount-area {
  border-left: 1px solid #e3e7e2;
  padding-left: 25px;
}

.total-amount {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 4px 0 14px;
}

.total-amount strong {
  color: var(--purple);
  font-size: 26px;
}

.paid-badge {
  background: #e4f7e8;
  color: #178b40;
  border-radius: 15px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
}

.payment-method {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}
.bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
  padding: 14px 20px;

  background: linear-gradient(90deg, #058036, #0a8e3f);
  border-radius: 8px;
}

.bottom-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #fff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.bottom-links a i {
  font-size: 15px;
}
.bottom-links a:hover {
  color: #d9ffe7;
  transform: translateY(-1px);
}
.bottom-links .line {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.5);
}
.timeline {
  padding: 25px 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 46px;
  height: 3px;
  background: #22a34f;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #159447;
  color: #fff;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 7px #fff;
}

.step h4 {
  font-size: 12px;
}

.step p {
  font-size: 10px;
  color: #756e82;
  margin-top: 3px;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5d1fb2;
  margin-bottom: 13px;
}

.section-heading h3 {
  font-size: 18px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

thead {
  background: linear-gradient(90deg, #8850d3, #a765da);
  color: #fff;
}

th {
  text-align: left;
  padding: 11px 14px;
  font-size: 11px;
}

td {
  padding: 12px 14px;
  border-bottom: 1px solid #ece7f3;
  font-size: 11px;
}

.ticket-data {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticket-thumb {
  width: 88px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.ticket-name {
  font-weight: 600;
  font-size: 12px;
}

.ticket-sub {
  color: #777;
  font-size: 10px;
}

.ticket-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  background: #f6efff;
  border: 1px solid #d8c7ef;
  color: #6424ad;
  border-radius: 7px;
  font-weight: 600;
}

.copy-small {
  border: 0;
  background: transparent;
  color: #7a34c7;
  cursor: pointer;
}

.booked {
  color: #16843d;
  background: #e8f7ec;
  border-radius: 15px;
  padding: 6px 13px;
  font-size: 10px;
  font-weight: 600;
}

/* =========================
   SUPPORT
========================= */

.support-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 22px 25px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

.help-main {
  display: flex;
  gap: 15px;
  align-items: center;
}

.help-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0e8fb;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.help-main h3 {
  color: var(--purple);
  font-size: 18px;
}

.help-main p {
  color: #716a7d;
  font-size: 11px;
}

.support-item {
  border-left: 1px solid #eee;
  padding-left: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.support-item i {
  font-size: 21px;
  color: var(--purple);
}

.support-item.whatsapp-support i {
  color: #1ead5b;
}

.support-item strong {
  display: block;
  font-size: 11px;
  margin: 0;
  color: #222;
}

.support-item span {
  font-size: 11px;
  color: #595366;
}

.message.error {
  display: block;
  background: #fff0f1;
  color: #c4334c;
  border: 1px solid #f2cbd2;
}

.lottery-categories-sec {
  padding: 40px 0;
  background: #fff;
}

.lottery-category-slider {
  padding: 10px 6px 30px;
}

.lottery-cat-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lottery-cat-img {
  width: 100%;
  height: 100%;
}

.lottery-cat-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.lottery-cat-card:hover .lottery-cat-img img {
  transform: scale(1.08);
}

.lottery-cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
}

.lottery-cat-overlay h4 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 4px;
}

.lottery-cat-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ===== Swiper nav/pagination styling ===== */
.lottery-category-slider .swiper-button-next,
.lottery-category-slider .swiper-button-prev {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #1e5ac8;
  transition: all 0.25s ease;
}

.lottery-category-slider .swiper-button-next:hover,
.lottery-category-slider .swiper-button-prev:hover {
  background: #076b31;
  color: #fff;
}

.lottery-category-slider .swiper-button-next::after,
.lottery-category-slider .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}

.lottery-category-slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #ddd;
  opacity: 1;
  transition: all 0.25s ease;
}

.lottery-category-slider .swiper-pagination-bullet-active {
  background: #1e5ac8;
  width: 24px;
  border-radius: 5px;
}
.winners-sec {
  padding: 30px 0;
  background: #f8f9fb;
}
.section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 20px;
}

.section-title span {
  display: inline-block;
  background: rgba(30, 90, 200, 0.1);
  color: #076b31;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.section-title h2 strong {
  color: #076b31;
}
.winners-slider {
  padding: 10px 6px 50px;
}

.winner-card {
  background: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #076b31;
}

.winner-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.winner-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 8px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(30, 90, 200, 0.15);
}

.winner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-lottery-type {
  display: inline-block;
  background: rgba(242, 169, 0, 0.12);
  color: #d18a00;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.winner-amount {
  font-size: 28px;
  font-weight: 700;
  color: #076b31;
  margin: 0 0 8px;
}

.winner-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.winner-location {
  font-size: 13px;
  color: #888;
  margin: 0 0 18px;
}

.winner-location i {
  color: #076b31;
  margin-right: 3px;
}

.winner-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px dashed #eee;
}

.winner-meta span {
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 5px;
}

.winner-meta i {
  color: #1e5ac8;
  font-size: 11px;
}
.winners-slider .swiper-button-next,
.winners-slider .swiper-button-prev {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #1e5ac8;
  transition: all 0.25s ease;
}

.winners-slider .swiper-button-next:hover,
.winners-slider .swiper-button-prev:hover {
  background: #076b31;
  color: #fff;
}

.winners-slider .swiper-button-next::after,
.winners-slider .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}

.winners-slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #ddd;
  opacity: 1;
  transition: all 0.25s ease;
}

.winners-slider .swiper-pagination-bullet-active {
  background: #1e5ac8;
  width: 24px;
  border-radius: 5px;
}

.lottery-about-sec {
  padding: 40px 0;
  overflow: hidden;
  background: #fff;
}

.lottery-about-img-col {
  padding: 0 0px;
}

.lottery-about-card {
  position: relative;
  margin: 0 auto;
  padding: 30px;
}

.lottery-about-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(8, 118, 58, 0.18) 0%,
    rgba(8, 118, 58, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

.lottery-about-main-img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(8, 118, 58, 0.2);
}

.lottery-about-main-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lottery-about-card:hover .lottery-about-main-img img {
  transform: scale(1.05);
}

.lottery-about-shape {
  position: absolute;
  border-radius: 16px;
  z-index: 1;
}

.lottery-about-shape-1 {
  top: 0;
  left: -6px;
  width: 90px;
  height: 90px;
  background: #08763a;
  opacity: 0.1;
}

.lottery-about-shape-2 {
  bottom: 10px;
  right: -6px;
  width: 70px;
  height: 70px;
  border: 3px solid #f2a900;
  opacity: 0.35;
}

/* ===== Floating stat badges ===== */
.lottery-about-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  animation: lotteryFloat 3.5s ease-in-out infinite;
}

.lottery-about-badge-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 118, 58, 0.1);
}

.lottery-about-badge-icon i {
  font-size: 17px;
  color: #08763a;
}

.lottery-about-badge h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
  white-space: nowrap;
}

.lottery-about-badge span {
  font-size: 11.5px;
  color: #888;
  white-space: nowrap;
}

.lottery-about-badge-1 {
  bottom: 82px;
  right: -20px;
  animation-delay: 0s;
}

.lottery-about-tag {
  display: inline-block;
  background: rgba(8, 118, 58, 0.1);
  color: #08763a;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.lottery-about-content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.lottery-about-content h2 span {
  color: #08763a;
}
.lottery-about-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 10px;
}

.lottery-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 25px;
  background: linear-gradient(90deg, #058036, #0a8e3f);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 118, 58, 0.25);
  transition: all 0.25s ease;
}

.lottery-about-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 118, 58, 0.35);
}

.lottery-part {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}
.lottery-testimonial-sec {
  padding: 40px 0;
  background: #faf5f1;
}
.lottery-testimonial-slider {
  padding: 10px 4px;
}

.lottery-testimonial-card {
  background: #fff;
  border: 1px solid #e3ede6;
  border-radius: 6px;
  padding: 18px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.lottery-testimonial-card:hover {
  border: 2px solid #058036;
}

.lottery-testimonial-quote {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 42px;
  height: 42px;
  opacity: 0.8;
  background: rgba(8, 118, 58, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lottery-testimonial-quote i {
  font-size: 16px;
  color: #08763a;
}

.lottery-testimonial-stars {
  margin-bottom: 8px;
}

.lottery-testimonial-stars i {
  color: #f2a900;
  font-size: 13px;
  margin-right: 2px;
}

.lottery-testimonial-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 26px;
  padding-right: 16px;
}

.lottery-testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lottery-testimonial-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(8, 118, 58, 0.2);
}

.lottery-testimonial-user h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px;
}

.lottery-testimonial-user span {
  font-size: 12.5px;
  color: #999;
}

.lottery-testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.lottery-testimonial-prev,
.lottery-testimonial-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #d9e8dd;
  color: #08763a;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lottery-testimonial-prev:hover,
.lottery-testimonial-next:hover {
  background: linear-gradient(90deg, #058036, #0a8e3f);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(8, 118, 58, 0.25);
}

.lottery-testimonial-prev.swiper-button-disabled,
.lottery-testimonial-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #08753a, #005828);
  color: #fff;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.site-footer::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -100px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.footer-main {
  position: relative;
  z-index: 2;
  padding: 50px 0 22px;
  display: grid;
  grid-template-columns:
    1.5fr
    1fr
    1fr
    1.2fr;
  gap: 25px;
}
.footer-part h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #fff;
}
.footer-part h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 10px;
  background: #fff;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.footer-logo img {
    height: 100px;
    width: auto;
    object-fit: cover;
}
.footer-social {
  display: flex;
  gap: 9px;
}

.footer-social a {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;

  color: #058036;
  background: #fff;

  text-decoration: none;

  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #034a23;
  color: #fff;

  transform: translateY(-3px);
}
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a i {
  font-size: 9px;
  color: #fff;
  transition: transform 0.3s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-links a:hover i {
  transform: translateX(3px);
}
.footer-contact {
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}

.contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
}
.contact-item small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item a,
.contact-item span {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
.contact-item a:hover {
  color: #d9ffe7;
}
.copyright {
  position: relative;
  z-index: 2;
  background: #034a23;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 15px 0;
}
.copy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.copy-inner span {
  color: rgba(255, 255, 255, 0.72);

  font-size: 11px;
}

.copy-inner span:last-child {
  color: rgba(255, 255, 255, 0.55);
}
.gallery-section {
  padding: 40px 0px;
  background: #fff;
}
.gallery-slider {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4,1fr);
}
.gallery-item {
  position: relative;
  flex: 0 0 31.8%;
  height: 220px;
  overflow: hidden;
  border-radius: 5px;
  background: #ddd;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  cursor: pointer;
} /* Image */
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
} 
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(241, 90, 41, 0.7),
    rgba(0, 0, 0, 0.6)
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}
.overlay-content {
  transform: translateY(25px) scale(0.8);
  transition: all 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.13);
  filter: brightness(0.8);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, #f15a29, #ff9a6c, #f15a29);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.gallery-item:hover::after {
  transform: scaleX(1);
}