@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f9fa;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

/*================ HEADER ================*/

.header {
  position: sticky;
  top: 0;
  width: 100%;
  transition: 0.4s;
  background: #0f172a;
  z-index: 999;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 0;
  padding: 0;
}

.navbar-brand img {
  width: 60px;
  border-radius: 50%;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler i {
  font-size: 28px;
  color: #fff;
}

.nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0 12px;
  transition: 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #4ade80 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background: #4ade80;
  transition: 0.4s;
}

.nav-link:hover::after {
  width: 100%;
}

/*================ HERO ================*/
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.heroSwiper .swiper-slide {
  overflow: hidden;
}

.heroSwiper,
.swiper-slide {
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.12);
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.35));
}

.hero .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 20;
  color: #fff;
}

.hero-content h5 {
  font-size: 20px;
  color: #4ade80;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 900px;
}

.hero-content h1 span {
  color: #4ade80;
}

.hero-content p {
  max-width: 650px;
  margin: 25px 0 35px;
  font-size: 18px;
  line-height: 30px;
}

.hero-btn {
  display: flex;
  gap: 20px;
}

.btn2 {
  padding: 14px 35px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn2:hover {
  background: #fff;
  color: #111;
}

/*================ SWIPER ================*/

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  display: none;
}

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

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 20px;
  background: #4ade80;
  opacity: 1;
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
}

.footer-logo {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.footer-logo img {
  width: 45px;
  margin-right: 10px;
  border-radius: 50%;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 0;
}

.footer h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
}

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

.footer-contact li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #4ade80;
}

.footer-contact i {
  width: 22px;
  margin-right: 10px;
  color: #4ade80;
}

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

.social-links a {
  width: 42px;
  height: 42px;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: #4ade80;
  transform: translateY(-4px);
}

.footer-map {
  overflow: hidden;
  border-radius: 20px;
  height: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

.copyright {
  font-size: 15px;
  color: #94a3b8;
}

.turf-section {
  background: #f8fafc;
}

.section-title span {
  color: #4ade80;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin: 10px 0;
}

.section-title p {
  color: #64748b;
  max-width: 700px;
  margin: auto;
}

.turf-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.turf-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.turf-img {
  position: relative;
  overflow: hidden;
}

.turf-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

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

.badge-popular {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #4ade80;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.price {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #0f172a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
}

.price small {
  font-size: 14px;
  font-weight: 500;
}

.turf-body {
  padding: 20px;
}

.turf-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.rating {
  color: #f59e0b;
  font-weight: 600;
}

.location {
  margin: 13px 0;
  font-size: 14px;
  color: #64748b;
}

.location i {
  color: #4ade80;
  margin-right: 6px;
}

.desc {
  color: #6b7280;
  font-size: 14px;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.amenities span {
  background: #ecfdf5;
  color: #15803d;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
}

.amenities i {
  margin-right: 3px;
}

.book-btn {
  background: linear-gradient(90deg, #4ade80, #22c55e);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.book-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

.about-section {
  background: #fff;
}

.about-img {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s;
}

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

.about-text {
  font-size: 17px;
  line-height: 32px;
  color: #64748b;
  margin-bottom: 25px;
}

.gallery-section {
  background: #fff;
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.video-section {
  background: #f8fafc;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 260px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4ade80;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 0 12px rgba(74, 222, 128, 0.25);
}

.play-btn:hover {
  background: #22c55e;
  color: #fff;
  transform: scale(1.1);
}

.testimonial-section {
  background: #f8fafc;
}

.testimonialSwiper {
  padding: 10px 5px 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  transition: 0.4s;
  height: 100%;
  border: 1px solid #22c55e;
}

.quote {
  width: 45px;
  height: 45px;
  background: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #64748b;
  margin-bottom: 25px;
  font-size: 14px;
}

.user {
  display: flex;
  align-items: center;
}

.user img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #4ade80;
}

.user h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.user span {
  display: block;
  font-size: 14px;
  color: #64748b;
  margin: 3px 0;
}

.stars {
  color: #fbbf24;
  font-size: 14px;
}

.testimonial-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #4ade80;
  opacity: 0.4;
}

.testimonial-section .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 20px;
}

.tbk-contact-info {
  background: #f8fafc;
}

.tbk-contact-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  height: 100%;
}

.tbk-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.tbk-contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: 0.35s;
}

.tbk-contact-card:hover .tbk-contact-icon {
  transform: rotate(360deg);
  background: #22c55e;
}

.tbk-contact-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.tbk-contact-card p {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
  color: #64748b;
}

.tbk-contact-card a {
  color: #64748b;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.tbk-contact-card a:hover {
  color: #4ade80;
}

.tbk-contact-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.tbk-contact-link:hover {
  text-decoration: none;
  color: inherit;
}

/*==============================
CARD
==============================*/
.xturf-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.xturf-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #38a54d, #56a69b);
  padding: 30px;
  overflow: hidden;
}

.xturf-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px,
      transparent 1px);
  background-size: 18px 18px;
  z-index: 0;
}

.xturf-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/*==============================
STATUS
==============================*/

.xturf-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
}

.xturf-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4cff8d;
  box-shadow: 0 0 8px #4cff8d;
  margin-right: 10px;
}

/*==============================
TITLE
==============================*/

.xturf-title {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 15px;
}

/*==============================
RATE BOXES
==============================*/

.xturf-rate-wrapper {
  display: flex;
  margin-bottom: 24px;
}

.xturf-rate-box {
  padding: 10px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.xturf-rate-box:first-child {
  margin-right: 12px;
}

.xturf-rate-box small {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}

.xturf-rate-box small i {
  color: #ffd44d;
  margin-right: 6px;
}

.xturf-rate-box h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}

.xturf-rate-box h3 span {
  font-size: 22px;
  font-weight: 500;
}

.xturf-rate-box p {
  color: #eef7ef;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0;
}

/*==============================
BUTTONS
==============================*/

.xturf-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.xturf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.3s;
  z-index: 2;
}

.xturf-btn:first-child {
  margin-right: 12px;
}

.xturf-btn i {
  margin-right: 8px;
  font-size: 17px;
}

.xturf-btn:hover {
  background: #fff;
  color: #38a54d;
}

/*==============================
RIGHT ICON
==============================*/

.xturf-watermark {
  opacity: 0.1;
}

.xturf-watermark i {
  font-size: 155px;
  color: #173f36;
}

/*==============================
FOOTER
==============================*/

.xturf-footer {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 18px 40px;
  color: #5c7485;
  font-size: 14px;
  font-weight: 500;
  flex-wrap: wrap;
}

.xturf-footer i {
  font-size: 20px;
  margin-right: 12px;
  color: #6b8797;
}

.xturf-footer strong {
  color: #43667f;
  margin-left: 5px;
}

.bk-payment-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(24, 66, 38, 0.12);
}

/*=========================
HEADER
=========================*/

.bk-payment-header {
  background: linear-gradient(135deg, #38a856, #4d9d75);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 20px;
  display: flex;
  align-items: center;
}

.bk-payment-header i {
  margin-right: 10px;
  font-size: 18px;
}

/*=========================
BODY
=========================*/

.bk-payment-body {
  padding: 20px;
}

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

.bk-summary-table {
  margin-bottom: 22px;
}

.bk-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #e9ecef;
}

.bk-summary-row span {
  color: #6f7d85;
  font-size: 15px;
}

.bk-summary-row strong {
  font-size: 15px;
  color: #1f2d3d;
}

.bk-summary-row .text-success {
  color: #2ea64f !important;
}

/*=========================
COUPON
=========================*/

.bk-coupon-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.bk-coupon-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9f8eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #36a852;
  margin-right: 10px;
  font-size: 12px;
}

.bk-coupon-box strong {
  color: #37a64d;
  font-size: 15px;
}

.bk-offer-badge {
  background: #e7f8e7;
  color: #38a652;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
}

/*=========================
TOTAL BOX
=========================*/

.bk-total-box {
  background: #1d263d;
  border-radius: 12px;
  padding: 18px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.bk-total-box small {
  display: block;
  color: #b8c1cf;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.bk-total-box h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
}

/*=========================
SECTION TITLE
=========================*/

.bk-section-title {
  color: #5b7278;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  margin-top: 18px;
}

/*=========================
OPTIONS
=========================*/

.bk-option {
  border: 1px solid #e6e9ed;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.bk-option:hover {
  border-color: #39a854;
}

.bk-option.active {
  border-color: #39a854;
  background: #edf9f0;
}

.bk-option strong {
  display: block;
  color: #243746;
  font-size: 15px;
  font-weight: 600;
}

.bk-option small {
  display: block;
  color: #7c8b94;
  margin-top: 2px;
  font-size: 12px;
}

.bk-option i.fa-circle-check {
  color: #37a852;
  font-size: 18px;
}

/*=========================
PAYMENT ICON
=========================*/

.bk-pay-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #dff6df;
  color: #36a852;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
}

.bk-pay-icon.blue {
  background: #e6f2ff;
  color: #2895ff;
}

/*=========================
BUTTON
=========================*/

.bk-confirm-btn {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #37a852, #42b36a);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.bk-confirm-btn i {
  margin-left: 8px;
}

.bk-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(56, 168, 82, 0.35);
}

/* turf booking */
.booking-header {
  background: linear-gradient(90deg, #152633 0%, #1a958d 100%);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 5px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #67f7d7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.booking-badge i {
  font-size: 14px;
}

.booking-header h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin: 12px 0 5px;
}

.booking-header p {
  color: #edf5f6;
  font-size: 14px;
  margin: 0;
}

.bkcal-wrapper {
  width: 100%;
}

.bkcal-top-card {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.bkcal-tabs {
  margin-bottom: 25px;
}

.bkcal-tab {
  border: 1px solid #9fa7b3;
  background: #fff;
  padding: 4px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin: 0 4px;
  color: #56606d;
  font-size: 14px;
  transition: 0.3s;
}

.bkcal-tab.active {
  background: #15998d;
  color: #fff;
  border-color: #15998d;
}

.bkcal-date-scroll {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding-bottom: 8px;
}

.bkcal-date-scroll::-webkit-scrollbar {
  height: 5px;
}

.bkcal-date-scroll::-webkit-scrollbar-thumb {
  background: #15998d;
}

.bkcal-date-card {
  min-width: 80px;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
}

.bkcal-date-card span {
  font-size: 12px;
  font-weight: 600;
  color: #5d6675;
}

.bkcal-date-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.bkcal-date-card small {
  color: #8b95a1;
}

.bkcal-date-card b {
  font-size: 10px;
  margin-top: 6px;
  color: #fff;
}

.bkcal-date-card.active {
  background: #15998d;
  color: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 18px rgba(22, 153, 141, 0.3);
}

.bkcal-date-card.active:hover {
  border: 1px solid #e2e8f0;
}

.bkcal-date-card.active span,
.bkcal-date-card.active small {
  color: #fff;
}

.bkcal-date-card:hover {
  border: 1px solid #15998d;
}

.bkcal-slot-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 24px;
}

.bkcal-slot-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}

.bkcal-slot-head i {
  color: #f6b21a;
  font-size: 18px;
}

.bkcal-divider {
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 20px;
}

.bkcal-slot-card {
  border: 1px solid #dbe5ef;
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  transition: 0.3s;
  cursor: pointer;
}

.bkcal-slot-card:hover {
  border-color: #15998d;
  box-shadow: 0 6px 20px rgba(21, 153, 141, 0.12);
}

.bkcal-slot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.bkcal-slot-top span {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
}

.bkcal-slot-top i {
  color: #b23a2d;
  font-size: 12px;
}

.bkcal-slot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bkcal-status {
  font-size: 12px;
  color: #15998d;
  font-weight: 600;
}

.bkcal-status i {
  margin-right: 4px;
  font-size: 12px;
}

.bkcal-price {
  font-size: 12px;
  color: #15998d;
  font-weight: 700;
}

.bkcal-slot-card.active {
  background: #15998d;
  border-color: #15998d;
  box-shadow: 0 8px 20px rgba(21, 153, 141, 0.25);
}

.bkcal-slot-card.active .bkcal-slot-top span,
.bkcal-slot-card.active .bkcal-slot-top i,
.bkcal-slot-card.active .bkcal-status,
.bkcal-slot-card.active .bkcal-status i,
.bkcal-slot-card.active .bkcal-price {
  color: #fff !important;
}

.bkbf-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.bkbf-header {
  background: #178f87;
  height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.bkbf-header i {
  width: 22px;
  height: 22px;
  background: #0d3742;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.bkbf-body {
  padding: 16px;
}

.bkbf-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.bkbf-label span {
  color: #ef4444;
}

.bkbf-input,
.bkbf-select {
  height: 40px;
  border: 1px solid #d9e2ec;
  border-radius: 9px;
  font-size: 14px;
  box-shadow: none !important;
}

.bkbf-input:focus,
.bkbf-select:focus {
  border-color: #15998d;
}

.bkbf-input::placeholder {
  color: #94a3b8;
}

.bkbf-total-box {
  height: 40px;
  border: 1px solid #d9e2ec;
  border-radius: 10px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #15998d;
}

.bkbf-due-box {
  color: #dc2626;
}

.bkbf-textarea {
  border: 1px solid #d9e2ec;
  border-radius: 10px;
  font-size: 14px;
  padding: 10px 12px;
  box-shadow: none !important;
  resize: both;
  min-height: 90px;
}

.bkbf-textarea:focus {
  border-color: #15998d;
}

.bkbf-btn {
  height: 44px;
  background: #15998d;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  transition: 0.3s;
}

.bkbf-btn:hover {
  background: #117d74;
  color: #fff;
}

.bkbf-btn:active {
  background: #15998d !important;
  color: #fff !important;
}

._ad_book {
  min-height: 38px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.95);
}

._label {
  font-size: 16px;
  font-weight: 600;
  color: #117d74;
  margin-bottom: 20px;
}

.xt-slot-status {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.xt-slot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.xt-slot-available {
  background: #fff;
  border: 1.5px solid #ccc;
}

.xt-slot-booked {
  background: #fca5a5;
}

.xt-slot-selected {
  background: #39a34b;
}

.offer-slider-section {
  background: #f7f7f7;
}

.offer-slider-section .swiper-slide {
  border-radius: 18px;
}

.offerSwiper {
  padding: 40px 70px;
  position: relative;
}

.offer-card {
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  transform: scale(0.85);
  opacity: 0.5;
}

.offer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.offerSwiper .swiper-slide-active .offer-card {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.offerSwiper .swiper-slide-prev .offer-card,
.offerSwiper .swiper-slide-next .offer-card {
  transform: scale(0.92);
  opacity: 0.8;
}

.offer-prev,
.offer-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.offer-prev:hover,
.offer-next:hover {
  background: #000;
  color: #fff;
}

.offer-prev {
  left: 0;
}

.offer-next {
  right: 0;
}

.offer-prev i,
.offer-next i {
  font-size: 18px;
}

/* membership  */
.membership-section {
  padding: 100px 0;
}

.membership-title {
  text-align: center;
  margin-bottom: 60px;
}

.membership-title span {
  color: #28a745;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.membership-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
}

.membership-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 2px solid transparent;
}

.membership-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.membership-header {
  padding: 30px;
  text-align: center;
  color: #fff;
}

.silver {
  background: linear-gradient(135deg, #9ca3af, #d1d5db);
}

.gold {
  background: linear-gradient(135deg, #f9b115, #ffdc73);
}

.platinum {
  background: linear-gradient(135deg, #222, #555);
}

.plan-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 32px;
}

.plan-name {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
}

.plan-price {
  font-size: 42px;
  font-weight: 600;
}

.plan-price span {
  font-size: 18px;
  font-weight: 500;
}

.membership-body {
  padding: 25px;
}

.membership-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.membership-body li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.membership-body li:last-child {
  border: none;
}

.membership-body li i {
  color: #28a745;
  margin-right: 10px;
}

.plan-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-weight: 600;
  margin-top: 30px;
  transition: 0.3s;
}

.silver-btn {
  background: #8b8b8b;
}

.gold-btn {
  background: #f4a000;
}

.platinum-btn {
  background: #111;
}

.plan-btn:hover {
  transform: translateY(-3px);
}

.popular {
  position: absolute;
  top: 18px;
  right: -40px;
  background: #28a745;
  color: #fff;
  padding: 8px 45px;
  transform: rotate(45deg);
  font-size: 13px;
  font-weight: 600;
}

.featured {
  border: 2px solid #f4a000;
  /* transform: scale(1.05); */
}

.featured:hover {
  transform: translateY(-12px);
}

.play {
  color: #fcfcfc;
  font-size: 25px;
  font-weight: 600;
}

.zone {
  color: #cae702;
  font-size: 25px;
  font-weight: 600;
  margin-left: 5px;
}

.logo-text {
  margin-bottom: 0;
}

.login-icon {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  background: #fef8f8;
  border-radius: 50%;
  width: 35px;
  font-weight: 800;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-icon:hover {
  color: #28a745;
}

.turf-login-btn {
  background: #198754;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  padding: 10px;
}

.turf-login-wrapper {
  background: linear-gradient(135deg, #0d6efd, #198754);
  padding: 40px 0;
}

.turf-login-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

._ad_login_img img {
  border-radius: 50%;
  width: 100%;
  max-width: 70px;
}

._ad_login_img {
  display: flex;
  justify-content: center;
}

.turf-login-subtitle {
  color: #777;
  margin-top: 10px;
}

.turf-login-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.turf-login-input {
  height: 45px;
  border-radius: 5px;
  padding-left: 45px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.turf-login-input:focus {
  border-color: #198754;
  box-shadow: none;
}

.turf-login-input-icon {
  position: absolute;
  top: 47px;
  left: 18px;
  color: #198754;
}

.turf-login-check {
  font-size: 14px;
}

.turf-login-forgot {
  color: #198754;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.turf-login-forgot:hover {
  color: #0d6efd;
}

.turf-login-btn:hover {
  background: #0d6efd;
  color: #fff;
}

.turf-login-register {
  font-size: 14px;
  margin-bottom: 0;
  color: #666;
}

.turf-login-register a {
  color: #198754;
  text-decoration: none;
  font-weight: 500;
}

.turf-login-register a:hover {
  color: #0d6efd;
}

.footer-map-box iframe {
  border-radius: 5px;
}

/*  */
.header .dropdown-toggle::after {
  display: none;
}

.header .dropdown-menu.show {
  top: 55px;
  font-size: 14px;
}

/* dashboar css */

/* Dashboard Main Wrapper */
.tb-dashboard-wrapper {
  background-color: #f4f6f9;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Top Mobile Bar */
.tb-topbar {
  background-color: #0f172a;
  color: #ffffff;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ffffff2b;
  border-top: 1px solid #ffffff2b;
}

.tb-toggle-btn {
  background: #0f172a;
  color: #fff;
  border: 1px solid #334155;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tb-toggle-btn:hover {
  background: #16a34a;
}

/* Main Layout Setup */
.tb-main-layout {
  display: flex;
  position: relative;
}

/* Sidebar Styles */
.tb-sidebar {
  width: 260px;
  background-color: #0f172a;
  color: #ffffff;
  min-height: calc(100vh - 57px);
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}

/* Sidebar Closed State */
.tb-sidebar.tb-collapsed {
  margin-left: -260px;
}

.tb-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #334155;
}

.tb-brand-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4ade80;
}

.tb-nav-list {
  list-style: none;
  padding: 15px 0;
  margin: 0;
}

.tb-nav-item .tb-nav-link {
  display: block;
  padding: 12px 20px;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.tb-nav-item .tb-nav-link:hover,
.tb-nav-item.active .tb-nav-link {
  background-color: #0f172a;
  color: #4ade80;
  border-left: 4px solid #4ade80;
}

.tb-logout-item {
  margin-top: 30px;
  border-top: 1px solid #334155;
}

/* Content Area */
.tb-content-area {
  flex-grow: 1;
  padding: 25px;
  width: 100%;
  overflow-x: hidden;
}

/* Stat Cards */
.tb-stat-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tb-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.tb-stat-label {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.tb-stat-value {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

/* Content Cards & Tables */
.tb-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tb-card-header {
  padding: 15px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.tb-table {
  width: 100%;
}

.tb-table th {
  background-color: #f8fafc;
  color: #475569;
  font-weight: 600;
  padding: 12px 10px;
  font-size: 14px;
  text-wrap: nowrap;
  border-bottom: 1px solid #e2e8f0;
}

.tb-table td {
  padding: 14px 20px;
  color: #334155;
}

/* Sidebar Icon Spacing */
.tb-nav-link .tb-icon {
  width: 20px;
  margin-right: 10px;
  font-size: 1rem;
  text-align: center;
}

/* Align Topbar Toggle Button */
.tb-toggle-btn i {
  margin-right: 5px;
}

/* Page Title */
.tb-page-title {
  color: #0f172a;
  font-weight: 700;
  font-size: 1.35rem;
}

/* Form Styling */
.tb-form-control {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
}

.tb-form-control:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.15);
}

/* Filter Pills for Bookings */
.tb-filter-pills .nav-link {
  color: #64748b;
  font-weight: 500;
  border-radius: 20px;
  padding: 6px 16px;
  margin-right: 8px;
}

.tb-filter-pills .nav-link.active {
  background-color: #16a34a;
  color: #ffffff;
}

/* Slots Grid Design */
.tb-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.tb-slot-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tb-slot-btn:hover:not(.disabled) {
  border-color: #16a34a;
  color: #16a34a;
}

.tb-slot-btn.active {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
}

.tb-slot-btn.disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
  border-color: #e2e8f0;
}

/* Custom Wallet Card */
.tb-wallet-card {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border-radius: 12px;
}



.past-slot {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(100%);
}

.booked {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(80%);
}

.fastfood-item.active {
  border: 2px solid #0891b2;
  background: #eef8fc;
}

.fastfood-modal {
  border-radius: 18px;

  overflow: hidden;
}

.food-card {
  position: relative;

  border: 1px solid #ddd;

  border-radius: 16px;

  padding: 18px;

  text-align: center;

  cursor: pointer;

  transition: 0.25s;

  background: #fff;

  height: 100%;
}

.food-card:hover {
  border-color: #0891b2;

  transform: translateY(-3px);

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.food-card.active {
  border: 2px solid #0891b2;

  background: #f3fbff;
}

.food-image {
  height: 85px;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 10px;
}

.food-image img {
  width: 80px;

  height: 80px;

  object-fit: cover;

  border-radius: 12px;
}

.food-price {
  font-size: 18px;

  font-weight: 700;

  color: #0ea5e9;

  margin-top: 6px;
}

.food-check {
  position: absolute;

  left: 12px;

  top: 12px;
}

.food-check input {
  display: none;
}

.food-check span {
  width: 22px;

  height: 22px;

  display: block;

  border-radius: 6px;

  border: 2px solid #bbb;

  background: #fff;
}

.food-check input:checked+span {
  background: #0891b2;

  border-color: #0891b2;
}

.food-check input:checked+span:after {
  content: "✓";

  color: #fff;

  font-size: 14px;

  display: flex;

  justify-content: center;

  align-items: center;

  height: 100%;
}

#fastfoodTotalDisplay {
  font-size: 22px;

  font-weight: 700;

  color: #0891b2;
}

.bkcal-date-card.disabled {
  opacity: 0.4;
  filter: blur(1px);
  pointer-events: none;
  cursor: not-allowed;
}

.loyalty-accordion {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.loyalty-header {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  color: #fff;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.loyalty-header i.fa-chevron-down {
  transition: transform 0.3s ease;
}

.loyalty-header.open i.fa-chevron-down {
  transform: rotate(180deg);
}

.loyalty-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.loyalty-table th {
  background: #f8f9fa;
  text-align: left;
  padding: 10px 15px;
  font-size: 12px;
  color: #1a202c;
  border-bottom: 1px solid #e5e7eb;
}

.loyalty-table td {
  padding: 10px 15px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #f1f1f1;
}

.loyalty-table tr:last-child td {
  border-bottom: none;
}

.loyalty-footer {
  background: #1a202c;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.loyalty-footer strong {
  color: #ffc107;
  font-size: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .tb-sidebar {
    position: absolute;
    z-index: 999;
    height: 100%;
    margin-left: -260px;
  }

  .tb-sidebar.tb-show {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .zone {
    font-size: 18px;
  }

  .play {
    font-size: 18px;
  }

  .navbar-brand img {
    width: 45px;
  }

  .about-img {
    margin-bottom: 10px;
  }

  .nav-link {
    margin: 0 8px;
    font-size: 14px;
  }

  .featured {
    transform: scale(1);
  }

  .featured:hover {
    transform: translateY(-12px);
  }

  .book-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 62px;
  }

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

@media (max-width: 767px) {
  .zone {
    font-size: 25px;
  }

  .play {
    font-size: 25px;
  }

  .navbar-brand img {
    width: 55px;
  }

  .nav-link {
    margin: 7px 0;
    font-size: 16px;
    padding: 5px;
    border-bottom: 1px solid #80808038;
  }

  .xturf-title {
    font-size: 26px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .hero {
    height: 500px;
  }

  .hero-content p {
    max-width: 100%;
    margin: 25px 0 25px;
    font-size: 18px;
    line-height: 30px;
  }

  .hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    max-width: 100%;
    line-height: 1.1;
  }

  .xturf-card {
    padding: 20px;
  }

  .xturf-btn {
    padding: 7px 17px;
  }

  .xturf-rate-box {
    padding: 8px 15px;
  }

  .xturf-right {
    display: none;
  }
}

@media (max-width: 576px) {
  .gallery-img {
    height: 160px;
    border-radius: 10px;
  }

  .video-card {
    height: 160px;
    border-radius: 10px;
  }

  .play-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .tbk-contact-card {
    padding: 10px;
  }

  .tbk-contact-icon {
    width: 50px;
    font-size: 18px;
    height: 50px;
  }

  .tbk-contact-card h4 {
    font-size: 16px;
  }

  .tbk-contact-card p {
    margin: 0;
    font-size: 12px;
    line-height: 18px;
    color: #64748b;
    word-break: break-all;
  }

  .tb-topbar {
    padding: 12px 15px;
  }

  .tb-user-badge {
    font-size: 14px;
  }

  .tb-content-area {
    padding: 15px;
  }

  .tb-page-title {
    font-size: 16px;
  }

  .turf-login-card {
    padding: 20px 15px;
  }

  .turf-login-forgot {
    font-size: 12px;
  }

  .turf-login-check {
    font-size: 12px;
  }

  .turf-login-register {
    font-size: 12px;
  }

  .turf-login-subtitle {
    font-size: 14px;
  }

  .zone {
    font-size: 20px;
  }

  .play {
    font-size: 20px;
  }

  .navbar-brand img {
    width: 50px;
  }

  .xturf-title {
    font-size: 18px;
  }

  .xturf-rate-box h3 {
    font-size: 18px;
  }

  .hero-content h5 {
    font-size: 16px;
  }

  .hero {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: normal;
    margin-bottom: 0;
  }

  .hero-content p {
    margin: 25px 0 25px;
    font-size: 16px;
    line-height: normal;
    max-width: 100%;
  }

  .btn2 {
    padding: 7px 25px;
  }

  .about-img img {
    height: auto;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .about-text {
    font-size: 14px;
    line-height: normal;
  }

  .section-title p {
    font-size: 14px;
    max-width: 100%;
  }

  .turf-body h4 {
    font-size: 18px;
  }

  .xturf-footer {
    padding: 10px;
  }
}

@media (min-width: 768px) {
  ._ad_bar {
    display: none !important;
  }
}