:root {
    --primary-red: #E84329;
    --primary-yellow: #F39C12;
    --dark-bg: #000000;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --gray-bg: rgba(0, 0, 0, 0.5);
}

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

body {
    /*font-family: 'Marhey', sans-serif;*/
    font-family: 'Poppins', sans-serif;
}
body a{ color: #F9E32B;text-decoration: none;}
body a:hover{ color: #E84329}

/* Navigation */
.navbar {
    background-color: transparent !important;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 45px;
}

@media (max-width: 768px) {
.navbar-brand img {
    height: 40px;
    }
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 18px;
    margin: 0 15px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.current-menu-item .nav-link {
    color: var(--primary-red) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.current-menu-item .nav-link::after {
    width: 100%;
}

.online.menu-item .nav-link {
    background: linear-gradient(45deg, #f7971e, #ffd200); /* Attractive warm gradient */
    color: #fff !important; /* White text for contrast */
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 6px 14px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-item.onlie .nav-link:hover,
.nav-item.onlie .nav-link:focus {
    background: linear-gradient(45deg, #ffd200, #f7971e);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.75);
    color: #fff !important;
    transform: scale(1.1);
}


.navbar-toggler {
    border-color: var(--primary-red);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E74C3C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.social-icons {
    position: fixed;
    top: 100px;
    right: 28px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.social-icons a {
    background: #E84329;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.social-icons a:hover {
    background: #F9E32B;
    color: white;
    text-decoration: none;
}


/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.owl-carousel .owl-item {
    height: 100vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn-custom {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom {
    background-color: #F9E32B;
    color: var(--text-light);
}

.btn-primary-custom:hover {
    background-color: var(--primary-red);
	color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline-custom:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: var(--text-light);
    font-size: 36px;
}

/* Owl Carousel Navigation */
.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.owl-theme .owl-nav button {
    background-color: rgba(231, 76, 60, 0.8) !important;
    color: var(--text-light) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}

.owl-theme .owl-nav button:hover {
    background-color: var(--primary-red) !important;
    transform: scale(1.1);
}

.owl-theme .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--primary-red);
    width: 30px;
    border-radius: 6px;
}


/*Branch Section*/

.food-top-left, .food-top-right, .food-bottom-left, .food-bottom-right {
    position: absolute;
    z-index: 2;
}
.branches.style-2 {
    background-image: url(../images/bg9.jpg), url(../images/bg10.jpg), url(../images/bg11.jpg);background-size: 300px 300px;
    background-position: top left, top right, bottom left;
    background-repeat: no-repeat;
}
.section-padding {
    padding: 120px 0;
}
.central-section {
            position: relative;
            z-index: 10;
            /*padding-top: 3.5rem;
            padding-bottom: 3rem;*/
            text-align: center;
        }
        .central-icon {
            color: #F9E32B;
            font-size: 2.7rem;
        }
        .central-title {
            font-family: 'Dancing Script', cursive, Arial, sans-serif;
            color: #eab308;
            font-weight: 700;
            font-size: 2.8rem;
            margin: 1.1rem 0 0.3rem 0;
        }
        .central-desc {
            color: #555;
            font-size: 1rem;
            margin-bottom: 2rem;
        }
        .map-container {
            position: relative;
            width: 75vw;
            max-width: 800px;
            margin: 0 auto;
        }
        .map-image {
            width: 100%;
            height: auto;
        }
        .map-pointer {
            position: absolute;
            font-size: 2.2rem;
            color: #666;
            cursor: pointer;
            transition: color 0.2s;
        }
        .map-pointer:hover, .map-pointer:focus {
            color: #eab308;
            z-index: 10;
        }
        .custom-tooltip {
            display: block;
            position: absolute;
            min-width: 180px;
            background: #fffbe6;
            color: #222;
            padding: 0.65rem 1.1rem;
            border-radius: 0.8rem;
            box-shadow: 0 2px 10px rgba(80,80,80,0.16);
            font-size: 1rem;
            white-space: pre-line;
            z-index: 20;
            top: 50%;
            left: 42px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(-50%) translateX(15px) scale(0.98);
            transition: opacity 0.42s cubic-bezier(.4,0,.2,1), 
                        transform 0.42s cubic-bezier(.4,0,.2,1);
        }
        .map-pointer.hovered .custom-tooltip {
            opacity: 1;
            pointer-events: all;
            transform: translateY(-50%) translateX(6px) scale(1);
        }
        /* Tooltip arrow */
        .custom-tooltip:before {
            content: '';
            position: absolute;
            left: -13px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 7px 13px 7px 0;
            border-style: solid;
            border-color: transparent #fffbe6 transparent transparent;
        }
        @media (max-width: 900px) {
            .food-top-left, .food-top-right,
            .food-bottom-left, .food-bottom-right {
                width: 130px;
            }
            .map-container { width: 98vw; }
            .custom-tooltip {
                font-size: .95rem;
                min-width: 130px;
                left: 40px;
            }
        }
        

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Mad with love Section */

.madewith-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.parallax-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/home-parallex-bg.jpg'); /* <-- Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    filter: brightness(0.6); /* Optional: darken for contrast */
    z-index: 1;
}


.feature-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-red);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 36px;
    color: var(--text-light);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
}

.menu-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-card img {
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.menu-card:hover img {
    transform: scale(1.1);
}

.menu-card .card-body {
    padding: 30px;
}

.menu-card h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.menu-card p {
    color: #666;
    margin-bottom: 20px;
}

.menu-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(231, 76, 60, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--text-light);
    font-size: 48px;
}

.section-about-main{background: #fbeee5;}    
    .section-label {
      color: #E84329;
      font-weight: 700;
     /* font-size: 1.13rem;*/
    }
    .section-title {
      font-weight: 700;
      letter-spacing: -0.5px;
      font-size: 3rem;
      color: #171717;
      margin-bottom: 24px;
      margin-top: 6px;
      line-height: 1.07;
    }
    .section-desc, .section-desc2 {
      font-size: 1.04rem;
      color: #222;
      margin-bottom: 20px;
      line-height: 1.6;
      font-family: 'Roboto', Arial, sans-serif;
    }
    .section-desc2 {
      margin-bottom: 0;
    }
    .img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }
    .chef-img {
      width: 410px;
      height: 465px;
      object-fit: cover;
      border-radius: 5px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.11);
      background: #fff;
    }
    .circle-text {
      position: absolute;
      left: 0;
      bottom: 0;
      /*width: 300px;
      height: 300px;*/
      pointer-events: none;
    }
    @media (max-width: 991px) {
      .chef-img {
        width: 95vw;
        height: 270px;
      }
    }
    @media (max-width: 767px) {
      .section-title { font-size: 2rem; }
      .img-wrap { min-height: 230px; }
    }
    
/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #2d2d2d;
    color: var(--text-light);
}

.testimonials-section .section-title {
    color: var(--text-light);
}

.testimonials-section .section-title::after {
    background-color: var(--primary-red);
}

.testimonials-section .lead {
    color: #ccc;
}

.testimonial-card {
    background-color: #3a3a3a;
    padding: 40px;
    border-radius: 0;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background-color: #404040;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-red);
    margin-right: 20px;
}

.testimonial-info h5 {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    color: rgba(231, 76, 60, 0.2);
    font-family: Georgia, serif;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--primary-yellow);
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.location-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 20px;
    font-size: 24px;
    font-weight: 600;
}

.location-body {
    padding: 30px;
}

.location-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    gap: 15px;
}

.location-info-item i {
    color: var(--primary-red);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.location-info-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 3px;
}

.location-info-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.btn-location {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-red);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.btn-location:hover {
    background-color: var(--primary-red);
    color: white;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.blog-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-red);
    color: white;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #999;
    font-size: 13px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-red);
}

.blog-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-red);
    gap: 12px;
}

.blog-link i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline-custom-dark {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline-custom-dark:hover {
    background-color: var(--primary-red);
    color: var(--text-light);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    background-color: #fbeee5;
    padding: 100px 0;
}

.contact-info {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 50px;
    height: 100%;
}

.contact-info h3 {
    color: var(--primary-red);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 30px;
}

.contact-info-item i {
    color: var(--primary-red);
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
}

.form-control {
    border-radius: 0;
    border: 2px solid #ddd;
    padding: 12px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer h4 {
    color: var(--primary-red);
    margin-bottom: 25px;
    font-size: 22px;
}

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

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-red);
    color: var(--text-light);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-red);
    color: #F9E32B;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
        letter-spacing: 4px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .btn-custom {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
    }
}


/*About Us Page*/


.page-header {
    position: relative;
    display: block;
    padding: 200px 0 200px;
    z-index: 1;
}
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.page-header-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(53, 62, 50, 0.4);
    z-index: -1;
}
.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 15;
}
.page-header__inner h2 {
    font-size: 60px;
    color: #fff;
    line-height: 60px;
    margin-bottom: 13px;
    font-weight: 700;
}
.thm-breadcrumb {
    position: relative;
    display: block;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.thm-breadcrumb li + li {
    margin-left: 30px;
}
.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: var(--primary-red);
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.thm-breadcrumb li::before {
    position: absolute;
    top: 16px;
    left: -21px;
    content: "";
    background-color: var(--primary-red);
    height: 2px;
    width: 8px;
}
.thm-breadcrumb li:first-child::before {display: none;}
.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    color: var(--primary-red);
    font-size: 16px;
    text-decoration: none;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

/*section {
      position: relative;
      width: 100%;
      margin: 0 auto;
      overflow: hidden;
    }*/

    /* Example for custom diagonal backgrounds and graphics */
    .bg-diagonal {
      position: absolute; top: 0; left: 0; z-index: 0;
      width: 100%; height: 480px;
      background: linear-gradient(120deg, #fbe6d6 67%, #fff7ef 33%);
      clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    }
    .food-img {
      border-radius: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.08);
    }
    .oval-img {
      position: relative;
      top: -50px;   
      border-radius: 80% / 50%;
      border: 4px solid #f9e32b;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,.14);
    }
    .circle-img {
      position: relative;
      top: 100px;  
      border-radius: 80% / 50%;
      border: 4px solid #f9e32b;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,.11);
    }
    .button-custom {
            background: #F9E32B;
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            border-radius: 36px;
            padding: 10px 38px;
            border: none;
            margin-top: 8px;
            transition: background .2s;
        }
        .button-custom:hover {
            background: #E84329;
        }
    .doodles { position: absolute; top: 20px; right: 24px; z-index: 1; opacity: 0.8; }
    .graphics-top { position: absolute; top: 38px; right: 160px; z-index: 2;}


    .aboutSection {
        background: #fff;
        padding: 0;
        margin-top: 80px;
        margin-bottom: 50px;
        min-height: 520px;
        display: flex;
        align-items: center;
    }
    .aboutSection .about-left {
            position: relative;
            min-height: 420px;
        }
        .aboutSection .image-card {
            position: absolute;
            box-shadow: 0 4px 18px rgba(0,0,0,0.09);
            border-radius: 17px;
        }
        .aboutSection .img1 {
            top: 15px;
            left: 0;
            z-index: 2;
            width: 380px;
            transform: rotate(-25deg);
        }
        .aboutSection .img2 {
            top: 110px;
            left: 155px;
            z-index: 3;
            width: 350px;
            transform: rotate(20deg);
        }
        .aboutSection .about-right {
            padding-left: 40px;
        }
        .aboutSection .about-title {
            font-size: 54px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #292929;
        }
        .aboutSection .about-title .highlight {
            color: #E84329;
        }
        .aboutSection .about-description {
            color: #3f3f3f;
            margin: 24px 0 22px 0;
            line-height: 1.45;
            max-width: 650px;
        }
        .aboutSection .order-btn {
            background: #F9E32B;
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            border-radius: 36px;
            padding: 10px 38px;
            border: none;
            margin-top: 8px;
            transition: background .2s;
        }
        .aboutSection .order-btn:hover {
            background: #E84329;
        }
        /* Responsive tweaks */
        @media (max-width: 992px) {
            .aboutSection .about-title { font-size: 34px; }
            .aboutSection .about-description { font-size: 16px; }
            .aboutSection .image-card.img1 { width: 240px; }
            .aboutSection .image-card.img2 { width: 200px; left: 60px; }
            .aboutSection .about-right { padding-left: 20px !important; }
        }
        @media (max-width: 768px) {
            .aboutSection .about-section { flex-direction: column; }
            .aboutSection .about-left { min-height: 180px; height: 200px; }
            .aboutSection .image-card.img1 { width: 120px; top: 18px; left: 20px; }
            .aboutSection .image-card.img2 { width: 120px; top: 70px; left: 60px; }
            .aboutSection .about-right { padding: 18px 0 0 0; }
        }




    .service-section .services-title {
      color: #111;
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      text-align: center;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }
    .service-section .main-title {
      text-align: center;
      color: #E84329;
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      font-weight: 400;
      margin-bottom: 2.2rem;
      letter-spacing: 1px;
      line-height: 1.15;
    }
    .service-section .service-col {
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 30px;
    }
    .service-section .service-col .fa {
      color: #E84329;
      font-size: 42px;
      margin-bottom: 13px;
    }
    .service-section .service-title {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #111;
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    .service-section .service-desc {
      color: #555;
      font-size: 15px;
      line-height: 1.4;
      margin: 0 auto;
      max-width: 250px;
    }
    .service-section .arch-image-frame {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
      margin-top: 18px;
    }
    .service-section .arch-image {
      width: 450px;
      height: 500px;
      border-radius: 0 0 180px 180px/0 0 220px 220px;
      overflow: hidden;
      border: 2px solid #f9e32b;
      background: #212e2d;
      box-shadow: 0 8px 25px #0005;
      object-fit: cover;
      display: block;
    }
    .service-section .contact-btn {
      background: #E84329;
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: 14px 44px;
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 600;
      margin: 30px auto 0 auto;
      display: block;
      letter-spacing: 1px;
      transition: background .2s;
    }
    .service-section .contact-btn:hover {
      background: #b68a25;
    }
    @media (max-width: 991px) {
      .service-section .main-title { font-size: 32px; }
      .service-section .arch-image { width: 220px; height: 250px; }
    }
    @media (max-width: 600px) {
      .service-section .main-title { font-size: 21px; }
      .service-section .arch-image { width: 130px; height: 140px; }
      .service-section .service-desc { font-size: 13px; }
      .service-section .contact-btn { padding: 10px 20px; }
    }


    .landing-section {
            /*height: 100vh;
            min-height: 500px;
            width: 100vw;*/
            width: 100%;
            overflow: hidden;
            background: #000;
            padding: 0;
        }
        
        .main-content {
            display: flex;
            height: calc(100vh - 80px);
            align-items: stretch;
        }
        .main-left {
            background: url('../images/black-linen.png') repeat, #111;
            flex: 1 1 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2vw;
        }
        .hero-inner {
            max-width: 500px;
            margin: 0 auto;
            text-align: left;
        }
        .hero-inner small {
            font-size: 23px;
            color: #fff;
            margin-bottom: 18px;
            display: block;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.18;
            color: #fff;
        }
        .hero-btn {
            background: var(--primary-red);;
            color: #fff;
            padding: 18px 36px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: .5px;
            border: none;
            box-shadow: 0 4px 24px #d845457c;
            transition: background .2s;
        }
        .hero-btn:hover {
            background: #F9E32B;
        }
		a.hero-btn.btn-table {
            background: #F9E32B;
            color: #171717;
            padding: 18px 36px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: .5px;
            border: none;
            box-shadow: 0 4px 24px #F9E32B;
            transition: background .2s;
        }
        a.hero-btn.btn-table:hover {
            background: #E84329;
        }
        /* Right panel */
        .main-right {
            flex: 1 1 0;
            position: relative;
            background: #000;
            overflow: visible;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.img-hover-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.steak-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 22px 0;
    transition: transform .4s cubic-bezier(.17,.67,.83,.67), box-shadow .4s;
    box-shadow: 0 8px 30px #000c;
}
        .img-hover-wrap:hover .steak-img {
            transform: scale(1.07);
            box-shadow: 0 16px 40px #d845459e;
        }
        /* Best prices badge */
        .best-badge {
            position: absolute;
            left: -100px;
            top: 250px;
            background: var(--primary-red);
            color: #fff;
            font-size: 1.2rem;
            font-family: 'Montserrat', sans-serif;
            border-radius: 50%;
            padding: 38px 28px 28px 28px;
            font-weight: 600;
            transform: rotate(-17deg);
            box-shadow: 0 6px 28px #0006;
            z-index: 8;
            letter-spacing: 2px;
        }
        /* Responsive */
        @media(max-width:1100px){
            .logo-bar { padding-left: 10px; }
            .main-content { flex-direction: column; }
            .main-left, .main-right { flex: 0 0 50vh; min-height: 340px; }
            .img-hover-wrap { max-width: 520px; }
        }
        @media(max-width:800px){
            .main-right { padding: 20px 0; }
            .logo-bar { height: 65px; }
            .hero-title { font-size: 2rem; }
        }
        @media(max-width:600px){
            .main-content { flex-direction: column; }
            .main-left, .main-right { flex: 1 1 270px; min-height: 220px; }
            .img-hover-wrap { max-width: 320px; }
            .best-badge { left: -35px; top: 40px; padding: 20px 10px 10px 10px; font-size: .98rem;}
            .hero-inner small { font-size: 16px;}
        }


/*Blog Page*/  

.sidebar-sticky {
            position: sticky;
            top: 24px;
        }
        .sidebar-block {
            background: #fff;
            margin-bottom: 28px;
            border-radius: 10px;
            box-shadow: 0 2px 12px #0001;
            padding: 24px 18px 20px 18px;
        }
        .sidebar-block h5 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #444;
            letter-spacing: 1.5px;
        }
        .category-list, .tag-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .category-list li, .tag-list li {
            padding: 5px 0;
            color: #555;
            font-size: 15px;
            border-bottom: 1px solid #eee;
            margin-bottom: 4px;
        }
        .recent-posts-list {
            list-style: none;
            padding-left: 0;
        }
        .recent-posts-list li {
            display: flex;
            align-items: center;
            margin-bottom: 13px;
        }
        .recent-posts-list img {
            width: 38px;
            height: 38px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 13px;
        }
        .recent-posts-info {
            display: flex;
            flex-direction: column;
            font-size: 13px;
            line-height: 1.2;
        }
        .sidebar-block .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
        }
        .tag-list li {
            padding: 4px 11px;
            background: #f3efe5;
            color: #534532;
            font-size: 13px;
            border-radius: 12px;
            border: none;
            margin-bottom: 2px;
        }
        /* Blog Posts */
        .blog-post {
            display: flex;
            margin-bottom: 38px;
            background: #fff;
            border-radius: 13px;
            box-shadow: 0 4px 22px #ececed;
            overflow: hidden;
        }
        .blog-post-img {
            width: 220px;
            min-width: 220px;
            height: 165px;
            object-fit: cover;
            border-radius: 12px 0 0 12px;
        }
        .blog-post-body {
            padding: 22px 26px 18px 26px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .blog-title {
            font-size: 19px;
            font-weight: bold;
            color: #2d2d2d;
            margin-bottom: 12px;
            line-height: 1.1;
        }
        .blog-meta {
            font-size: 12px;
            color: #888;
            margin-bottom: 8px;
        }
        .blog-desc {
            font-size: 14px;
            color: #424242;
            margin-bottom: 10px;
        }
        .read-more {
            font-weight: 500;
            font-size: 13px;
            color: #E84329;
            text-decoration: none;
            margin-top: 10px;
        }
        .read-more:hover {
            color: #c62d15;
        }
        .sidebar-block a{ color: #424242; }
        .sidebar-block a:hover{ color: #E84329; }
        @media (max-width: 991px){
            .blog-post-img { width: 120px; min-width: 120px; height: 90px; }
            .blog-post-body { padding: 13px 14px 10px 14px; }
            .blog-title { font-size: 16px; }
        }
        @media (max-width: 768px){
            .sidebar-sticky { position: static; }
            .container { max-width: 100%; }
            .blog-post { flex-direction: column; }
            .blog-post-img { width: 100%; min-width: 100%; height: 170px; border-radius: 12px 12px 0 0; }
            .blog-post-body { padding: 16px 10px 10px 10px; }
        }


/*Blog Details Page*/

.blog-card {
            background: #fff;
            border-radius: 1rem;
            box-shadow: 0 2px 8px rgba(30,34,90,0.12), 0 0.5px 1.5px rgba(30,34,90,0.12);
            padding: 2rem 2.5rem;
            margin-bottom: 2rem;
            transition: box-shadow 0.3s;
        }
        /*.blog-card:hover {
            box-shadow: 0 6px 19px rgba(30,34,90,0.18), 0 1.5px 2.8px rgba(30,34,90,0.13);
        }*/
        .blog-image {
            width: 100%;
            max-height: 340px;
            border-radius: 0.7rem;
            object-fit: cover;
            margin-bottom: 1.5rem;
        }
        .blog-meta i {
            color: #c62d15;
            margin-right: 4px;
        }
        .blog-title {
            font-size: 2.2rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }
        .blog-meta {
            font-size: 1rem;
            color: #6e7b8a;
            margin-bottom: 1.2rem;
        }
        .blog-content {
            color: #20263a;
            line-height: 1.8;
            font-size: 1.18rem;
        }
        .blog-tags .badge {
            margin-right: 0.5rem;
            background: #fbeee5;
            color: #c62d15;
            font-size: 1rem;
        }
        .sidebar {
            background: #fff;
            border-radius: 1rem;
            padding: 1.8rem 2rem;
            box-shadow: 0 2px 8px rgba(30,34,90,0.1);
        }
        .sidebar h5 {
            font-weight: 600;
            margin-bottom: 1rem;
            border-bottom: 2px solid #c62d15;
            padding-bottom: 0.3rem;
            color: #c62d15;
        }
        .sidebar .author-info {
            text-align: center;
            margin-bottom: 2rem;
        }
        .author-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 0.8rem;
        }
        .author-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: #20263a;
        }
        .author-role {
            font-size: 0.9rem;
            color: #6e7b8a;
        }
        .recent-posts li, .categories li {
            margin-bottom: 0.7rem;
            list-style: none;
        }
        .recent-posts a, .categories a {
            text-decoration: none;
            color: #444;
            font-weight: 500;
        }
        .recent-posts a:hover, .categories a:hover {
            text-decoration: underline;
            color: #c62d15;
        }  
        
/*Branches Page*/ 

.landing-page-header {
            position: relative;
            display: block;
            padding: 100px 0 0;
            z-index: 1;
        }
        .landing-page-header .banner-content,
        .landing-page-header .banner-form {
            flex: 1;
            padding: 2rem 0rem;
        }
        .landing-page-header .banner-content {
            width: 100%;
            text-align: left;
            margin-top: 40px;
        }
        .landing-page-header .banner-content h1 {
            font-weight: 800;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
        }
        .landing-page-header .banner-content p {
            font-size: 1.25rem;
            font-weight: 500;
            max-width: 500px;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
        }
        .landing-page-header .contact-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 1.5rem;
            padding: 2.5rem 2rem;
            box-shadow: 0 3px 20px rgba(25, 93, 230, 0.25);
            color: #222;
            max-width: 450px;
            margin-left: auto;
        }
        .landing-page-header .contact-section h2 {
            text-align: left;
            color: #E84329;
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #E84329;
            padding-bottom: 0.3rem;
        }
        .landing-page-header .form-control,
        .landing-page-header .btn-primary {
            border-radius: 50px;
            padding: 10px 18px;
            font-size: 1rem;
            transition: box-shadow 0.3s ease;
        }
        .landing-page-header .form-control:focus {
            box-shadow: 0 0 8px #195de6;
            border-color: #195de6;
        }
        .landing-page-header .btn-primary {
            background-color: #F9E32B;
            border: none;
            width: 100%;
            font-weight: 600;
            padding: 12px;
            margin-top: 1.2rem;
        }
        .landing-page-header .btn-primary:hover {
            background-color: #E84329;
        }
        .landing-page-header .form-control {
            border: 2px solid #F9E32B;
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .landing-page-header .banner {
                flex-direction: column;
                height: auto;
                padding: 3rem 1rem;
            }
            .landing-page-header .banner-content,
            .landing-page-header .banner-form {
                max-width: 100%;
                padding: 1rem;
                margin-bottom: 2rem;
            }
            .landing-page-header .contact-section {
                max-width: 100%;
                margin-left: 0;
            }
            .landing-page-header .banner-content h1 {
                font-size: 2.8rem;
            }
        }
 
/* Food Details page*/

.single-service-two {
    position: relative;
    padding-top: 91px;
    background: #fbeee5;
}
.single-service-two .left-content {
    position: relative;
    display: block;
}
.single-service-two .left-content .text {
    position: relative;
    display: block;
    margin-bottom: 64px;
}
.single-service-two .left-content .text h2 {
    position: relative;
    display: block;
    /*font-size: 45px;*/
    line-height: 55px;
    /*font-family: 'Roboto', sans-serif;*/
    color: #E84329;
    font-weight: 700;
    margin-bottom: 21px;
}
.single-service-two .left-content .text p {
    position: relative;
    display: block;
    font-size: 1.1rem;
    line-height: 28px;
    font-family: 'Barlow', sans-serif;
    color: #555;
    margin-bottom: 0;
}
.single-service-two .left-content .image-box {
    position: relative;
    margin-bottom: -60px;
    z-index: 1;
}
.single-service-two .right-content {
    position: relative;
    display: block;
    margin-left: 100px;
}
.single-service-two .right-content h3 {
    position: relative;
    display: block;
    /*font-size: 32px;*/
    line-height: 45px;
    /*font-family: 'Roboto', sans-serif;*/
    color: #E84329;
    font-weight: 700;
    margin-bottom: 18px;
}
.single-service-two .right-content p {
    position: relative;
    display: block;
    font-size: 1.1rem;
    line-height: 28px;
    font-family: 'Barlow', sans-serif;
    color: #555;
/*     margin-bottom: 38px; */
}
.single-service-two .right-content .list li {
    position: relative;
    display: block;
    font-size: 1.1rem;
    line-height: 28px;
    font-family: 'Barlow', sans-serif;
    color: #171717;
    font-weight: 500;
    margin-bottom: 12px;
    padding-left: 36px;
}
.single-service-two .right-content .list li:before {
    --wpr-bg-cd8106be-8d6b-4389-82e3-46f11e706597: url(https://desiplumbers.com.au/wp-content/themes/deshiplumber/assets/images/icons/icon-71.png);
}
.single-service-two .right-content .list li:before {
    position: absolute;
    content: "";
    background-image: var(--wpr-bg-cd8106be-8d6b-4389-82e3-46f11e706597);
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
}
.single-service-two .right-content .list li:before {
    color: #d90429;
}
.landing-image-box img{max-width:100%;}

.featured-food-img {
          width: 100%;
          border-radius: 0.5rem;
          box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .food-description {
          margin-top: 2rem;
          font-size: 1.1rem;
          line-height: 1.6;
        }
        .gallery-img {
          border-radius: 0.5rem;
          box-shadow: 0 4px 10px rgba(0,0,0,0.1);
          transition: transform 0.3s ease;
          cursor: pointer;
        }
        .gallery-img:hover {
          transform: scale(1.05);
        }        
   
  .contact-info i {
          color: #d95f02;
          font-size: 1.5rem;
          margin-right: 15px;
        }
        .contact-info p {
          font-size: 1.1rem;
          margin-bottom: 15px;
        }
        .btn-primary {
          background-color: #d95f02;
          border-color: #d95f02;
        }
        .btn-primary:hover {
          background-color: #b04a01;
          border-color: #b04a01;
        }
        .form-control:focus {
          border-color: #d95f02;
          box-shadow: 0 0 8px rgba(217, 95, 2, 0.5);
        }     

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #E84329;
	font-weight: bold;
    /*border-color: #E84329*/
    }
    .nav-tabs .nav-link{color: #171717;font-weight: 600;}
    .dropdown-item.active, .dropdown-item:active {
    background-color: #E84329;
    }

    .menu-section .menu-img {
/*       width: 200px;
      height: 200px; */
      object-fit: cover;
      border-radius: 10px;
    }
    .menu-section .menu-item {
      padding: 1rem 0;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: flex-start;
      justify-content: start;
    }
    .menu-section .menu-details {
      margin-left: 1rem;
      flex: 1;
    }
    .menu-section .menu-title {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: .2rem;
    }
    .menu-section .menu-desc {
      color: #666;
      font-size: .97rem;
      margin-bottom: 0.5rem;
    }
    .menu-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 0.3rem;
    }
    .menu-section .menu-price {
      font-weight: 600;
      font-size: 1.05rem;
      color: #E84329;
      margin-bottom: 0;
    }
    .category-tabs .nav-link {
      font-size: 1rem;
      font-weight: 500;
    }
    .category-header {
      font-size: 1.25rem;
      font-weight: 500;
      margin: 1.5rem 0 .5rem 0;
    }
  .menu-section .book-btn {
    padding: 0.3rem 1.25rem;
    font-size: 0.96rem;
	color: #fff;
    background: #E84329;
    border: 1px solid #E84329;
}
.menu-section .book-btn:hover {background: #171717;border: 1px solid #171717;}
.menu-section .book-table {
    padding: 0.3rem 1.25rem;
    font-size: 0.96rem;
	color: #fff;
    background: #171717;
    border: 1px solid #171717;
}
.menu-section .book-table:hover {background: #E84329;border: 1px solid #E84329;}

@media (max-width: 768px) {
	.single-service-two .right-content {
		margin-left: 0;
	}
}

.cta-panel {
    background: linear-gradient(90deg, #e843298a 60%, #d32626 100%);
    color: #fff;
    border-radius: 2.2rem;
    box-shadow: 0 3px 12px #fae2bb2e;
    margin-bottom: 1.7rem;
    padding: 3rem 2rem 3rem 2rem;
}
@media (max-width: 768px) {
    .cta-panel {
        padding: 1rem 1rem 1.5rem 1rem;
    }
	
	.cta-panel .hero-btn {
		background: var(--primary-red);
		color: #fff;
		padding: 10px 20px;
		border-radius: 5px;
		font-weight: 600;
		font-size: 15px;
		letter-spacing: .5px;
		border: none;
		box-shadow: 0 4px 24px #d845457c;
		transition: background .2s;
	}
  .cta-panel a.hero-btn.btn-table {
    background: #F9E32B;
    color: #171717;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .5px;
    border: none;
    box-shadow: 0 4px 24px #F9E32B;
    transition: background .2s;
}
}