  @font-face{
    font-family: 'Anton';
    src:url('/anton.ttf')
  }
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #824128;
            --secondary: #B96741;
            --tertiary: #FDB28D;
            --dark: #3A150C;
            --white: #ffffff;
            --gradient-1: linear-gradient(135deg, #824128 0%, #B96741 50%, #FDB28D 100%);
            --gradient-2: linear-gradient(135deg, #3A150C 0%, #824128 50%, #B96741 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #1a0f0a;
            color: #e0d5d0;
            overflow-x: hidden;
        }

        /* ==================== NAVBAR STYLES ==================== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(180deg, #1a0f0a, #3A150C);
            background-repeat: no-repeat;
            background-position:center;
            background-size: cover;
            backdrop-filter: blur(0px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(253, 178, 141, 0.15);
            z-index: 1000;
            padding: 0.8rem 2rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: space-between; 
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex: 1;
        }

        .nav-logo {
            display: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            background: var(--white);
            padding: 2px;
            border: 2px solid var(--tertiary);
            display: none;
        }

        .support-btn {
            background-color: transparent;
            color: #ffffff;
            text-align: center;
            padding: 0.8rem 1rem;
            border: 2px solid #fff;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .support-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(253, 178, 141, 0.4);
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 3rem;
            justify-content: center;
            flex:3;
        }

        .nav-link {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--tertiary);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--tertiary);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .logo {
            width: 200px;
            height: 80px;
            object-fit: cover;
            background-color:transparent;
            padding: 3px;
            animation: rotateIn 0.8s ease-out;
        }

        @keyframes rotateIn {
            from {
                transform: rotate(-180deg);
                opacity: 0;
            }
            to {
                transform: rotate(0);
                opacity: 1;
            }
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex: 1;
            justify-content: flex-end;
        }

        .franchise-btn {
            background: transparent;
            padding: 0.8rem 1rem;
            border: 2px solid #ffff;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.8rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
           /* animation: franchisePulse 2s infinite, franchiseGlow 3s infinite;*/
            box-shadow: 0 0 20px rgba(253, 178, 141, 0.5);
        }

        @keyframes franchisePulse {
            0%, 100% {
                transform: scale(1) translateY(0);
                box-shadow: 0 0 15px rgba(235, 204, 188, 0.5);
            }
            50% {
                transform: scale(1.12) translateY(-2px);
                box-shadow: 0 0 25px rgba(241, 240, 240, 0.9), 0 0 35px rgba(223, 188, 172, 0.7);
            }
        }

        @keyframes franchiseGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(253, 178, 141, 0.6);
            }
            25% {
                box-shadow: 0 0 30px rgba(253, 178, 141, 0.8), 0 0 40px rgba(185, 103, 65, 0.6);
            }
            50% {
                box-shadow: 0 0 40px rgba(253, 178, 141, 0.9), 0 0 50px rgba(185, 103, 65, 0.7);
            }
            75% {
                box-shadow: 0 0 30px rgba(253, 178, 141, 0.8), 0 0 40px rgba(185, 103, 65, 0.6);
            }
            100% {
                box-shadow: 0 0 20px rgba(253, 178, 141, 0.6);
            }
        }

        .franchise-btn:hover {
             transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(253, 178, 141, 0.4);
        }

        .franchise-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .franchise-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: fixed;
            top: 20px;
            right: 20px;
            width: 30px;
            height: 30px;
            z-index: 1001;
        }

        .mobile-menu-toggle i {
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: inline-block;
        }

        .mobile-menu-toggle.active i::before {
            content: '✕';
            position: absolute;
            animation: iconRotate 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes iconRotate {
            from {
                opacity: 0;
                transform: rotate(-180deg) scale(0.5);
            }
            to {
                opacity: 1;
                transform: rotate(0) scale(1);
            }
        }

        .mobile-menu-toggle.active {
            transform: scale(1.1);
            color: var(--tertiary);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, rgba(58, 21, 12, 0.98), rgba(130, 65, 40, 0.98));
            backdrop-filter: blur(10px);
            padding: 2rem;
            flex-direction: column;
            gap: 1rem;
            animation: slideIn 0.4s ease-out;
            z-index: 999;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu .nav-link {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(253, 178, 141, 0.2);
            font-size: 1.1rem;
        }

        /* ==================== HERO SECTION ==================== */
        .section1 {
            margin-top: 70px;
            height: 92vh;    
            width: 100%;
            background-image: url('/images/cover\ franchise.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
            z-index: 99;
        }

        .section1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0); 
             background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            pointer-events: none;
            z-index: 99;
        }

        .section-left, .section-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            position: relative;;
            z-index: 999;
        }

        .section-left h1 {
            font-size: 3.5rem;
            background-color: #D67848;
            /*background: linear-gradient(135deg, #FDB28D, #B96741);*/
            -webkit-background-clip: text;
            background-clip: text;
            transform: rotate(-12deg);
            z-index: 9999;
            font-weight: 800;
            text-align: center;
            margin-left: 30px;
            line-height: 1.5;
            animation: fadeInside 1s ease-out;
        }

        @keyframes fadeInside {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: rotate(-12deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(0px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-right h1 {
            font-size: 5rem;
            font-family: 'anton';
            color: var(--white);
            text-align: center;
            font-weight:400;
            line-height: 8.5rem;
            animation: fadeInUp 1.2s ease-out;

        }
        #span1{
            background-color: #a41c22; 
            padding: 0rem 0.8rem 0rem 0.8rem;
             border-bottom-left-radius:15px;
             border-top-right-radius: 15px;
             
        }
        #span2{
            background-color: #a41c22;
            padding: 0rem 0.8rem 0rem 0.8rem;
            border-top-left-radius:15px;
             border-bottom-right-radius: 15px;
        }
        #span3{
            background-color: #a41c22;
             padding: 0rem 0.8rem 0rem 0.8rem ;
             border-bottom-left-radius:15px;
             border-top-right-radius: 15px;
        }

        .click-me{
            font-family: "Anton", sans-serif;
            color: yellow;
            text-align: center;
            font-weight:400;
            animation: pluse 3s ease-in-out infinite;
            text-decoration:underline;
        }

        @keyframes pluse {
            0% {
                transform: translateY(0px);
            }
            100% {
                transform: translateY(20px);
            }
        }
        .franchise-cta {
            display: inline-block;
            animation: fadeInUp 1.4s ease-out;
        }

        .franchise-cta {
            width: 160px;
            height: 60px;
            border-radius: 40px;
            transition: all 0.3s ease;
            cursor: pointer;
            background-color:#D67848;
        }
        .franchise-cta a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--white);
            text-decoration: none;
        }
        .franchise-cta:hover {
            transform: scale(1.1) rotateY(10deg);
            filter: drop-shadow(0 0 15px rgba(253, 178, 141, 0.6));
        }

        /* ==================== ABOUT SECTION ==================== */
        .section2 { 
            width: 100%;
            padding: 8rem 2rem;
            padding-bottom: 2rem;
            background:  linear-gradient(180deg, #1a0f0a, #33140c);
            position: relative;
        }

        .section2 h1 {
            padding-top: 5rem;
            font-size: 2.5rem;
            text-align: center;
            background: linear-gradient(135deg, #FDB28D, #B96741);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out;
        }

        .kulhad-container {
            text-align: center;
            margin-bottom: 3rem;
          
        }

        .kulhad-container img {
            max-width: 300px;
            height: auto;
            filter: drop-shadow(0 0 30px rgba(253, 178, 141, 0.3));
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .why-choose {
            background: rgba(130, 65, 40, 0.15);
            backdrop-filter: blur(15px) saturate(180%);
            -webkit-backdrop-filter: blur(15px) saturate(180%);
            border: 1px solid rgba(253, 178, 141, 0.25);
            border-radius: 35px;
            padding: 1.5rem 2rem 1rem 2rem;
            margin: 3rem auto;
            width: 90%;
            display: flex;
            gap: 3rem;
            align-items: center;
            justify-content: space-between;
            animation: fadeInUp 1.2s ease-out;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        }

        .why-choose h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .why-choose p {
            font-size: 1rem;
            line-height: 1.8;
            color: #d0c0b8;
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .About-section{
            display:flex;
            flex-direction:column;
            justify-content:center;
            gap:1.5rem;
            width:60%;
        }
        .about-img{
            display:flex;
            justify-content:center;
            align-items:center;
            height:53vh;
            width:30%;
        }
        .about-img img {
            width: 100%;
            border-radius: 20px;
            height: 100%;
         
        }

        @keyframes pulse-img {
            0%, 100% {
                transform: scale(1);
                filter: brightness(1);
            }
            50% {
                transform: scale(1.05);
                filter: brightness(1.1);
            }
        }

        /* ==================== FUTURE PLANS SECTION ==================== 
        .future-plans {
            background: rgba(130, 65, 40, 0.12);
            backdrop-filter: blur(15px) saturate(180%);
            -webkit-backdrop-filter: blur(15px) saturate(180%);
            border: 1px solid rgba(253, 178, 141, 0.25);
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem auto;
            max-width: 1000px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            animation: fadeInUp 1.4s ease-out;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        }

        .future-plans h2 {
            font-size: 2rem;
            color: var(--tertiary);
            margin-bottom: 1.5rem;
        }

        .future-plans p {
            font-size: 1rem;
            line-height: 1.8;
            color: #d0c0b8;
        }

        .future-plans img {
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            border: 2px solid var(--tertiary);
        }*/

        /* ==================== MISSION VALUES VISION ==================== */
        .mvv-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .mvv-card {
            background: rgba(130, 65, 40, 0.15);
            backdrop-filter: blur(15px) saturate(180%);
            -webkit-backdrop-filter: blur(15px) saturate(180%);
            border: 1px solid rgba(253, 178, 141, 0.25);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            animation: fadeInUp 1.6s ease-out;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        }

        .mvv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(253, 178, 141, 0.2);
            border-color: var(--tertiary);
        }

        .mvv-card h2 {
            font-size: 1.8rem;
            color: var(--tertiary);
            margin-bottom: 1.5rem;
        }

        .img {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            font-size: 3vh;
            border-radius: 50%;
            filter: drop-shadow(0 0 10px rgba(253, 178, 141, 0.4));
            background: linear-gradient(135deg, #824128, #B96741);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: white;
        }
        .img:hover{
            transform: scale(1.2) rotateY(180deg);
            background: linear-gradient(135deg, #FDB28D, #B96741);
        }

        .mvv-card p {
            font-size: 1rem;
            line-height: 1.8;
            color: #d0c0b8;
        }

        /* ==================== PEOPLE SECTION ==================== */
        .section4 {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #2a1810, #1a0f0a);
            text-align: center;
        }

        .section4 h1 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 0.5rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .section4 h3 {
            font-size: 2rem;
            background: linear-gradient(135deg, #FDB28D, #B96741);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out;
        }

        .heart-icon {
            font-size: 3rem;
            color: #FDB28D;
            margin: 1.5rem 0;
            animation: heartbeat 1.5s infinite;
        }

        @keyframes heartbeat {
            0%, 100% {
                transform: scale(1);
            }
            25% {
                transform: scale(1.3);
            }
            50% {
                transform: scale(1);
            }
        }

        .testimonial-text {
            max-width: 800px;
            margin: 2rem auto;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #d0c0b8;
            animation: fadeInUp 1.2s ease-out;
        }

        .testimonial-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 3rem auto;
        }

        .testimonial-img {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, rgba(130, 65, 40, 0.4), rgba(185, 103, 65, 0.4));
            border-radius: 15px;
            border: 2px solid var(--tertiary);
            display: flex;
            align-items: center;
            justify-content:space-evenly;
            animation: fadeInUp 1.4s ease-out;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .testimonial-img:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 20px rgba(253, 178, 141, 0.4));
        }

        .testimonial-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* ==================== MENU SECTION ==================== */
        .section5 {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #1a0f0a, #2a1810);
        }

        .section5 h1 {
            font-size: 3rem;
            text-align: center;
            background: linear-gradient(135deg, #FDB28D, #B96741);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .menu-description {
            max-width: 900px;
            margin: 2rem auto;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #d0c0b8;
            animation: fadeInUp 1s ease-out;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 4rem auto;
        }

        .menu-item {
            background: rgba(130, 65, 40, 0.15);
            backdrop-filter: blur(15px) saturate(180%);
            -webkit-backdrop-filter: blur(15px) saturate(180%);
            border: 1px solid rgba(253, 178, 141, 0.25);
            border-radius: 20px;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
            animation: fadeInUp 1.2s ease-out;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        }

        .menu-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(253, 178, 141, 0.2);
            border-color: var(--tertiary);
        }

        .menu-item-img {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #824128, #B96741);;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            transition: all 0.3s ease;
        }
        
        .menu-img{
            height: 100%;
            width: 100%;
            object-fit: cover;
           
        }

        .menu-item:hover .menu-item-img {
            background: linear-gradient(135deg, #B96741, #FDB28D);
            transform: scale(1.1);
        }

        .menu-item-name {
            padding: 1.5rem;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--tertiary);
        }
        /*--why we differen--*/

        .floating-icons-section {
            padding: 100px 0;
            position: relative;
            background: linear-gradient(180deg, #1a0f0a, #33140c);
            overflow: hidden;
            border-bottom: 1px solid rgba(227, 153, 111, 0.1);
        }

        .text-center  {
             text-align: center;
        }

        .gold-text { 
            color: var(--tertiary);
            font-size: 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h2 { 
            font-size: 2.5rem;
        }

         p { 
            color: var(--color-text); 
        }

        .floating-icons-section {
            padding: 70px 0;
            position: relative;
            background: var(--color-primary-light);
            overflow: hidden;
            border-bottom: 1px solid rgba(227, 153, 111, 0.1);
        }
        .floating-icon {
            position: absolute;
            width: 50px;
            height: 50px;
            opacity: 0.1;
            z-index: 0;
        }

        /* ==================== CONTACT SECTION ==================== */
        .contact-us {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, #2a1810, #1a0f0a);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 3rem auto;
            border-radius: 25px;
        }

        .form-div {
            animation: fadeInUp 0.8s ease-out;
        }

        .form-div h2 {
            font-size: 2rem;
            color: var(--tertiary);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--tertiary);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid rgba(253, 178, 141, 0.3);
            background: rgba(0, 0, 0, 0.3);
            color: var(--white);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--tertiary);
            background: rgba(130, 65, 40, 0.3);
            box-shadow: 0 0 15px rgba(253, 178, 141, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn {
            padding: 1rem;
            border: 2px solid var(--tertiary);
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit {
            background: linear-gradient(135deg, #FDB28D, #B96741);
            color: #1a0f0a;
        }

        .btn-submit:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(253, 178, 141, 0.4);
        }

        .btn-reset {
            background: transparent;
            color: var(--tertiary);
        }

        .btn-reset:hover {
            background: rgba(253, 178, 141, 0.1);
        }

        .get-in-touch {
            animation: fadeInUp 1s ease-out;
        }

        .get-in-touch h2 {
            font-size: 2rem;
            color: var(--tertiary);
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(130, 65, 40, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(253, 178, 141, 0.2);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(130, 65, 40, 0.4);
            transform: translateX(5px);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--tertiary);
        }

        .contact-item p {
            color: #d0c0b8;
            font-size: 1rem;
        }

        .map-container {
            margin-top: 2rem;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid rgba(253, 178, 141, 0.3);
        }

        .map-container iframe {
            width: 100%;
            height: 300px;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            padding: 2rem 2rem;
            background: linear-gradient(180deg, #1a0f0a, #3A150C);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .footer-section h3 {
            color: var(--tertiary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section p {
            color:#b6b3b3;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-link {
            color: #b6b3b3;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .footer-link:hover {
            color: var(--tertiary);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 1.5rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #824128, #B96741);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--tertiary);
        }

        .social-icon:hover {
            transform: scale(1.2) rotateY(180deg);
            background: linear-gradient(135deg, #FDB28D, #B96741);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            color: #b6b3b3;
        }

        /* ==================== MODAL ==================== */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: rgba(26, 15, 10, 0.8);
            backdrop-filter: blur(15px) saturate(180%);
            -webkit-backdrop-filter: blur(15px) saturate(180%);
            border: 2px solid rgba(253, 178, 141, 0.25);
            border-radius: 20px;
            padding: 3rem;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            animation: slideUp 0.4s ease-out;
            position: relative;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--tertiary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            transform: rotate(90deg);
            color: var(--white);
        }

        .modal-content h2 {
            color: var(--tertiary);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .modal-content p {
            color: #d0c0b8;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .navbar {
                padding: 0.8rem 0rem;
                gap: 0;
                padding-right: 70px;
            }

            .nav-left {
                gap: 0;
                flex: 0;
                order: 1;
            }

            .support-btn {
                display: none;
            }

            .logo {
                display: none;
            }

            .nav-logo {
                display: block;
                width: 110px;
                height: 60px;
                margin-right: auto;
                order: 1;
                object-fit: cover;
                background-color:transparent;
                border: none;
            }

            .nav-center {
                display: none;
            }

            .nav-right {
                gap: 1rem;
                flex: 0;
                order: 3;
                justify-content: flex-end;
                position: relative;
            }

            .franchise-btn {
                display: none;
                padding: 0.6rem 1.2rem;
                font-size: 0.75rem;
                order: 2;
                margin-left: 0.5rem;
                animation: franchisePulse 1.5s infinite, franchiseGlow 3s infinite;
                position: relative;
            }

            .mobile-menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                position: fixed;
                top: 15px;
                right: 15px;
                order: 3;
                margin-left: 0;
                z-index: 1001;
            }

            .section1 {
                margin-top: 75px;
                flex-direction: column;
                height: auto;
                padding: 4rem 1rem;
                gap: 2rem;
            }

            .section2{
                padding: 2rem 1rem;
                margin-top: 3rem;
            }
            .section-left h1 {
                font-size: 2.5rem;
            }

            .section-right h1 {
                font-size: 2rem;
                line-height: 2;
                padding-top: 40px;
            }

            .franchise-cta img {
                width: 120px;
            }

            .section2 h1 {
                font-size: 2rem;
                padding-top: 3rem;
            }

            .why-choose {
                padding: 2rem;
                gap: 2rem;
                flex-direction: column;

            }

            .about-img {
                width: 100%;
                height: 68vh;
                object-fit: cover;
            }
            .About-section{
                width: 100%;
                gap: 0;
            }
 
            .future-plans {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .mvv-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0rem 1rem;
            }

            .section4 h1 {
                font-size: 2rem;
            }

            .section5 h1 {
                font-size: 2rem;
            }

            .menu-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 1.5rem;
            }

            .contact-us {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-buttons {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .modal-content {
                padding: 2rem;
                margin: 1rem;
            }
        }

        @media (max-width: 480px) {
            .section-left h1 {
                font-size: 1.8rem;
                padding-top: 30px;
            }

            .about-img {
                width: 100%;
                height: 40vh;
                object-fit: cover;
             }

            .section-right h1 {
                font-size: 1.7rem;
                line-height: 3.5rem;
                padding-top: 50px;
            }

            .why-choose h2 {
                font-size: 1.4rem;
            }

            .why-choose p{
                line-height: 1.4;
                font-size:0.68rem;
                font-weight: 600;
                text-align:justify;
                margin-bottom: 0px;
            }

            .mvv-card{
                padding: 1.5rem;
            }
            .support-btn, .franchise-btn {
                font-size: 0.7rem;
                padding: 0.5rem 0.8rem;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-images {
                grid-template-columns: 1fr;
            }
        }

        /* ==================== LOADING ANIMATION ==================== */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #3A150C, #824128);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            animation: fadeOut 0.5s ease-out forwards;
            animation-delay: 2.5s;
        }

        @keyframes fadeOut {
            from {
                opacity: 1;
                pointer-events: auto;
            }
            to {
                opacity: 0;
                pointer-events: none;
            }
        }

        .tea-cup {
            font-size: 5rem;
            animation: teaCup 2s ease-in-out infinite;
        }

        @keyframes teaCup {
            0% {
                transform: translateY(0);
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-30px);
                opacity: 0;
            }
        }

        .loading-text {
            margin-top: 2rem;
            color: var(--tertiary);
            font-size: 1.5rem;
            animation: pulse-text 1.5s ease-in-out infinite;
        }

        @keyframes pulse-text {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }