/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    /* Mobile touch optimizations */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--red-gradient);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-full {
    width: 100%;
}

/* Card Components */
.specialty-card, .offer-card, .attraction-card, .team-member, .info-card, .direction-method {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.specialty-card:hover::before {
    opacity: 0.05;
}

/* Card hover effects consolidated below with enhanced styling */

/* Form Components */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

/* Form focus styles - see enhanced version below */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Badges */
.specialty-badge, .item-badge, .offer-badge, .distance {
    position: absolute;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.specialty-badge {
    top: 20px;
    right: 20px;
    background: var(--red-gradient);
    color: white;
}

.item-badge.vegetarian {
    background: var(--green-gradient);
    color: white;
}

.item-badge.non-veg {
    background: var(--red-gradient);
    color: white;
}

.offer-badge {
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
}

.distance {
    top: 25px;
    right: 25px;
    background: var(--primary);
    color: var(--dark);
}

/* Icons */
.info-icon, .contact-icon {
    flex: 0 0 60px;
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Menu Categories */
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
    /* Mobile touch optimizations */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.category-btn.active, .category-btn:hover {
    background: var(--primary);
    color: white;
}

.category-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 60px 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    color: var(--dark);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* TripAdvisor Icon Fallback - if Font Awesome doesn't load */
.social-link .fa-tripadvisor::before {
    content: "\f262";
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

/* Alternative: Show text if icon fails */
.social-link[aria-label="TripAdvisor"]:not(:has(i))::after {
    content: "TA";
    font-weight: bold;
    font-size: 1rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 12px 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    display: flex;
    animation: slideInUp 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Form Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #4caf50, #81c784);
    color: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.success-message.show {
    display: flex;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner for Forms */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Card Hover Effects */
.specialty-card, .offer-card, .attraction-card,
.team-member, .info-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

.specialty-card:hover, .offer-card:hover, .attraction-card:hover,
.team-member:hover, .info-card:hover, .direction-method:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

/* Mobile touch active states for better feedback */
@media (hover: none) and (pointer: coarse) {
    .specialty-card:active, .offer-card:active, .attraction-card:active,
    .team-member:active, .info-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    .category-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* Form input error state */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

/* Focus visible for keyboard navigation */
.btn:focus-visible,
.social-link:focus-visible,
.category-btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   MOBILE CTA BAR - Local SEO Optimization
   ============================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 8px 10px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    justify-content: space-around;
    align-items: center;
    border-top: 2px solid var(--primary);
}

.mobile-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 70px;
    min-height: 44px; /* Touch target accessibility */
}

.mobile-cta-btn i {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.mobile-cta-btn span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-cta-btn:hover,
.mobile-cta-btn:active {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.mobile-cta-btn.whatsapp i {
    color: #25D366;
}

.mobile-cta-btn.whatsapp:hover,
.mobile-cta-btn.whatsapp:active {
    background: rgba(37, 211, 102, 0.15);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }

    body {
        padding-bottom: 75px;
    }

    .footer {
        margin-bottom: 0;
    }
}

/* ============================================
   SEO LANDING PAGE STYLES
   ============================================ */
.seo-content {
    background: linear-gradient(180deg, #faf9f6 0%, #fff 100%);
}

.seo-article {
    max-width: 900px;
    margin: 0 auto;
}

.article-intro {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.content-section h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 1.5rem 0 0.8rem;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Features Grid for SEO Pages */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Dish Highlight */
.dish-highlight {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.dish-highlight img {
    width: 300px;
    height: 250px;
    object-fit: cover;
}

.dish-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dish-info h3 {
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.dish-info p {
    color: #555;
    line-height: 1.7;
}

/* Dish List */
.dish-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.dish-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.dish-list li:last-child {
    border-bottom: none;
}

/* Location Info Box */
.location-info-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
}

.location-info-box h3 {
    color: var(--dark);
    margin: 1.5rem 0 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info-box h3:first-child {
    margin-top: 0;
}

.location-info-box h3 i {
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a4e 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.cta-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    border: none;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Related Pages */
.related-pages {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.related-pages h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

.related-link:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateX(5px);
}

.related-link i {
    font-size: 1.2rem;
    color: var(--primary);
}

.related-link:hover i {
    color: var(--dark);
}

/* Testimonial Box */
.testimonial-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary);
}

.testimonial-box blockquote {
    margin: 0;
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

.testimonial-box cite {
    display: block;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

/* Itinerary Box - see enhanced version below in Additional SEO Page Styles */

/* Amenities List */
.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 0;
}

.amenities-list li i {
    color: var(--primary);
    margin-top: 0.2rem;
}

/* Celebrations List */
.celebrations-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.celebrations-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.celebrations-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Booking Steps */
.booking-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.booking-steps li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.booking-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Menu Option Box */
.menu-option-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 1rem 0;
}

.menu-option-box h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ============================================
   MENU PAGE STYLES - PREMIUM DESIGN
   ============================================ */
.menu-page {
    background: linear-gradient(180deg, #f8f6f2 0%, #faf9f7 50%, #fff 100%);
    position: relative;
}

/* Subtle pattern overlay */
.menu-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.menu-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
    padding: 2.5rem 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Decorative corner accent */
.menu-intro::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    right: 30px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 0 0 4px 4px;
}

.menu-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.25rem;
}

.menu-intro p:last-child {
    margin-bottom: 0;
}

.menu-note {
    display: inline-flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #f8f9f8 0%, #f0f4f0 100%);
    border-radius: 50px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.menu-note i {
    color: var(--accent);
    font-size: 1.1rem;
}

.menu-note i.fa-leaf {
    color: #2e8b57;
}

.menu-note i.fa-fire {
    color: #e67e22;
}

.menu-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.menu-category {
    font-size: 1.8rem;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.8rem;
    border-bottom: none;
    font-weight: 700;
    position: relative;
}

.menu-category i {
    color: var(--primary);
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu-section:hover .menu-category i {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.1) 100%);
    transform: scale(1.05);
}

.category-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    padding-left: 55px;
}

/* ============================================
   MENU ITEMS - PROFESSIONAL DESIGN
   Premium restaurant styling
   ============================================ */

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Subtle top accent line */
.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.2);
}

.menu-item:hover::before {
    opacity: 1;
}

/* Featured Items - Premium Styling */
.menu-item.featured {
    border-left: 4px solid var(--primary);
    background: linear-gradient(135deg, #fffdf5 0%, #ffffff 100%);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.1);
}

.menu-item.featured::before {
    background: linear-gradient(90deg, var(--primary), #f9e076, var(--primary));
    opacity: 1;
    height: 3px;
}

.menu-item.featured:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
    border-left-color: #f9e076;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.75rem;
    flex-wrap: nowrap;
}

.menu-item h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin: 0 0 0.5rem 0;
    word-wrap: break-word;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.menu-item:hover h3 {
    color: #2a2a2a;
}

.item-header h3 {
    flex: 1;
    min-width: 0;
    margin: 0;
    order: 1;
}

/* Badge Styling - Elegant Labels */
.item-header .item-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #e8c547 100%);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    position: static !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    order: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-description {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Price Styling - Professional Look */
.item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.item-price::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #f9e076);
    transition: width 0.4s ease;
}

.menu-item:hover .item-price::after {
    width: 100%;
}

/* Tag Styling - Clean Labels */
.item-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.item-tag.veg {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.menu-notes {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.menu-notes h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.menu-notes ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.menu-notes li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.menu-notes li i {
    color: var(--primary);
}

/* Footer Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Responsive SEO Pages */
@media (max-width: 768px) {
    .dish-highlight {
        flex-direction: column;
    }

    .dish-highlight img {
        width: 100%;
        height: 200px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .related-links {
        grid-template-columns: 1fr;
    }

    .celebrations-list {
        grid-template-columns: 1fr;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   ADDITIONAL SEO PAGE STYLES
   ============================================ */

/* Rating Highlights */
.rating-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.rating-item {
    text-align: center;
}

.rating-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.rating-source {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 1rem;
}

.rating-stars i {
    margin: 0 1px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.review-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 0.75rem;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.reviewer {
    font-size: 0.85rem;
    color: #888;
}

/* FAQ Section */
.faq-section {
    background: #fafafa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Itinerary Box */
.itinerary-box {
    background: linear-gradient(135deg, #f8f4e8 0%, #fff9e6 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.itinerary-item {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px dashed #d4af37;
    align-items: flex-start;
}

.itinerary-item:last-child {
    border-bottom: none;
}

.itinerary-item .time {
    font-weight: 700;
    color: var(--primary);
    min-width: 80px;
    font-family: 'Playfair Display', serif;
}

.itinerary-item .activity {
    color: #555;
    line-height: 1.5;
}

/* Styled List */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.styled-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.styled-list li:last-child {
    border-bottom: none;
}

/* Location Stats */
.location-stat {
    text-align: center;
}

.location-stat span {
    display: block;
}

.location-stat p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Content Block enhancements */
.content-block {
    margin-bottom: 2.5rem;
}

.content-block h2 {
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* SEO Hero adjustment */
.seo-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%),
                url('../images/restaurant-interior.webp') center/cover no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive for new elements */
@media (max-width: 768px) {
    .rating-highlights {
        gap: 1.5rem;
    }

    .rating-number {
        font-size: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .itinerary-item .time {
        min-width: auto;
    }

    .faq-section {
        padding: 1.5rem;
    }

    .content-block h2 {
        font-size: 1.4rem;
    }
}

/* Footer SEO Links Section */
.footer-seo-links {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 1rem;
    text-align: center;
}

.footer-seo-links h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.seo-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.seo-links-grid a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.seo-links-grid a:hover {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .seo-links-grid {
        gap: 0.25rem 0.5rem;
    }

    .seo-links-grid a {
        font-size: 0.8rem;
    }
}