/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 165, 0, 0.1) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.nav-brand i {
    color: #FF8C00;
    font-size: 28px;
}
.nav-brand .logo {
    width: auto;
    height: 90px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #FF8C00;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #FF8C00;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: #FF8C00;
}

.nav-contact {
    display: flex;
    align-items: center;
}

.contact-btn {
    background: #FF8C00;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #FF7700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.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);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #FFB347 0%, #FF8C00 100%);
    border-radius: 50% 0 0 50%;
    transform: translateX(20%);
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    width: 100%;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    animation: slideInLeft 1s ease-out;
    position: relative;
    z-index: 2;
}

.restaurant-label {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #333;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight {
    color: #FF8C00;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button:hover {
    background: #FF7700;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

.hero-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
    z-index: 3;
}

.main-dish {
    position: relative;
    z-index: 2;
}

.main-dish-img {
    width: 900px;
    height: 600px;

    border-radius: 50%;
    position: relative;
    animation: float 3s ease-in-out infinite;

}

.main-dish-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url('assets/hero-img.png') center/cover;
    border-radius: 50%;
}

.side-dishes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
}

.side-dish {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #FFF;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.6);
    animation: orbit 8s linear infinite;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.side-dish:nth-child(1) {
    top: 20px;
    right: 80px;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    animation-delay: 0s;
}

.side-dish:nth-child(2) {
    bottom: 40px;
    right: 20px;
    background: linear-gradient(45deg, #32CD32, #228B22);
    animation-delay: -2.7s;
}

.side-dish:nth-child(3) {
    bottom: 80px;
    left: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    animation-delay: -5.3s;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #F8F9FA;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-dish {
    width: 600px;
    height: 600px;
 
    position: relative;
    animation: slowFloat 4s ease-in-out infinite;
}

.about-dish::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url('assets/about.jpg') center/cover;
    border-radius: 50%;
}

.sauce-bottle {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 200px;
    height: 150px;

    animation: bounce 2s ease-in-out infinite;
    background: url('assets/sushi.png') center/cover;

}

.about-text {
    flex: 1;
    max-width: 500px;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.learn-more {
    background: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background: #FF8C00;
    color: white;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: white;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.services h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.services-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    color: white;
    transform: scale(1.02);
    border: none;
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon {
    background: #FF8C00;
    transform: scale(1.1);
}

.service-card.featured:hover .service-icon {
    background: rgba(255, 255, 255, 0.3);
}

.service-icon i {
    font-size: 28px;
    color: #FF8C00;
    transition: color 0.3s ease;
}

.service-card.featured .service-icon i,
.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* Why Choose Us Section */
.why-choose {
    padding: 120px 0;
    background-image: url('assets/gallery/5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(255, 140, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.why-choose-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.why-choose-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 140, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.4);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.4s ease;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #FF8C00, #FFB347) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.4);
}

.feature:hover .feature-icon::after {
    opacity: 1;
}

.feature-icon i {
    font-size: 35px;
    color: white;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon i {
    transform: scale(1.2);
}

.feature h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.feature:hover h3 {
    color: #FF8C00;
}

.feature p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    transition: color 0.3s ease;
}

.feature:hover p {
    color: #333;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

.testimonial {
    flex: 1;
    text-align: left;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8C00, #FFB347);
}

.customer-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.testimonial .rating {
    color: #FFD700;
    font-size: 14px;
}

.testimonial p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.customer-thumbs {
    display: flex;
    gap: 10px;
}

.thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb.active {
    border: 3px solid #FF8C00;
    transform: scale(1.1);
}

.testimonial-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-dish {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    position: relative;
    animation: slowFloat 4s ease-in-out infinite;
}

.testimonial-dish::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="white" opacity="0.9"/><circle cx="40" cy="40" r="5" fill="%23FF8C00"/><circle cx="60" cy="45" r="4" fill="%23FF8C00"/><circle cx="50" cy="60" r="6" fill="%23FF8C00"/></svg>') center/cover;
    border-radius: 50%;
}

.sauce-bottle-small {
    position: absolute;
    top: -10px;
    right: -20px;
    width: 40px;
    height: 80px;
    background: linear-gradient(to bottom, #DC143C, #B22222);
    border-radius: 10px 10px 15px 15px;
    animation: bounce 2s ease-in-out infinite 0.5s;
}

.sauce-bottle-small::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 12px;
    background: #333;
    border-radius: 3px 3px 0 0;
}

/* Mission Section */
.mission {
    padding: 120px 0;
    background: #F8F9FA;
}

.mission-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

.mission-text {
    flex: 2;
}

.mission-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.mission-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.founder-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FF8C00;
}

.founder-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.founder-info span {
    color: #FF8C00;
    font-weight: 500;
}

.mission-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 10px;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 120px 0;
    background: white;
}

.mission-vision-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.mission-card, .vision-card {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.card-icon i {
    font-size: 30px;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.founder-message {
    background: linear-gradient(135deg, #000000, #FF8C00);
    padding: 60px;
    border-radius: 25px;
    color: white;
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.founder-text {
    flex: 2;
}

.founder-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.founder-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.founder-signature {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    display: inline-block;
}

.founder-signature h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.founder-signature span {
    font-size: 16px;
    opacity: 0.9;
}

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

.ceo-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Values Section */
.values {
    padding: 120px 0;
    background-image: url('assets/gallery/11.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}



.values h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.values-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s ease;
}

.value-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #FF8C00, #FFB347) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.value-card:hover .value-icon::after {
    opacity: 1;
}

.value-icon i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon i {
    transform: scale(1.2);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: #FF8C00;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 13px;
    transition: color 0.3s ease;
}

.value-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #FF8C00;
    transition: all 0.3s ease;
}

.value-card:hover .value-number {
    background: #FF8C00;
    color: white;
    transform: scale(1.1);
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.gallery h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.gallery-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C1810, #8B4513);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
}

.footer-brand i {
    color: #FF8C00;
    font-size: 28px;
}
.footer-brand .logo {
    width: auto;
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FF8C00;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.6;
}

.newsletter {
    display: flex;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.newsletter button {
    background: #FF8C00;
    border: none;
    padding: 12px 20px;
    border-radius: 0 25px 25px 0;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #FF7700;
}

.footer-decorations {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
}

.footer-dish {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    opacity: 0.3;
}

.footer-dish.left {
    bottom: 20px;
    left: 50px;
    animation: float 3s ease-in-out infinite;
}

.footer-dish.right {
    bottom: 30px;
    right: 80px;
    animation: float 3s ease-in-out infinite 1.5s;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #F8F9FA;
}

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

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

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.contact-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF8C00, #FFB347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF8C00;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.submit-btn i {
    font-size: 14px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slowFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(200px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(200px) rotate(-360deg);
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .about-content {
        gap: 60px;
    }
    
    .testimonial-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 10px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 140, 0, 0.1);
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .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);
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero::before {
        width: 100%;
        height: 300px;
        border-radius: 0 0 50px 50px;
        transform: translateX(0);
        top: 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .hero-text {
        order: 2;
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-images {
        order: 1;
        margin-top: -50px;
    }
    
    .main-dish-img {
        width: 200px;
        height: 200px;
    }
    
    .side-dishes {
        width: 250px;
        height: 250px;
    }
    
    .side-dish {
        width: 40px;
        height: 40px;
        border: 4px solid rgba(255, 255, 255, 0.6);
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-text {
        order: 2;
        max-width: 100%;
    }
    
    .about-dish {
        width: 250px;
        height: 250px;
    }
    
    .sauce-bottle {
        width: 120px;
        height: 90px;
        top: -10px;
        right: -15px;
    }
    
    .about-text h2,
    .services h2,
    .why-choose h2,
    .gallery h2,
    .contact-header h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .mission-stats {
        width: 100%;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .mission-card, .vision-card {
        padding: 30px 20px;
    }
    
    .founder-message {
        padding: 40px 20px;
    }
    
    .founder-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .founder-text h2 {
        font-size: 2rem;
    }
    
    .ceo-photo {
        width: 150px;
        height: 150px;
    }
    
    .values h2,
    .gallery h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container,
    .navbar,
    .hero-content,
    .about-content,
    .food-grid,
    .features,
    .testimonial-content,
    .footer-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero::before {
        width: 90%;
        transform: translateX(5%);
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .main-dish-img {
        width: 200px;
        height: 200px;
    }
    
    .side-dishes {
        width: 300px;
        height: 300px;
    }
    
    .about-dish {
        width: 200px;
        height: 200px;
    }
    
    .testimonial-dish {
        width: 200px;
        height: 200px;
    }
    
    .mission-card, .vision-card {
        padding: 25px 15px;
    }
    
    .founder-message {
        padding: 30px 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .gallery-grid {
        grid-auto-rows: 180px;
    }
}