:root {
    --max-w: 1400px;
    --accent: #d94b25;
    --bg: #fff;
    --text-white: #fff;
    --muted: #464646;
    --container-pad: 20px;
    --primary-bg: #78102e;
    --primary-light: #934421;
    --light-text: #e6daaf;
    --light-bg: #f0ead8;
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
}

/* Container and Layout Improvements */
.container {
    max-width: var(--max-w);
    padding: 0 clamp(15px, 4vw, var(--container-pad));
}

/* Improved Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   CONSISTENT FORM STYLING
   =========================== */

/* Form Containers */
.contact-form,
form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Form Titles */
.contact-form h2,
form h2,
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-bg);
    margin-bottom: 30px;
}

/* Form Inputs */
.contact-form .form-control,
form .form-control,
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(14px, 3.5vw, 16px);
    padding: clamp(12px, 3vw, 15px);
    border: 2px solid #e6daaf;
    border-radius: 10px;
    background: white;
    color: #333;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
form .form-control:focus,
.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-bg);
    box-shadow: 0 0 0 0.2rem rgba(120, 16, 46, 0.25);
    outline: none;
}

/* Form Buttons */
.submit-btn,
.contact-form button,
form button[type="submit"],
.btn-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 700;
    background: var(--primary-bg);
    color: white;
    border: none;
    padding: clamp(12px, 3vw, 15px) clamp(25px, 6vw, 40px);
    border-radius: clamp(20px, 5vw, 25px);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    display: block;
}

.submit-btn:hover,
.contact-form button:hover,
form button[type="submit"]:hover,
.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(120, 16, 46, 0.3);
}

/* Form Labels & Text */
label {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-bg);
    margin-bottom: 8px;
    display: block;
}

.contact-form p,
form p {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}



/* Improved Text Responsiveness */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: clamp(10px, 2vw, 20px);
}

p {
    line-height: 1;
    margin-bottom: 0px;
    /* margin-bottom: clamp(8px, 2vw, 16px); */
}

a {
    text-decoration: none;
}


/* Better Spacing */
section {
    padding: clamp(40px, 8vw, 80px) 0;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
    overflow: hidden;
}

#preloader img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--light-bg);
    color: #222;
    line-height: 1.45;
    position: relative;
}


/* 

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--container-pad);
} */

.site-header {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 40px 0 20px 0;
}

.site-header.shrink {
    padding: 10px 0;
    background-color: var(--primary-bg);
}

.header-inner {
    background-color: var(--primary-bg);
    border-radius: 50px 10px 10px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    margin: 0 20px;
}

.header-inner.shrink {
    border-radius: 25px;
    margin: 0 10px;
    /* padding: 10px 20px; */
}

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

.logo {
    width: 64px;
    height: auto;
    border-radius: 6px;
}

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

.main-nav {
    display: flex;
    gap: 18px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent);
}

.nav-shape::after {
    content: " | ";
    color: var(--text-white);
    font-weight: 700;
}

.contact-btn {
    border: 2px solid var(--light-text);
    border-radius: 20px;
    padding: 8px 16px;
    color: var(--text-white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn a {
    color: var(--text-white) !important;
    /* font-weight: 700; */
    font-size: 18px;
    font-weight: 700;
}

.contact-btn:hover {
    background: rgb(86, 104, 102);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 22px;
    cursor: pointer;
}

/* HERO */
.hero {
    padding: 150px 0 100px;
    min-height: 100vh;
}



.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}


.hero-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-right {
    flex: 1;
    text-align: right;
    min-width: 300px;
}

.hero-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}


.promo-badge {
    display: inline-block;
    background: #fff;
    border: 2px solid var(--accent);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.promo-badge small {
    display: block;
    font-weight: 600;
    font-size: 11px;
    color: var(--muted);
}

.container-text {
    text-align: start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 600;
    margin: 8px 0 12px;
    line-height: 1.1;
    color: var(--primary-bg);
}

.banner-img img {
    margin-top: 100px;
    width: 100%;
    height: 100%;
}

.banner-mobile-img {
    width: 100%;
    height: 100%;
    display: none;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-sub {
    color: var(--muted);
    max-width: 100%;
    margin-bottom: 0px !important;
    margin-left: 30px;
    font-size: 22px;
    line-height: 1.4;
}

.banner-order {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.ordernow-btn {
    padding: 12px 30px;
    background: var(--primary-bg);
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.2s;
}

.ordernow-btn:hover {
    transform: scale(1.05);
}




.family-btn {
    margin: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.family-btn a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-bg);
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.2s;
}

.family-btn a:hover {
    background: linear-gradient(to bottom, #9d1527, #7a0d1b);
    transform: scale(1.05);
}

.real-food-container {
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    flex-wrap: wrap;
    gap: 30px;
}

/* Left Section */
.real-food {
    padding-bottom: 0px !important;
}

.real-food .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.real-food .left img {
    width: 80px;
}

.real-food h3 {
    font-size: 32px;
    color: rgb(90, 89, 89);
    font-weight: 700;
    margin: 0;
}

.real-food p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    max-width: 550px;
    margin-top: 20px;
}

/* Right Section (Video) */
.real-food .right {
    flex: 1.5;
}

.real-food .video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.real-food .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.real-food .overlay-text {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-100%, -50%);
    background-color: rgba(199, 199, 199, 0.4);
    color: #fff;
    font-size: 42px;
    padding: 15px 25px;
    border-radius: 8px;
    width: 500px;
    font-weight: bold;
    text-align: center;
}



.branding {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg);
    padding: 10px 0;
}

.branding ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    color: var(--text-white);
    margin: 0;
    padding: 0;
    gap: 20px;
}

.branding ul li {
    list-style-type: none;
    font-size: 20px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    /* or another multilingual font */
}


.story {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}


.story h2 {
    display: flex;
    justify-content: center;
    font-family: 'Montserrat';
    font-size: 40px;
    color: var(--primary-bg);
    margin-bottom: 14px;
    font-weight: 700;
}

.story-container {
    display: flex;
    flex-direction: column;
    width: 80%;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    max-width: 1000px;
    gap: 20px;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
}


.story-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.story-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-img img {
    height: 350px;
    border: 3px solid var(--primary-bg);
}

.story-img h3 {
    color: var(--primary-bg);
    font-size: 28px;
    font-weight: 700;
}

.stat-num {
    font-size: 62px;
    font-weight: 700;
    color: var(--primary-bg);
}

.stat-label {
    color: var(--primary-bg);
    font-weight: 600;
    font-style: italic;
}

.story-text p {
    margin: 20px 0px;
    line-height: 1.5rem;
}
















/*  */

.menu-section {
    padding: clamp(0px, 0vw, 0px) 0 !important;
}

.menu-section {
    background-color: rgb(86, 104, 102);
    padding: 40px 0;
    position: relative;
}

.menu-header {
    display: flex;
    padding: 30px 100px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    color: #fff;
    flex-wrap: wrap;
    gap: 20px;
}


.menu-button {
    color: var(--text-white);
    border: 1px solid var(--text-white);
    padding: 10px 50px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    text-decoration: none;

}

.menu-button:hover {
    background-color: var(--text-white);

}

.menu-header a:hover {
    color: var(--primary-bg);
}



.menu-header .section-title {
    margin-bottom: 0px !important;
}

.section-title {
    font-size: 38px;
    text-align: center;
    color: #9c9c9c;
    font-weight: 200;
}

.hunger-meter {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 18px;
    font-weight: 600;
}

.hunger-meter .Hungry {
    width: 100%;
    display: flex;
    justify-content: start;
}


.hunger-meter .Very_Hungry {
    width: 100%;
    display: flex;
    justify-content: end;
}

.meter-bar {
    width: 200px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 3px;
    overflow: hidden;
}

.meter-fill {
    width: 70%;
    height: 100%;
    background-color: var(--primary-bg);
    border-radius: 4px;
}

.main-dishes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}


.dish-card.large img {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    border-radius: 35px;
    height: 400px;
    object-fit: cover;
}

.main-dishes .dish-card:nth-child(1) img {
    width: 400px;
}

.main-dishes .dish-card:nth-child(2) img {
    width: 450px;
}

.main-dishes .dish-card:nth-child(3) img {
    width: 400px;
}

.combo-carousel {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    justify-content: center;
}

.combo-cards-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 80%;
    gap: 15px;
    padding: 10px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.combo-cards-wrapper::-webkit-scrollbar {
    display: none;
}


.carousel-arrow {
    border: none;
    background: none;
    font-size: 50px;
    padding: 10px 15px;
    color: #ffffffe7;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right: 0;
}


.combo-card {
    background-color: var(--text-white);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 200px;
    height: 250px;
    flex-shrink: 0;
    position: relative;
    color: #fff;
}

.combo-card .menu-product {
    display: flex;
    align-items: center;
    justify-content:
        center;
}

.combo-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.combo-card img {
    max-width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 120px;
}

.heart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.heart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 2px 5px;
    width: 20%;
}

.combo-description {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-align: center;
    color: #4a4a4a;
}

.add-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    bottom: 10px;
    right: 10px;
}

.order-button-container {
    text-align: center;
    margin-top: 30px;
}

.order-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.order-button .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--text-white);
    border-radius: 5px;
    text-decoration: none;
    color: var(--primary-bg);
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}



.menu-banner img {
    width: 100%;
    margin-top: 150px;
}

.patner img {
    width: 450px;
    margin-top: 50px;
}

.shap-img {
    align-items: center;
    justify-content: center;
    display: flex;
}

.patner .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.patner h2,
.outlets h2 {
    font-family: 'Montserrat';
    font-size: 40px;
    color: var(--primary-bg);
    margin-bottom: 14px;
    font-weight: 700;
    margin-top: 1rem;
}

.patner p {
    width: 50%;
    text-align: center;
    margin-bottom: 0px !important;
}

.join-now {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.join-now a {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to bottom, var(--primary-bg), var(--primary-bg));
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.2s;
}

.join-now a:hover {
    background: linear-gradient(to bottom, #9d1527, #7a0d1b);
    transform: scale(1.05);
}

.dish-card {
    position: relative;
}

.dish-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #78102e;
    /* same maroon shade */
    color: #fff;
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    min-width: 60%;
}



/* ///  footer  /// */
/* ===========================
   Modern Attractive Footer
   =========================== */
.site-footer {
    color: white;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-bg);
    border-radius: 50px 50px 0 0;
    margin-top: 80px;
    padding: 60px 0 30px;
}

/* Grid Layout */
.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Fade-in animation */
.footer-items {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-items:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-items:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-items:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-items:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 200px;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

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

.footer-brand-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 20px 0;
    opacity: 0.9;
}

.footer-tagline {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
}

/* Titles */
.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 20px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--light-text);
    padding-left: 10px;
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    color: var(--text-white);
}

.contact-details strong {
    color: var(--light-text);
    display: block;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--text-white);
}

/* Social Media */
.social-media-section {
    margin-top: 30px;
}

.social-media-icon ul {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-media-icon ul li {
    transition: transform 0.3s ease;
}

.social-media-icon ul li:hover {
    transform: translateY(-5px);
}

.social-media-icon ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-media-icon ul li a:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.social-media-icon ul li i {
    font-size: 20px;
    color: white;
    transition: color 0.3s ease;
}

.social-media-icon ul li a:hover i {
    color: var(--light-text);
}

/* Bottom */
.footer-bottom {
    /* background: rgba(0, 0, 0, 0.3); */
    text-align: center;
    /* padding: 25px; */
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    /* position: relative; */
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}



/*  */

/* About Hero */
.about-hero {
    margin-top: 150px;
    /* background-image: url(../images/logo_header.png); */
    background-size: 30% auto;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    position: relative;
}




/* Sections */
.about,
.founders,
.outlets,
.how-it-works {
    padding: 60px 0;
}

/* Founders */
.founder-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 5px solid #d94b25;
}

.about-hero .right-img {
    display: flex;
    justify-content: flex-end;
    width: 1200px;
}

.about-hero-title {
    margin-left: 140px !important;
    font-size: 46px;
    font-weight: 700;
    color: var(--primary-light);
    margin-top: -50px;
}


.about-hero .right-img img {
    height: 200px;
}

.founder-card h4 {
    font-weight: 700;
    margin-top: 10px;
}

/* Outlets */
.outlets img {
    transition: transform 0.3s ease;
}

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

/* How It Works */
.step-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.step-box img {
    width: 60px;
    margin-bottom: 15px;
}

.step-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.img-fluid {
    height: 500px;
    background: none;
}

.about-us-containt {
    padding: 50px 0px !important;
    display: flex;
    align-items: center;
}

.about-us-text h2 {
    display: flex;
    text-align: start;
    color: var(--primary-bg);
    font-size: 20ox;
    font-weight: 600;
}

.about-us-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-text p {
    display: flex;
    text-align: start;
    color: var(--primary-bg);
    line-height: 1.5rem;
    font-size: 18px;
}

.working {
    position: relative;
    height: 100vh;
    background: url('../images/our-works.png') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(120, 16, 46, 0.4);
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
}

.content h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.content p {
    font-size: 20px;
}

.founder-section {
    position: relative;
    /* background: url('../images/fo') center center / cover no-repeat fixed; */
    padding: 100px 0;
    color: white;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(210, 180, 140, 0.5);
    z-index: 1;
}

.founder-content {
    position: relative;
    /* background-color: var(--primary-bg); */
    z-index: 2;
    border-radius: 20px;
}

.founder-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.founder-tagline {
    font-size: 20px;
    font-style: italic;
}

.founder-profile {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.founder-profile img {
    border: 2px solid var(--primary-bg);
}


.founder-img-1 {
    border: 2px solid var(--primary-bg);
    /* -webkit-transform: scaleX(-1); */
    /* transform: scaleX(-1); */
}


.profile-image img {
    border-radius: 15px;
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
}

.profile-text {
    padding: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.profile-text h2 {
    color: var(--primary-bg);
}

.profile-text p {
    line-height: 1.2;
    color: var(--primary-bg);
}

.section-divider {
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin: 60px 0;
}


.outlets-section {
    padding: 80px 0;
    background: #fef7f0;
    text-align: center;
}

.outlets-section .section-title {
    font-size: 36px;
    font-weight: bold;
    /* margin-bottom: 10px; */
    color: #78102e;
}

.outlets-section .section-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    color: #6b6b6b;
}

.outlets-gallery {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}



/* Contact Page Styles */
.contact-hero {
    margin-top: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.contact-hero-title {
    font-size: 46px;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.contact-section {
    padding: 80px 0 !important;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid #e6daaf;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-bg);
    box-shadow: 0 0 0 0.2rem rgba(120, 16, 46, 0.25);
}

.submit-btn {
    background: var(--primary-bg);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.contact-info {
    padding: 20px 0;
    color: var(--primary-bg);
}

.contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item h4 {
    color: var(--primary-bg);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item .data {
    display: flex;
    flex-direction: column;
}

.locations-section {
    background-color: rgb(86, 104, 102);
    padding: 80px 0;
    color: white;
}

.locations-section .section-title {
    color: white;
    margin-bottom: 50px;
    font-size: 36px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.location-card h3 {
    color: var(--light-text);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-card p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.location-contact {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.location-contact span {
    font-weight: 600;
    color: var(--light-text);
}



/* Menu Page Styles */
.menu-hero {
    margin-top: 150px;
    background: linear-gradient(rgba(120, 16, 46, 0.8), rgba(120, 16, 46, 0.8)), url(../images/menu-2.jpg);
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 160px;
    height: 160px;
    background: url('../images/patten/01.png') no-repeat;
    background-size: contain;
    opacity: 0.15;
    z-index: 1;
}

.menu-hero::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 140px;
    height: 140px;
    background-size: contain;
    opacity: 0.15;
    z-index: 1;
}

.menu-hero-title {
    font-size: 46px;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.menu-categories {
    padding: 40px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--primary-bg);
    color: var(--primary-bg);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.menu-items-section {
    padding: 60px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: url('../images/patten/01.png') no-repeat;
    background-size: contain;
    opacity: 0.03;
    z-index: 1;
}

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

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

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

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

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(120, 16, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item-card:hover .item-overlay {
    opacity: 1;
}

.add-to-cart {
    background: white;
    color: var(--primary-bg);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--light-text);
    transform: scale(1.05);
}

.item-info {
    padding: 25px;
}

.item-info h3 {
    color: var(--primary-bg);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.item-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.5;
}

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

/* Special styling for different categories */
.menu-item-card.combo {
    border-top: 4px solid #28a745;
}

.menu-item-card.individual {
    border-top: 4px solid #007bff;
}

.menu-item-card.special {
    border-top: 4px solid #ffc107;
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
}

.order-cta {
    background: var(--primary-bg);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.order-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.order-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.order-now-btn {
    display: inline-block;
    background: white;
    color: var(--primary-bg);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.order-now-btn:hover {
    background: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Filter animations */
.menu-item-card.hidden {
    display: none;
}

.unique-menu-hero {
    height: 50vh;
    background-image: url('../images/menu-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(86, 104, 102, .9));
    z-index: 1;
}

.menu-title {
    position: relative;
    z-index: 1;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    /* letter-spacing: 2px; */
}

.menu-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #e6daaf;
    text-align: center;
    font-weight: 300;
    letter-spacing: 3px;
}

.menu-subtitle span {
    font-weight: 500;
}

.menu-gallery {
    padding: 100px 0;
}



.full-menu-section {
    margin: 80px 0;
    padding: 0;
    width: 100%;
}

.menu-showcase {
    width: 100%;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.showcase-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-bg);
    margin-bottom: 15px;
}

.showcase-header p {
    font-size: 1.2rem;
    color: #666;
}

.menu-image-container {
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 0;
    transition: all 0.4s ease;
}

.full-menu-image {
    width: 70%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.special-section {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    padding-top: 180px;
}

.special-banner {
    background: radial-gradient(rgba(86, 104, 102));
    border-radius: 30px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 20px;
}

.banner-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.banner-image {
    position: relative;
    z-index: 2;
}

.banner-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.order-section {
    background: var(--primary-bg);
    padding: 40px 0;
    color: white;
}

.order-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.order-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-family: 'Montserrat', sans-serif;
    /* margin-bottom: 15px; */
}

.order-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--text-white);
    margin-bottom: 0px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}


.contact-item-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-item-phone h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-bg);
    font-family: 'Montserrat', sans-serif;
}

.contact-item-phone p {
    color: var(--primary-bg);
}

.contact-options .contact-item-phone {
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    gap: 0px !important;
    display: flex;
    align-items: center;
    background: rgba(250, 250, 250);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-item-phone .contact-icon {
    color: var(--primary-bg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(134, 40, 67, 0.3);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2rem;
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
}

.contact-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.menu-card-container {
    display: block;
    align-items: baseline;
    justify-content: center;
}

.phone-data-bottom {
    border-bottom: 2px solid var(--primary-bg);
}







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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-bg);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}











/*  */
.interactive-menu-section {
    padding: 80px 0;
}

.menu-iframe-header {
    text-align: center;
    margin-bottom: 40px;
}

.menu-iframe-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-bg);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.menu-iframe-header p {
    font-size: 1.1rem;
    color: #666;
}

.iframe-container {
    position: relative;
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.iframe-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}



/* ///////////////////////////// */

.outlet-title {
    position: relative;
    z-index: 1;
    font-size: clamp(3rem, 8vw, 5rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.outlet-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #e6daaf;
    text-align: center;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.outlet-subtitle span {
    font-weight: 500;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    color: var(--text-white);

}

.outlet-intro {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.outlets-title {
    text-align: start;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-bg);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.intro-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-bg);
    margin-bottom: 40px;
    font-weight: 700;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 25px;
}

.promise-badge {
    display: inline-block;
    background-color: rgb(86, 104, 102);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}


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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-bg);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/*  */

/* Section Base */
.our-outlets {
    padding: 80px 0;
    background: var(--text-white)
}

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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-bg);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Outlet Card */
.outlet-card {
    position: relative;
    width: 100%;
    background-color: var(--text-white);
    /* responsive */
    margin-bottom: 70px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(86, 104, 102, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.outlet-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-bg);
}

.outlet-gallery {
    position: relative;
}

.main-photo {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

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


.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
}

.nav.prev {
    display: flex;
    align-items: center;
    justify-content: center;
    left: 10px;
}

.nav.next {
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 20px;
    overflow-y: auto;
}

.thumbnails img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.thumbnails img:hover {
    opacity: 1;
}




/* Experience Section */
.outlet-experience {
    padding: 50px 0;
    background: var(--light-bg);
}

.experience-content {
    display: flex;
    /* Important to keep row layout */
    align-items: center;
    margin: 0 auto;
}

.experience-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-bg);
    margin-bottom: 40px;
    font-weight: 700;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    background-color: var(--primary-bg);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-bg);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.feature-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.experience-right {
    position: relative;
}

.experience-image {
    border-radius: 25px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.contact-icon img {
    width: 50px;
}

.contact-info a {
    color: var(--primary-bg);
}

.scanner img {
    width: 150px;
}


/* Contact Page Get in Touch Section Alignment */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-bg);
}

.contact-item h4 {
    color: var(--primary-bg);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.contact-item p {
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item strong {
    color: var(--primary-bg);
    font-weight: 600;
}

.experience-slider-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}


.experience-slider-wrapper .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.experience-slider-wrapper .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-slider-wrapper .slide.active {
    opacity: 1;
}

/*  */

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slider-wrapper .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-wrapper .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-wrapper .slide.active {
    opacity: 1;
}

.slider-wrapper .overlay-text {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-100%, -50%);
    background-color: rgba(199, 199, 199, 0.4);
    color: #fff;
    font-size: 42px;
    padding: 15px 25px;
    border-radius: 8px;
    width: 500px;
    font-weight: bold;
    text-align: center;
}

/* Map Interactions */
.location-marker.active circle:first-child {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        r: 8;
        opacity: 1;
    }

    50% {
        r: 12;
        opacity: 0.7;
    }

    100% {
        r: 8;
        opacity: 1;
    }
}

/*  */
/*  */
/*  */
/* Image Viewer Modal */
.image-viewer-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg)
}

.image-viewer-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-viewer-content img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.close-viewer {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-viewer:hover {
    color: #ccc;
}

.mapsvg-layout {
    width: 650px;
    height: 695px;
}

.map-container {
    width: 100%;
    height: 100%;
    /* optional */
    margin: auto;
}

.map-container svg {
    width: 100%;
    height: auto;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    z-index: 10000;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
}

.gallery-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.i4ewOd-pzNkMb-haAclf {
    display: none !important;
}