
/* ===== Signature Dishes ===== */
.signature-dishes {
    background: var(--light-color);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.dish-card {
    
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.dish-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.dish-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}



.dish-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dish-badge.popular {
    background: var(--primary-orange);
}

.dish-badge.vegetarian {
    background: #28a745;
}

.dish-content {
    padding: 30px;
}

.dish-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.dish-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.dish-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: var(--font-secondary);
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 50px 0;
    background: var(--light-color);
    overflow: hidden;
}

/* ===== Auto-Scrolling Categories ===== */
.categories-scroll-wrapper {
    position: relative;
    margin: 60px 0;
    padding: 20px 0;
}

.categories-scroll {
    display: flex;
    gap: 30px;
    animation: scrollCategories 40s linear infinite;
    width: max-content;
}

.categories-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollCategories {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 8));
    }
}

.category-card {
    flex-shrink: 0;
    width: 380px;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.95) 0%, rgba(220, 20, 60, 0.7) 50%, transparent 100%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 0.95;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
    z-index: 2;
}

.category-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.dish-count {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 3;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(0) rotate(45deg);
}

/* ===== Popular Dishes Grid ===== */
.popular-dishes-section {
    padding: 40px 0;
}

.popular-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(2, 300px);
    gap: 25px;
}

.popular-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.popular-item.featured {
    grid-row: span 2;
}

.popular-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.popular-item:hover .popular-image img {
    transform: scale(1.1);
}

.popular-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.95) 0%, rgba(220, 20, 60, 0.6) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popular-item:hover .popular-overlay {
    opacity: 1;
}

.popular-content {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.popular-item:hover .popular-content {
    transform: translateY(0);
}

.popular-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.popular-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-secondary);
}

.popular-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.popular-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-yellow);
    font-family: var(--font-secondary);
}

/* Pause animation on hover */
.categories-scroll-wrapper:hover .categories-scroll {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .category-card {
        width: 280px;
        height: 380px;
    }
    
    @keyframes scrollCategories {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 8));
        }
    }
    
    .popular-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .popular-item.featured {
        grid-column: span 2;
        grid-row: span 1;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .menu-section {
        padding: 60px 0;
    }

    .category-card {
        width: 260px;
        height: 350px;
    }
    
    .category-info h3 {
        font-size: 1.3rem;
    }

    @keyframes scrollCategories {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-260px * 8));
        }
    }

    .popular-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .popular-item.featured {
        grid-column: span 1;
        grid-row: span 1;
        height: 350px;
    }

    .popular-item {
        height: 300px;
    }

    .popular-content h3 {
        font-size: 1.3rem;
    }

    .popular-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .category-card {
        width: 240px;
        height: 320px;
    }
    
    @keyframes scrollCategories {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-240px * 8));
        }
    }
}
/* ===== Why Choose Us Section ===== */
.why-choose-us {
    padding: 30px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    position: relative;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-yellow);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.feature-badge.popular {
    background: var(--primary-red);
    color: var(--white);
}

.feature-badge.new {
    background: #28a745;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}
/*============ signature dishes========== */
/* ===== Signature Dishes Carousel Section ===== */
.signature-dishes-section {
    padding: 30px 0;
    background: var(--light-color);
    overflow: hidden;
}

.dishes-carousel-wrapper {
    position: relative;
    margin: 60px 0;
}

.dishes-carousel {
    display: flex;
    gap: 30px;
    animation: scrollCarousel 40s linear infinite;
    width: max-content;
}

.dishes-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-380px * 8));
    }
}

.dish-card-wrapper {
    flex-shrink: 0;
    width: 380px;
}

.dish-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.dish-image-container {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.dish-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dish-card:hover .dish-image-container img {
    transform: scale(1.1);
}

.dish-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.dish-badge.bestseller {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark-color);
}

.dish-badge.popular {
    background: var(--primary-red);
}

.dish-badge.recommended {
    background: #28a745;
}

.dish-badge.vegetarian {
    background: #27ae60;
}

.dish-badge.chef {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.dish-badge.spicy {
    background: linear-gradient(135deg, #f12711, #f5af19);
}

.dish-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.dish-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.dish-name {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-family: var(--font-secondary);
    margin: 0;
    flex: 1;
}

.dish-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: var(--font-secondary);
    white-space: nowrap;
    margin-left: 15px;
}

.dish-category {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.dish-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

/* Pause animation on hover */
.dishes-carousel-wrapper:hover .dishes-carousel {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .dish-card-wrapper {
        width: 300px;
    }
    
    .dish-image-container {
        height: 220px;
    }
    
    .dish-name {
        font-size: 1.3rem;
    }
    
    .dish-price {
        font-size: 1.5rem;
    }
    
    @keyframes scrollCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 8));
        }
    }
}

/* ===== Services Section ===== */
.services-section {
    padding: 50px 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 500px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.service-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.95) 0%, rgb(67 60 61 / 69%) 38%, rgba(255, 107, 53, 0.3) 100%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.95;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    color: var(--white);
    z-index: 2;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.service-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-yellow);
    font-family: var(--font-secondary);
    transition: transform 0.3s ease;
}

.service-card:hover .service-title {
    transform: translateX(10px);
}

.service-tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 300;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-red);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(10px) rotate(45deg);
    background: var(--primary-yellow);
}

/* ===== About Section ===== */
.about-section {
    padding: 30px 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-content .title-decoration {
    margin: 0 0 30px 0;
}

.about-content .title-decoration.left {
    margin-left: 0;
}

.about-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    margin: 40px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: var(--light-color);
    transform: translateX(10px);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-stats-row {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: var(--font-secondary);
    margin-bottom: 5px;
}

.about-stat .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* About Images Grid */
.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-large {
    grid-row: span 2;
    height: 400px;
}

.image-small {
    height: 190px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.9), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.overlay-content i {
    color: var(--primary-yellow);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 0px;
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-content {
    color: var(--white);
    text-align: center;
}

.badge-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.badge-years {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        order: -1;
    }
    
    .experience-badge {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: 400px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-large {
        grid-row: span 1;
        height: 300px;
    }
    
    .about-stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        animation: none;
    }
}

/* ===== Counter Animation ===== */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: var(--font-secondary);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* ===== Services Section with Scrolling Arrow ===== */
.services-section {
    padding: 40px 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 500px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.service-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.95) 0%, rgb(67 60 61 / 69%) 38%, rgba(255, 107, 53, 0.3) 100%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.95;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    color: var(--white);
    z-index: 2;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.service-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-yellow);
    font-family: var(--font-secondary);
    transition: transform 0.3s ease;
}

.service-card:hover .service-title {
    transform: translateX(10px);
}

.service-tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Scrolling Arrow Animation */
.service-arrow {
    position: absolute;
    bottom: 40px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    overflow: hidden;
}

.service-arrow i {
    position: absolute;
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollArrow {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(20px);
        opacity: 0;
    }
}

/* Alternative: Continuous back and forth arrow */
.service-arrow::before,
.service-arrow::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    animation: arrowScroll 1.5s ease-in-out infinite;
}

.service-arrow::before {
    animation-delay: 0s;
}

.service-arrow::after {
    animation-delay: 0.75s;
}

@keyframes arrowScroll {
    0%, 100% {
        transform: translateX(-15px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(15px);
        opacity: 0;
    }
}

/* Hide the original i element if using pseudo-elements */
.service-arrow i {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        order: -1;
    }
    
    .experience-badge {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: 400px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-large {
        grid-row: span 1;
        height: 300px;
    }
    
    .about-stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        animation: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===== Menu Section Base ===== */
.menu-section {
    padding: 50px 0;
    background: var(--white);
}

/* ===== Set Lunch Highlight (Fixed) ===== */
.lunch-highlight-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 80px;

}

.lunch-image-side {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.lunch-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lunch-highlight-wrapper:hover .lunch-image-side img {
    transform: scale(1.05);
}

.lunch-badge-floating {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.lunch-badge-floating i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.badge-time {
    display: block;
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.badge-hours {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.lunch-content-side {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lunch-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}

.lunch-content-side h3 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.lunch-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.lunch-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

.lunch-col h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--border-color);
}

.lunch-col h4 i {
    color: var(--primary-orange);
}

.price-from {
    margin-left: auto;
    background: var(--primary-red);
    color: var(--white);
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 15px;
    font-weight: 600;
}

.lunch-col ul {
    list-style: none;
}

.lunch-col li {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.lunch-col li::before {
    content: '•';
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-outline-dark {
    background:linear-gradient(135deg, #4285f4, #34a853);
    border: 2px solid white;
    color:white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 30px;
}
.btn-outline {
    background: #918888;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline-dark:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== New Menu Categories Design ===== */
.menu-categories-new {
    position: relative;
}

/* Tab Navigation */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.tab-btn i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tab-btn:hover i {
    transform: scale(1.2);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.tab-btn.active i {
    color: var(--white);
}

/* Tab Content */
.tab-content-wrapper {
    background: var(--light-color);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.tab-content {
    display: none;
    animation: fadeInTab 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Showcase Layout */
.category-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
	padding-bottom: 25px;
}

.category-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.category-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-main-image:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.95), transparent);
    padding: 40px 30px 30px;
    color: var(--white);
}

.category-overlay h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    font-family: var(--font-secondary);
}

.category-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Dishes List */
.category-dishes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dish-row {
    background: var(--white);
    padding: 5px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    box-shadow: var(--shadow-sm);
}

.dish-row:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.dish-info {
    flex: 1;
}

.dish-info h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-family: var(--font-secondary);
}

.dish-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.dish-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--dark-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dish-badge.popular {
    background: var(--primary-red);
    color: var(--white);
}

.dish-badge.spicy {
    background: #f12711;
    color: var(--white);
}


/* Menu Bottom CTA */
.menu-cta {
    text-align: center;
    padding: 50px;
    background: var(--light-color);
    border-radius: 20px;
    border: 2px dashed var(--primary-orange);
}

.menu-cta p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.menu-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .lunch-highlight-wrapper {
        grid-template-columns: 1fr;
    }

    .lunch-image-side {
        min-height: 300px;
    }

    .category-showcase {
        grid-template-columns: 1fr;
    }

    .category-main-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .menu-section {
        padding: 60px 0;
    }

    .lunch-content-side {
        padding: 30px;
    }

    .lunch-content-side h3 {
        font-size: 2rem;
    }

    .lunch-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-tabs {
        gap: 10px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .tab-content-wrapper {
        padding: 25px;
    }

    .category-main-image {
        height: 300px;
    }

    .dish-row {
        flex-direction: column;
        gap: 15px;
    }

    .dish-price {
        font-size: 1.5rem;
    }

    .menu-cta {
        padding: 30px 20px;
    }
    
    .menu-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Blog Section ===== */
.blog-section {
    padding: 50px 0;
    background: var(--light-color);
    overflow: hidden;
}

.blog-carousel-wrapper {
    position: relative;
    margin: 60px 0;
    padding: 20px 0;
}

.blog-carousel {
    display: flex;
    gap: 30px;
    animation: scrollBlog 50s linear infinite;
    width: max-content;
}

.blog-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollBlog {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-380px * 8));
    }
}

.blog-card {
    flex-shrink: 0;
    width: 380px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: var(--font-secondary);
}

.blog-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-orange);
    gap: 15px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pause animation on hover */
.blog-carousel-wrapper:hover .blog-carousel {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1200px) {
    @keyframes scrollBlog {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-380px * 8));
        }
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-card {
        width: 320px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-title {
        font-size: 1.3rem;
    }

    @keyframes scrollBlog {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-320px * 8));
        }
    }
}

@media (max-width: 480px) {
    .blog-card {
        width: 280px;
    }

    @keyframes scrollBlog {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 8));
        }
    }
}


/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 3rem 0;
    background:#faf8f3;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
}

.rating-stars i {
    color: #ff9800;
    font-size: 1.2rem;
}

.rating-info {
    display: flex;
    flex-direction: column;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.testimonials-slider-wrapper {
    position: relative;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(2, 196, 1, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
}

.review-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.review-rating i {
    color: #ff9800;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.reviewer-details h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
}

.google-review-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--purple);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-review-link:hover {
    color: var(--gold);
    gap: 0.8rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.slider-btn1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slider-btn1:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #e91e63;
    width: 32px;
    border-radius: 6px;
}

.slider-progress {
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
    margin-top: 2rem;
    overflow: hidden;
}

/* instgram section=== */
/* ===== Instagram Gallery Section ===== */
.instagram-gallery-section {
    background: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.instagram-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.instagram-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.instagram-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instagram-item:hover .instagram-image-wrapper img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(220, 20, 60, 0.9) 0%, rgba(255, 107, 53, 0.7) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.reel-icon,
.post-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.reel-icon i,
.post-icon i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.reel-stats {
    display: flex;
    gap: 20px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.reel-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reel-stats i {
    font-size: 1.1rem;
}

/* Instagram Button */
.btn-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.4);
}

/* ===== Lightbox Popup ===== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 700px;
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    animation: lightboxZoom 0.4s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

.lightbox-info {
    padding: 20px;
    background: var(--white);
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.lightbox-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark-color);
}

.lightbox-profile i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lightbox-more {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.lightbox-stats {
    display: flex;
    gap: 25px;
    color: var(--text-dark);
    font-weight: 600;
}

.lightbox-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--primary-red);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.lightbox-close:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--primary-red);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.lightbox-nav:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--dark-color);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-gallery-section {
        padding: 60px 0;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .reel-stats {
        font-size: 0.9rem;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-info {
        padding: 15px;
    }

    .lightbox-stats {
        gap: 15px;
        font-size: 0.9rem;
    }
}


        .form-container {
            background: white;
            border-radius: 12px;
            padding: 40px;
           
            width: 100%;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            color: #333;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .required::after {
            content: ' *';
            color: #d400d4;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="date"],
        select,
        textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
            background-color: #fafafa;
            transition: border-color 0.3s;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        input[type="date"]:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #d400d4;
        }

        input[type="date"] {
            position: relative;
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            padding-right: 40px;
        }

        .submit-btn {
            background-color: #00aa00;
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background-color: #008800;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .form-container {
                padding: 25px;
            }
        }   