/* ===================================
   TURF KING RESTAURANT ABOUT SECTION
=================================== */

.tkc-resto-about-sec {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.tkc-resto-about-img {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.tkc-resto-about-img img {
    width: 100%;
    height: 550px;
    border-radius: 24px;
    object-fit: cover;
    transition: 0.4s ease;
}

@media(max-width:768px) {
    .tkc-resto-about-img img {
        height: 400px ;
    }
}


.tkc-resto-about-img:hover img {
    transform: scale(1.03);
}

.tkc-resto-exp-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #ff7a00;
    padding: 22px 28px;
    border-radius: 18px;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.tkc-resto-exp-badge h3 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}

.tkc-resto-exp-badge p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.tkc-resto-subtitle {
    display: inline-block;
    color: #ff7a00;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tkc-resto-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}

.tkc-resto-text {
    font-size: 16px;
    line-height: 32px;
    color: #666;
    margin-bottom: 35px;
}

.tkc-resto-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.tkc-resto-feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.tkc-resto-feature-box i {
    color: #ff7a00;
    font-size: 20px;
}

.tkc-resto-btn {
    padding: 14px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px) {

    .tkc-resto-about-img {
        margin-bottom: 40px;
    }

    .tkc-resto-title {
        font-size: 36px;
    }

}

@media(max-width:575px) {

    .tkc-resto-title {
        font-size: 30px;
    }

    .tkc-resto-feature-list {
        grid-template-columns: 1fr;
    }

    .tkc-resto-exp-badge {
        left: 15px;
        bottom: 15px;
        padding: 18px 22px;
    }

}








/* ===================================
   FOOD CATEGORIES SECTION
=================================== */

.tkc-food-cat-sec {
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}

.tkc-food-cat-head {
    max-width: 750px;
    margin: 0 auto 60px;
}

.tkc-food-cat-subtitle {
    display: inline-block;
    color: #ff7a00;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tkc-food-cat-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.tkc-food-cat-text {
    font-size: 16px;
    line-height: 30px;
    color: #666;
}

.tkc-food-cat-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px 20px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    height: 100%;
}

.tkc-food-cat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff7a00, #ff9d42);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 0;
}

.tkc-food-cat-card:hover::before {
    opacity: 1;
}

.tkc-food-cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.tkc-food-cat-icon {
    width: 100px;
    height: 100px;
    background: #fff7f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

.tkc-food-cat-icon i {
    font-size: 42px;
    color: #ff7a00;
    transition: 0.4s ease;
}

.tkc-food-cat-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
    color: #111;
}

.tkc-food-cat-card:hover h4 {
    color: #fff;
}

.tkc-food-cat-card:hover .tkc-food-cat-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.tkc-food-cat-card:hover .tkc-food-cat-icon i {
    color: #fff;
    transform: scale(1.1) rotate(8deg);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px) {

    .tkc-food-cat-title {
        font-size: 36px;
    }

}

@media(max-width:575px) {

    .tkc-food-cat-title {
        font-size: 28px;
    }

    .tkc-food-cat-card {
        padding: 28px 15px;
    }

    .tkc-food-cat-icon {
        width: 80px;
        height: 80px;
    }

    .tkc-food-cat-icon i {
        font-size: 32px;
    }

    .tkc-food-cat-card h4 {
        font-size: 18px;
    }

}









/* ===================================
   FEATURED FOOD SECTION
=================================== */

.tkc-food-item-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}


.tkc-food-item-img {
    position: relative;
    overflow: hidden;
}

.tkc-food-item-img img {
    width: 100%;
    height: 220px;
    /* pahle 280px tha */
    object-fit: cover;
    transition: 0.5s ease;
}

.tkc-food-item-card:hover .tkc-food-item-img img {
    transform: scale(1.06);
}

.tkc-food-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ff7a00;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.tkc-food-item-content {
    padding: 22px;
}

.tkc-food-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.tkc-food-item-top h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.tkc-food-price {
    color: #ff7a00;
    font-size: 20px;
    font-weight: 800;
}

.tkc-food-item-content p {
    font-size: 14px;
    line-height: 26px;
    color: #666;
    margin-bottom: 20px;
}

.tkc-food-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tkc-food-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.tkc-food-rating i {
    color: #ffb400;
}

.tkc-food-btn {
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.tkc-food-btn:hover {
    background: #ff7a00;
    color: #fff;
}





/* ===================================
   SPECIAL OFFER SECTION
=================================== */

.tkc-offer-sec {
    background: #111;
    position: relative;
    overflow: hidden;
}

.tkc-offer-card {
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    border-radius: 28px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
    height: 100%;
}

.tkc-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.tkc-offer-discount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff7a00;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.tkc-offer-tag {
    display: inline-block;
    color: #ff7a00;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tkc-offer-card h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.tkc-offer-card p {
    color: #bdbdbd;
    line-height: 28px;
    margin-bottom: 25px;
    font-size: 15px;
}

.tkc-offer-price-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 18px;
}

.new-price {
    color: #ff7a00;
    font-size: 32px;
    font-weight: 800;
}

.tkc-offer-btn {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.tkc-offer-btn:hover {
    background: #fff;
    color: #111;
}

.tkc-offer-img img {
    border-radius: 20px;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

@media(max-width:991px) {

    .tkc-offer-card {
        padding: 28px;
    }

    .tkc-offer-card h3 {
        font-size: 26px;
    }

}

@media(max-width:767px) {

    .tkc-offer-img {
        margin-top: 25px;
    }

}











/* ===================================
   RESTAURANT GALLERY SECTION
=================================== */

.tkc-rest-gallery-sec {
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}

.tkc-rest-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.tkc-rest-gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    transition: 0.5s ease;
}

/* Overlay */

.tkc-rest-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
    border-radius: 24px;
}

/* Plus Button */

.tkc-rest-gallery-plus {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: scale(0.6);
    transition: 0.4s ease;
}

.tkc-rest-gallery-plus i {
    color: #111;
    font-size: 24px;
}

/* Hover */

.tkc-rest-gallery-card:hover .tkc-rest-gallery-overlay {
    opacity: 1;
}

.tkc-rest-gallery-card:hover .tkc-rest-gallery-plus {
    transform: scale(1);
}

.tkc-rest-gallery-card:hover .tkc-rest-gallery-img {
    transform: scale(1.08);
}

/* Button */

.tkc-gallery-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 34px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.tkc-gallery-btn:hover {
    background: #ff7a00;
    color: #fff;
}

/* Fancybox */

.fancybox__button--close {
    background: #fff !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    top: 15px !important;
    right: 15px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.fancybox__button--close svg {
    color: #000 !important;
}

.fancybox__backdrop {
    background: rgba(0, 0, 0, 0.92);
}

/* Responsive */

@media(max-width:575px) {

    .tkc-rest-gallery-img {
        height: 240px;
    }

    .tkc-rest-gallery-plus {
        width: 60px;
        height: 60px;
    }

}








/* ===================================
   WHY CHOOSE US SECTION
=================================== */

.tkc-why-sec {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.tkc-why-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px 30px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid #ececec;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tkc-why-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff7a00, #ff9f43);
    transition: 0.4s ease;
    z-index: 0;
}

.tkc-why-card:hover::before {
    height: 100%;
}

.tkc-why-card>* {
    position: relative;
    z-index: 2;
}

.tkc-why-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 122, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s ease;
}

.tkc-why-icon i {
    font-size: 34px;
    color: #ff7a00;
    transition: 0.4s ease;
}

.tkc-why-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

.tkc-why-card p {
    color: #666;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    transition: 0.4s ease;
}

/* Hover */

.tkc-why-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tkc-why-card:hover .tkc-why-icon {
    background: rgba(255, 255, 255, 0.18);
}

.tkc-why-card:hover .tkc-why-icon i,
.tkc-why-card:hover h3,
.tkc-why-card:hover p {
    color: #fff;
}

/* Responsive */

@media(max-width:767px) {

    .tkc-why-card {
        padding: 30px 22px;
    }

    .tkc-why-card h3 {
        font-size: 21px;
    }

}




/* sevice page */

.service-cards-section {
    padding: 0px 0;
    background: #f8fafc;
}

/* title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.section-title p {
    color: #64748b;
    font-size: 16px;
}

/* grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* card */
.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* glow effect */
.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 60%);
    transform: scale(0);
    transition: 0.5s;
}

.service-card:hover::before {
    transform: scale(1);
}

/* icon */
.service-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* text */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* hover effect */
.service-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}





.why-choose-pro {
    padding: 0px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.section-title p {
    color: #64748b;
}

/* layout */
.why-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* side columns */
.why-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* item */
.why-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #38bdf8;
}

.why-item .icon {
    font-size: 26px;
}

/* text */
.why-item h3 {
    font-size: 16px;
    margin: 0;
    color: #0f172a;
}

.why-item p {
    font-size: 13px;
    color: #64748b;
    margin: 3px 0 0;
}

/* center badge */
.why-center {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.badge-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.badge-circle h2 {
    font-size: 36px;
    margin: 0;
}

.badge-circle p {
    font-size: 14px;
    margin-top: 5px;
}

/* responsive */
@media (max-width: 992px) {
    .why-layout {
        flex-direction: column;
    }

    .why-center {
        margin: 20px 0;
    }
}








.tkc-pricing-section {
    background: #f8fafc;
}

/* title */
.tkc-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.tkc-section-title h2 {
    font-size: 36px;
    color: #0f172a;
}

.tkc-section-title p {
    color: #64748b;
}

/* grid */
.tkc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* card */
.tkc-pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

/* hover */
.tkc-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #38bdf8;
}

/* header */
.tkc-pricing-header {
    font-size: 26px;
    margin-bottom: 10px;
}

/* price */
.tkc-pricing-card h2 {
    font-size: 34px;
    color: #0ea5e9;
    margin-bottom: 15px;
}

.tkc-pricing-card h2 span {
    font-size: 14px;
    color: #64748b;
}

/* list */
.tkc-pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tkc-pricing-card ul li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

/* button */
.tkc-pricing-card a {
    display: inline-block;
    padding: 10px 20px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.tkc-pricing-card a:hover {
    background: #0284c7;
}

/* featured */
.tkc-featured {
    border: 2px solid #0ea5e9;
    transform: scale(1.05);
}

.tkc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0ea5e9;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
}

/* responsive */
@media (max-width: 992px) {
    .tkc-pricing-grid {
        grid-template-columns: 1fr;
    }

    .tkc-featured {
        transform: scale(1);
    }
}





/* blog page */
/* =========================
   TKC BLOG SECTION
========================= */

.tkc-blog-section {
    background: #f8fafc;
    padding: 60px 0;
}

/* CARD */
.tkc-blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
    height: 100%;
}

.tkc-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.tkc-blog-img {
    position: relative;
    overflow: hidden;
}

.tkc-blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.tkc-blog-card:hover .tkc-blog-img img {
    transform: scale(1.05);
}

/* TAG */
.tkc-blog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0284c7;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* BODY */
.tkc-blog-body {
    padding: 18px;
}

.tkc-blog-meta {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.tkc-blog-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.tkc-blog-body p {
    font-size: 14px;
    color: #475569;
    margin: 0;
}





/* badminton page */

.badminton-about {
    background: #fff;
    position: relative;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
}

.experience-box {
    position: absolute;
    bottom: 25px;
    right: -20px;
    background: #d4af37;
    color: #fff;
    padding: 20px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.experience-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.experience-box span {
    font-size: 14px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, .1);
    color: #d4af37;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

.section-title span {
    color: #d4af37;
}

.section-desc {
    color: #666;
    line-height: 1.9;
    margin-top: 20px;
    font-size: 16px;
}

.feature-box {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    transition: .3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    width: 55px;
    height: 55px;
    background: #d4af37;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature-box h5 {
    margin-bottom: 6px;
    font-weight: 700;
}

.feature-box p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

@media(max-width:991px) {

    .section-title {
        font-size: 32px;
    }

    .about-img {
        height: 400px;
    }

    .experience-box {
        right: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }
}














.badminton-schedule-section {
    background: #f8f9fa;
}

.schedule-card,
.fees-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.schedule-card:hover,
.fees-card:hover {
    transform: translateY(-6px);
}

.schedule-icon {
    width: 65px;
    height: 65px;
    margin: auto;
    border-radius: 50%;
    background: #d4af37;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.schedule-card h3,
.fees-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.batch-time {
    display: inline-block;
    background: rgba(212, 175, 55, .12);
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0 15px;
}

.schedule-list,
.fees-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.schedule-list li,
.fees-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.schedule-list li:last-child,
.fees-list li:last-child {
    border-bottom: none;
}

.schedule-list i,
.fees-list i {
    color: #d4af37;
    margin-right: 8px;
}

.fees-card {
    position: relative;
    border: 2px solid #d4af37;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.price-box {
    margin: 12px 0 18px;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    vertical-align: top;
}

.price {
    font-size: 52px;
    font-weight: 800;
    color: #d4af37;
    line-height: 1;
}

.month {
    font-size: 15px;
    color: #777;
}

.fees-card .btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
}

.weekly-info {
    margin-top: 40px;
}

.weekly-item {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.weekly-item i {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 12px;
}

.weekly-item h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.weekly-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}














.coach-section {
    background: #fff;
}

.coach-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.coach-img-box {
    position: relative;
}

.coach-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
}

.coach-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #d4af37;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.coach-badge i {
    margin-right: 6px;
}

.coach-designation {
    display: inline-block;
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.coach-name {
    font-size: 34px;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
}

.coach-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.coach-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.achievement-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #ececec;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: .3s;
}

.achievement-chip i {
    color: #d4af37;
}

.achievement-chip:hover {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
}

.achievement-chip:hover i {
    color: #fff;
}

.coach-btn-wrap {
    margin-top: 25px;
}

.coach-btn {
    background: #d4af37;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.coach-btn:hover {
    background: #b8952f;
    color: #fff;
}

@media (max-width: 991px) {

    .coach-wrapper {
        padding: 20px;
    }

    .coach-img {
        height: 350px;
    }

    .coach-name {
        font-size: 28px;
    }

    .achievement-chip {
        font-size: 13px;
        padding: 8px 14px;
    }

}























.tkba-why-choose-section {
    background: #f8f9fa;
}

.tkba-feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 12px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid #f1f1f1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.tkba-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.tkba-feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .12);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.tkba-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.tkba-feature-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.tkba-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d4af37;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s ease;
}

@media(max-width:991px) {

    .tkba-feature-card {
        padding: 22px 18px;
    }

    .tkba-feature-title {
        font-size: 20px;
    }

}









/* ===================================
   TRAINING PROGRAM SECTION
=================================== */
.tkca-propath-training-zone {
    background: #f8fafc;
}

.tkca-propath-program-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: .3s ease;
}

.tkca-propath-program-card:hover {
    transform: translateY(-5px);
}

.active-program {
    border: 2px solid #ffc107;
}

.tkca-propath-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff4d6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tkca-propath-icon i {
    font-size: 24px;
    color: #f4a100;
}

.tkca-propath-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tkca-propath-desc {
    color: #6b7280;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 15px;
}

.tkca-propath-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tkca-propath-list li {
    padding: 6px 0 6px 22px;
    border-bottom: 1px solid #eee;
    position: relative;
    font-size: 14px;
}

.tkca-propath-list li:last-child {
    border-bottom: none;
}

.tkca-propath-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: 700;
}










/* ==========================
   TRAINING SCHEDULE SECTION
========================== */

.tkca-chronofit-schedule-section {
    background: #f8fafc;
}

.tkca-chronofit-batch-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    position: relative;
    height: 100%;
    transition: .35s ease;
}

.tkca-chronofit-batch-card:hover {
    transform: translateY(-8px);
}

.tkca-chronofit-featured {
    border: 2px solid #f4a100;
}

.tkca-chronofit-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f4a100;
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.tkca-chronofit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff4d6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tkca-chronofit-icon i {
    font-size: 28px;
    color: #f4a100;
}

.tkca-chronofit-batch-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tkca-chronofit-time {
    font-size: 18px;
    font-weight: 600;
    color: #f4a100;
    margin-bottom: 20px;
}

.tkca-chronofit-batch-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tkca-chronofit-batch-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.tkca-chronofit-batch-card ul li:last-child {
    border: none;
}

.tkca-chronofit-batch-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}







/* cafe page munu section */
/* Turf King Core Typography & Design */
.turf-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d92323;
    /* Brand Red Title */
    margin-bottom: 5px;
}

.turf-title-divider {
    width: 60px;
    height: 3px;
    background-color: #d92323;
    margin: 0 auto;
}

/* Category Block Settings */
.turf-cat-block {
    background: transparent;
    padding: 0px;
}

.turf-cat-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d92323;
    /* Red Categories */
    margin-bottom: 25px;
    position: relative;
}

/* Flexbox Menu Row Setup */
.turf-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* Gap handled by row margin */
}

.turf-item-row {
    display: flex;
    align-items: flex-end;
    /* Dots and text aligned perfectly at bottom */
    width: 100%;
    margin-bottom: 12px;
}

/* Menu Item Name Style */
.turf-item-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
    /* Prevents text from breaking */
    display: inline-flex;
    align-items: center;
    flex-grow: 1;
    /* Allows name to take full width up to the price */
}

/* Pointing Finger Icon Setup */
.turf-icon {
    font-style: normal;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* ─── PERFECT DOT-LEADER BETWEEN NAME & PRICE ─── */
.turf-item-name::after {
    content: "";
    flex-grow: 1;
    border-bottom: 1.5px dotted #c43232;
    /* Beautiful subtle red dotted line */
    margin: 0 10px 5px 10px;
    /* 10px spacing from name and price */
}

/* Menu Item Price Style */
.turf-item-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: #d92323;
    /* Prices in Vibrant Red */
    white-space: nowrap;
    margin-left: auto;
    /* Pushes the price to the absolute right side */
}

/* Sub Sections Dividers for Mixed Categories */
.turf-sub-divider {
    border-bottom: 1px dashed #ccc;
    margin: 15px 0;
}