@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Montserrat:wght@400;500;600&display=swap');

:root {
    --primary: #b81508;
    --primary-hover: #9b1206;
    --accent: #FF8C00;
    --text: #111111;
    --text-light: #666666;
    --bg: #ffffff;
    --bg-alt: #f8f8f8;
    --white: #ffffff;
    --border: #eeeeee;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-strong: rgba(0, 0, 0, 0.15);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
}

/* Body background reset */
body {
    background-color: var(--bg);
    color: var(--text);
}

/* Prevent any element from causing horizontal scroll */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fix Bootstrap container-fluid overflow */
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

/* Common Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(179, 0, 0, 0.3);
}

.section-padding {
    padding: 80px 0;
}

/* Header & Nav Refinements */
.navbar {
    min-height: 70px;
    /* Changed from height to min-height */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    /* Sticky position to keep it at top */
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Force hide any scrollbars */
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    color: var(--text);
    font-size: 38px;
    /* Increased size */
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Cinzel Decorative', cursive;
    /* New Font */
    font-weight: 700;
}

.header-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    /* New Font */
    font-weight: 600;
    font-size: 14px;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active svg {
    opacity: 1;
}

.nav-link svg {
    opacity: 0.7;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover svg {
    opacity: 1;
    color: var(--primary);
}

/* Header Section - Modern & Clean */
.headerSection {
    min-height: calc(100vh - 70px);
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.headerSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://assets.touch2success.com/static/b1cb275a788a9c10f60a93682b1e7039/img/1725989079php2CBZrS.jpg') center/cover no-repeat;
    z-index: 1;
}

/* .headerSection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 2;
} */



/* Background moved to body for fixed effect */

.headerWrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 3;
}

.headerContentBox {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 45px;
    border-radius: 20px;
    max-width: 550px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.headerContentBox h1 {
    font-size: 52px;
    color: #1a1a2e;
    margin-bottom: 25px;
    line-height: 1.15;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
}

.headerContentBox p {
    font-size: 16px;
    color: #4a4a6a;
    margin-bottom: 35px;
    line-height: 1.9;
    letter-spacing: 0.3px;

}

.headerImageBox {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerImageBox img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

.orderBtn {
    background-color: #B30000;
    color: #fff;
    padding: 18px 50px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(179, 0, 0, 0.3);
}

.orderBtn:hover {
    background-color: #8B0000;
    box-shadow: 0 15px 40px rgba(179, 0, 0, 0.4);
    color: #fff;
}

@media (max-width: 991px) {
    .headerWrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .headerContentBox {
        max-width: 100%;
        padding: 40px 30px;
    }

    .headerContentBox h1 {
        font-size: 42px;
    }

    .headerImageBox {
        width: 100%;
    }

    .headerImageBox img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .headerSection {
        min-height: auto;
        padding: 15px 0;
    }

    .headerWrapper {
        padding: 0 10px;
        gap: 20px;
    }

    .headerContentBox {
        padding: 20px 15px;
        border-radius: 15px;
        margin: 0 5px;
    }

    .headerContentBox h1 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .headerContentBox p {
        font-size: 13px;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .orderBtn {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
    }

    .headerImageBox img {
        border-radius: 15px;
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .headerSection {
        padding: 10px 0;
    }

    .headerWrapper {
        padding: 0 8px;
        gap: 15px;
    }

    .headerContentBox {
        padding: 18px 12px;
        border-radius: 12px;
        margin: 0;
    }

    .headerContentBox h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .headerContentBox p {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .orderBtn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .headerImageBox img {
        max-height: 200px;
    }
}

/* Old styles - keeping for compatibility */
.headerRow {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    /* Stronger shadow */
    border-radius: 20px;
    overflow: hidden;
    border: none;
    justify-content: center;
    /* Center columns */
    margin: 40px auto;
    /* Centering margin */
    display: flex;
    position: relative;
    /* Establish stacking context */
    z-index: 10;
    /* Bring above background pseudo-elements */
}

.headerContent {
    padding: 60px 80px;
}

.headerContent h1 {
    font-size: 56px;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.headerContent p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.headerRight {
    height: 100%;
    min-height: 600px;
    padding: 15px;
    /* Add padding to create white border effect */
    display: flex;
    align-items: center;
}

.headerRightImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.headerRow:hover .headerRightImg {
    /* No animation */
}

@media (max-width: 991px) {
    .headerContent {
        padding: 40px;
        text-align: center;
    }

    .headerContent h1 {
        font-size: 42px;
    }

    .headerRight {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .headerSection {
        padding: 30px 0;
    }

    .headerContent h1 {
        font-size: 32px;
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://assets.foodhub.com/static/7bf61517155adc94ef751351ce40234c/img/1727426993phpI5nOYC.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* About Us Section Refinements */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.aboutUsScetion {
    position: relative;
    background-color: var(--bg);
    /* Ensure opaque background */
    padding-top: 80px;
    /* Add some padding */
}

.about-text h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 800;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.7;

}

.about-images {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-1 {
    width: 75%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 10px solid var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.orange-box {
    position: absolute;
    top: 10%;
    left: -30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 16px;
    max-width: 220px;
    font-weight: 700;
    z-index: 3;
    font-size: 18px;
    line-height: 1.4;
    box-shadow: 0 15px 30px rgba(184, 21, 8, 0.2);
}

/* How It Works Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 0;
}

.step-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid var(--border);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(184, 21, 8, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fef2f2;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Payment Video Section */
.headerSection {
    padding: 60px 0;
    position: relative;
    background-color: transparent;
    overflow: visible;
}

.headerSection .container {
    max-width: 1210px;
    /* Reduced width to match About Us card */
    margin: 0 auto;
}

.paymentSection {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.paymentSection video {
    width: 100%;
    display: block;
}

.paymentSection .desktopPayment {
    display: block;
}

.paymentSection .mobilePayment {
    display: none;
}

@media (max-width: 768px) {
    .paymentSection .desktopPayment {
        display: none;
    }

    .paymentSection .mobilePayment {
        display: block;
    }
}

/* How It Works Rolling Text */
.rolling-text-container {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.rolling-text {
    display: inline-block;
}

.rolling-text span {
    font-size: 80px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    margin-right: 50px;
    opacity: 0.2;
}

/* Reviews */
.reviews-section {
    background-color: rgba(184, 21, 8, 0.8);
    /* Semi-transparent primary */
    color: var(--white);
    padding: 100px 0;
}

/* Footer Improvements */
.footer {
    background-color: var(--bg-alt);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-col p {
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #ddd;
}

.hygiene-badge {
    width: 150px;
    margin-top: 20px;
}

@media (max-width: 992px) {

    .about,
    .steps-container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .about-images {
        height: auto;
    }

    .about-img-2 {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .orange-box {
        position: static;
        transform: none;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 20px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.menu-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: 0.3s;
    border: 1px solid var(--border);
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(184, 21, 8, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu-item-header h3 {
    font-size: 18px;
    color: var(--text);
    margin: 0;
    font-weight: 700;
}

.price {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.menu-item p {
    color: var(--text-light);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.menu-footer {
    text-align: center;
    margin-top: 60px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 15px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(184, 21, 8, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: 0.3s;
    font-weight: 700;
}

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

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

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: #fef2f2;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-text p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-alt);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(184, 21, 8, 0.05);
}

.btn-full {
    width: 100%;
    border-radius: 8px;
    padding: 15px;
}

@media (max-width: 992px) {

    .menu-grid,
    .gallery-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Section */
.reviews-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 100px 0;
}

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

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

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

.stars {
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
}

.review-card strong {
    font-size: 16px;
    font-weight: 700;
}

/* Footer Refinements */
.footer-logo h3 {
    color: var(--primary);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text);
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    font-size: 14px;
    transition: 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-hygiene {
    display: flex;
    gap: 20px;
    align-items: center;
}

.payment-icons {
    height: 30px;
    opacity: 0.8;
}

.hygiene-box {
    background: #00703c;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 11px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hygiene-box span {
    font-size: 18px;
}

.copyright {
    font-size: 14px;
    color: var(--text-light);
}

/* About Us Section (New Structure) */
.aboutUsScetion {
    padding: 80px 0;
    background: #fff;
}

.aboutUsScetion .offerSection {
    margin-bottom: 50px;
}

.aboutUsScetion .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.aboutContent {
    padding: 40px 20px;
}

.aboutContent h3 {
    color: #B30000;
    font-size: 56px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.aboutContent p {
    color: #333;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 400;
}

.aboutContent .orderBtn {
    background-color: #B30000;
    color: white;
    padding: 16px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.aboutContent .orderBtn:hover {
    background-color: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 0, 0, 0.3);
}

.aboutRight {
    position: relative;
    height: 600px;
    overflow: visible;
}

.aboutRight .aboutImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.aboutRight .topLeft {
    position: absolute;
    top: -20px;
    left: -30px;
    background-color: #FF8C00;
    color: white;
    padding: 28px 32px;
    border-radius: 20px;
    border: 5px solid white;
    max-width: 350px;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.aboutRight .topLeft p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
    color: white;
}

.aboutRight .topRight {
    position: absolute;
    bottom: -20px;
    right: -30px;
    background-color: #B30000;
    color: white;
    padding: 28px 32px;
    border-radius: 20px;
    border: 5px solid white;
    max-width: 350px;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.aboutRight .topRight p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
    color: white;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .aboutUsScetion .row {
        flex-direction: column;
    }

    .aboutRight {
        height: auto;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 5px;
    }

    .aboutRight .aboutImg {
        width: 100%;
        height: auto;
        border-radius: 15px;
        order: 2;
    }

    .aboutRight .topLeft {
        position: static;
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        border-radius: 15px;
        order: 1;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .aboutRight .topRight {
        position: static;
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        border-radius: 15px;
        order: 3;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .aboutContent h3 {
        font-size: 36px;
    }
}

/* Gallery Section with Swiper */
.gallerySection {
    padding: 80px 0;
    background: #fff;
}

.gallerySection .container-fluid h2 {
    text-align: center;
    font-size: 120px;
    color: #B30000;
    text-transform: uppercase;
    margin-bottom: 60px;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: 10px;
    background: linear-gradient(180deg, #B30000 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(179, 0, 0, 0.3);
    filter: drop-shadow(0 4px 20px rgba(179, 0, 0, 0.2));
}

.galleryContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.swiper-container {
    width: 100%;
    padding: 50px 0 80px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px !important;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.carouselHover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 30px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 0 0 20px 20px;
    min-height: 150px;
}

.carouselHoverContent {
    text-align: center;
    color: white;
    width: 100%;
}

.galleryDishName {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    color: white;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dishBtn {
    background-color: transparent;
    color: white;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    border: none;
}

.dishBtn:hover {
    color: #FF6B6B;
    transform: none;
    box-shadow: none;
}

.swiper-button-prev,
.swiper-button-next {
    color: #B30000;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #B30000;
    color: white;
}

@media (max-width: 768px) {
    .gallerySection .container-fluid h2 {
        font-size: 60px;
        letter-spacing: 5px;
    }

    .swiper-slide img {
        height: 300px;
    }

    .galleryDishName {
        font-size: 24px;
    }
}

/* ========================================
   TABLE BOOKING PAGE STYLES
   ======================================== */

.booking-section {
    min-height: calc(100vh - 70px);
    background-color: var(--bg-alt);
    padding: 40px 0;
}

/* Sidebar Styles */
.booking-sidebar {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 110px;
}

.sidebar-section {
    padding: 30px 25px;
    border-bottom: 1px solid var(--border);
}

.sidebar-section h3 {
    font-size: 24px;
    color: var(--text);
    margin: 0;
}

.sidebar-menu {
    padding: 15px 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: var(--text);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.sidebar-item:hover {
    background-color: var(--bg-alt);
    border-left-color: var(--primary);
    color: var(--primary);
}

.sidebar-item:hover svg {
    opacity: 1;
}

.sidebar-item.active {
    background-color: rgba(184, 21, 8, 0.05);
    border-left-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.sidebar-item.active svg {
    opacity: 1;
}

/* Booking Form Container */
.booking-form-container {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px var(--shadow);
}

.booking-title {
    font-size: 28px;
    color: var(--text);
    margin-bottom: 30px;
    font-weight: 400;
}

/* Form Inputs */
.booking-input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    color: var(--text);
    background-color: var(--white);
    transition: all 0.3s;
}

.booking-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 21, 8, 0.1);
}

.booking-input::placeholder {
    color: #999;
}

/* Phone Input */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 21, 8, 0.1);
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 12px;
    background-color: var(--bg-alt);
    border-right: 1px solid #ddd;
}

.country-code-select {
    padding: 0;
    background-color: transparent;
    border: none;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    outline: none;
}

.country-code-select:focus {
    outline: none;
}

.flag-icon {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
}

.phone-input {
    border: none !important;
    box-shadow: none !important;
    flex: 1;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
    pointer-events: none;
}

/* Date and Select Inputs */
input[type="date"].booking-input,
select.booking-input {
    cursor: pointer;
}

select.booking-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

/* Textarea */
textarea.booking-input {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.btn-booking {
    width: 100%;
    max-width: 300px;
    margin-top: 10px;
    font-size: 16px;
    padding: 14px 40px;
}

/* Responsive */
@media (max-width: 991px) {
    .booking-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .booking-form-container {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 20px 0;
    }

    .booking-form-container {
        padding: 25px 20px;
    }

    .booking-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .sidebar-section {
        padding: 25px 20px;
    }

    .sidebar-item {
        padding: 15px 20px;
    }

    .btn-booking {
        max-width: 100%;
    }
}

/* ========================================
   CHATBOT STYLES
   ======================================== */

/* Chatbot Button */
.chatbot-button {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(184, 21, 8, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(184, 21, 8, 0.5);
}

.chatbot-button.hidden {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF8C00;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Chatbot Window */
.chatbot-window {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: scale(0);
    opacity: 0;
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 9998;
    overflow: hidden;
}

.chatbot-window.open {
    transform: scale(1);
    opacity: 1;
}

/* Header */
.chatbot-header {
    background: linear-gradient(135deg, var(--primary), #9b1206);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.chatbot-status {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.chatbot-header-actions {
    display: flex;
    gap: 10px;
}

.header-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Messages Container */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
}

.user-message {
    justify-content: flex-end;
}

.assistant-message {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
}

.user-message .message-bubble {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.assistant-message .message-bubble {
    background: white;
    color: var(--text);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.message-bubble p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.message-time {
    font-size: 10px;
    opacity: 0.6;
    display: block;
    margin-top: 5px;
}

/* Typing Indicator */
.typing-indicator .message-bubble {
    padding: 12px 20px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

/* Chat Images */
.chat-images {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.chat-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.chat-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
}

.cta-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateX(3px);
}

/* Suggestions */
.chatbot-suggestions {
    padding: 6px 12px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-chip {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.suggestion-chip:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Input Area */
.chatbot-input-container {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
}

#chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

#chatbot-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 21, 8, 0.1);
}

.send-btn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.send-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.send-btn:active {
    transform: scale(0.95);
}

/* Professional Chat Menu Styles */
.message-bubble p {
    white-space: pre-line;
    /* Preserve line breaks for menu display */
}

.chat-menu-category {
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 15px 0 8px;
    display: block;
    border-bottom: 2px solid rgba(184, 21, 8, 0.1);
    padding-bottom: 4px;
}

.chat-menu-item {
    margin-bottom: 12px;
    padding-left: 8px;
    border-left: 2px solid #eee;
}

.chat-menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.chat-menu-price {
    color: var(--primary);
    font-weight: 800;
}

.chat-menu-desc {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
    display: block;
    margin-top: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-window {
        width: 300px;
        height: 400px;
        bottom: 70px;
        right: 10px;
        border-radius: 12px;
        max-width: calc(100vw - 20px);
        max-height: 70vh;
    }

    .chatbot-header {
        padding: 12px 15px;
    }

    .chatbot-header-info h3 {
        font-size: 15px;
    }

    .chatbot-status {
        font-size: 10px;
    }

    .chatbot-messages {
        padding: 12px;
    }

    .chatbot-button {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
    }

    .message-bubble {
        max-width: 85%;
        padding: 10px 12px;
        font-size: 13px;
    }

    .chatbot-input-container {
        padding: 10px;
    }

    .chatbot-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .chatbot-send {
        width: 36px;
        height: 36px;
    }

    .quick-actions {
        padding: 8px 12px;
        gap: 6px;
    }

    .quick-action-btn {
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ======================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .headerContentBox h1 {
        font-size: 46px;
    }

    .gallerySection .container-fluid h2 {
        font-size: 80px;
    }
}

/* Tablets */
@media (max-width: 991px) {

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 15px 0;
        width: 100%;
        justify-content: flex-start;
    }

    /* Header Section */
    .headerWrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .headerContentBox {
        max-width: 100%;
        padding: 35px 25px;
    }

    .headerContentBox h1 {
        font-size: 38px;
    }

    .headerContentBox p {
        font-size: 15px;
    }

    .headerImageBox {
        width: 100%;
    }

    .headerImageBox img {
        max-width: 100%;
        border-radius: 20px;
    }

    /* About Section */
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-images {
        height: auto;
    }

    .about-img-2 {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .orange-box {
        position: static;
        transform: none;
        max-width: 100%;
        margin-bottom: 20px;
    }

    /* Steps */
    .steps-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-card {
        padding: 35px 25px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Menu */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About Us New Section */
    .aboutContent h3 {
        font-size: 36px;
    }

    .aboutRight {
        height: 400px;
        margin-top: 30px;
    }

    .aboutRight .topLeft,
    .aboutRight .topRight {
        max-width: 220px;
        padding: 18px;
        font-size: 14px;
    }

    .aboutRight .topLeft {
        top: -15px;
        left: -15px;
    }

    .aboutRight .topRight {
        bottom: -15px;
        right: -15px;
    }

    /* Gallery Swiper */
    .swiper-slide {
        width: 300px !important;
        height: 400px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {

    /* General */
    .section-padding {
        padding: 40px 0;
    }

    .container {
        padding: 0 12px;
        max-width: 100%;
    }

    .container-fluid {
        padding: 0 10px !important;
        max-width: 100%;
    }

    /* Typography */
    .section-title {
        font-size: 24px;
    }

    /* Navbar */
    .navbar {
        height: 55px;
        padding: 0 10px;
    }

    .logo h1 {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .nav-menu {
        top: 55px;
    }

    .nav-wrapper {
        padding: 0 5px;
    }

    /* Header Section */
    .headerSection {
        min-height: auto;
        padding: 15px 0 20px;
    }

    .headerWrapper {
        padding: 0 12px;
        gap: 20px;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }

    .headerContentBox {
        padding: 20px 18px;
        border-radius: 12px;
        max-width: 100%;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .headerContentBox h1 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.25;
        word-wrap: break-word;
    }

    .headerContentBox p {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.6;
        word-wrap: break-word;
    }

    .orderBtn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        display: block;
        border-radius: 8px;
    }

    .headerImageBox {
        width: 100%;
    }

    .headerImageBox img {
        border-radius: 12px;
        max-height: 220px;
        width: 100%;
        object-fit: cover;
    }

    /* Hero */
    .hero {
        height: 60vh;
    }

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

    .hero-content p {
        font-size: 15px;
    }

    /* About Section */
    .about-text h2 {
        font-size: 28px;
    }

    /* About Us New */
    .aboutUsScetion {
        padding: 50px 0;
    }

    .aboutContent {
        padding: 20px 0;
        text-align: center;
    }

    .aboutContent h3 {
        font-size: 28px;
    }

    .aboutContent p {
        font-size: 15px;
    }

    .aboutRight {
        height: 350px;
    }

    .aboutRight .topLeft,
    .aboutRight .topRight {
        max-width: 180px;
        padding: 15px;
        font-size: 13px;
        border-radius: 15px;
    }

    .aboutRight .topLeft p,
    .aboutRight .topRight p {
        font-size: 13px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .gallerySection {
        padding: 50px 0;
    }

    .gallerySection .container-fluid h2 {
        font-size: 40px;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .swiper-slide {
        width: 260px !important;
        height: 350px;
    }

    .galleryDishName {
        font-size: 20px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 16px;
    }

    /* Menu */
    .menu {
        padding: 60px 0;
    }

    .menu-categories {
        gap: 8px;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-item {
        padding: 20px;
    }

    /* Reviews */
    .reviews-section {
        padding: 60px 0;
    }

    .review-card {
        padding: 25px;
    }

    /* Contact */
    .contact {
        padding: 60px 0;
    }

    .contact-form {
        padding: 25px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }

    .payment-hygiene {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Steps */
    .step-card {
        padding: 30px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-card h3 {
        font-size: 20px;
    }

    /* Buttons */
    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Rolling Text */
    .rolling-text span {
        font-size: 50px;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .navbar {
        height: 50px;
        padding: 0 8px;
    }

    .logo h1 {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .nav-menu {
        top: 50px;
    }

    .headerSection {
        padding: 10px 0 15px;
    }

    .headerWrapper {
        padding: 0 8px;
        gap: 15px;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }

    .headerContentBox {
        padding: 18px 15px;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .headerContentBox h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .headerContentBox p {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .orderBtn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 6px;
    }

    .headerImageBox {
        width: 100%;
    }

    .headerImageBox img {
        max-height: 180px;
        border-radius: 10px;
        width: 100%;
        object-fit: cover;
    }

    .aboutContent h3 {
        font-size: 22px;
    }

    .gallerySection .container-fluid h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .swiper-slide {
        width: 220px !important;
        height: 280px;
    }

    .section-title {
        font-size: 20px;
    }

    .aboutRight .topLeft,
    .aboutRight .topRight {
        display: none;
    }

    .aboutRight {
        height: 250px;
    }

    .review-card {
        padding: 18px;
    }

    .review-card p {
        font-size: 13px;
    }

    .menu-item-header h3 {
        font-size: 15px;
    }

    .price {
        font-size: 15px;
    }

    /* Chatbot adjustments */
    .chatbot-button {
        bottom: 10px;
        right: 10px;
        width: 48px;
        height: 48px;
    }

    .chatbot-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .headerSection {
        min-height: auto;
        padding: 20px 0;
    }

    .hero {
        height: auto;
        min-height: 100vh;
    }

    .chatbot-window {
        height: 100%;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .chatbot-button,
    .chatbot-window,
    .mobile-menu-toggle {
        display: none !important;
    }

    .headerSection {
        min-height: auto;
        padding: 20px 0;
    }

    /* About Us Card Style */
    .about-card {
        background: #ffffff;
        border: 5px solid #ffffff;
        /* Requested 5px white border */
        border-radius: 30px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        margin: 40px auto;
        max-width: 1210px;
        padding: 0;
    }

    @media (max-width: 991px) {
        .about-card {
            margin: 20px;
            border-radius: 20px;
        }
    }
}
/* Verified by Visa Logo Utilities */
.css-175oi2r {
    display: flex;
    box-sizing: border-box;
}
.r-eqz5dr {
    flex-direction: column;
}
.r-1777fci {
    justify-content: center;
}
.r-ytbthy {
    align-items: center;
}
