/* ===== CSS Variables ===== */
:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --green-950: #052e16;

    --primary: #16a34a;
    --primary-light: #22c55e;
    --primary-dark: #15803d;
    --primary-glow: rgba(22, 163, 74, 0.3);

    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;

    --white: #ffffff;
    --black: #000000;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-green: 0 4px 14px rgba(22, 163, 74, 0.35);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

.section {
    padding: 80px 0;
}

/* ===== Typography ===== */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title em {
    color: var(--primary);
    font-style: italic;
}

.section-desc {
    font-size: 1rem;
    color: var(--neutral-500);
    max-width: 560px;
    margin: 0 auto;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1002;
    position: relative;
}

.logo-icon {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.logo-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white) !important;
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--neutral-900) !important;
}

.navbar.menu-open .logo-text {
    color: var(--white) !important;
}

.navbar.menu-open .nav-toggle span {
    background: var(--white) !important;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--neutral-800);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-toggle.active ~ .nav-menu .nav-link {
    color: var(--white);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 46, 22, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1001;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-menu.active .nav-link {
    color: var(--white);
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    padding: 8px 16px;
    position: relative;
}

.nav-link:hover {
    color: var(--green-300);
}

.nav-cta {
    background: var(--primary);
    border-radius: var(--radius-full);
    padding: 12px 24px !important;
    margin-top: 8px;
}

.nav-cta:hover {
    background: var(--primary-light);
    color: var(--white);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(5, 46, 22, 0.85) 0%, rgba(22, 163, 74, 0.6) 50%, rgba(5, 46, 22, 0.8) 100%),
        url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1400&h=900&fit=crop') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--green-200);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green-300);
    margin-bottom: 8px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-info-item i {
    color: var(--green-300);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
}

/* ===== About ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #f3f4f6;
}

.about-img-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 140px;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    background: #f3f4f6;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-card {
    position: absolute;
    top: -15px;
    left: -10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-green);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-text {
    color: var(--neutral-600);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--green-50);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 2px;
}

.feature p {
    font-size: 0.85rem;
    color: var(--neutral-500);
}

/* ===== Menu Section ===== */
.menu-section {
    background: var(--neutral-50);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-cat-btn {
    padding: 10px 22px;
    border: 2px solid var(--neutral-200);
    background: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neutral-600);
    cursor: pointer;
    transition: var(--transition);
}

.menu-cat-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.menu-cat-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.menu-card {
    flex: 0 1 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--neutral-100);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-card.hidden {
    display: none;
}

.menu-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.2);
}

.menu-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    color: var(--neutral-700);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-tag {
    background: linear-gradient(135deg, var(--primary), var(--green-400));
    color: var(--white);
}

.menu-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.menu-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.menu-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-card-body p {
    font-size: 0.85rem;
    color: var(--neutral-500);
    line-height: 1.5;
    flex: 1;
}

/* Productos no disponibles */
.menu-card.unavailable {
    position: relative;
    cursor: pointer;
    opacity: 0.75;
}
.menu-card.unavailable:hover {
    transform: translateY(-2px);
}
.menu-card.unavailable .menu-card-img img {
    filter: grayscale(100%) brightness(0.85);
}
.menu-card.unavailable .menu-card-body {
    opacity: 0.65;
}
.product-unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    pointer-events: none;
    border-radius: var(--radius-lg);
}
.product-unavailable-overlay i {
    font-size: 2.5rem;
    color: #fff;
    opacity: 0.95;
}
.product-unavailable-overlay span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: rgba(220, 38, 38, 0.95);
    padding: 8px 18px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu-cta {
    text-align: center;
    margin-top: 48px;
}

.menu-cta p {
    color: var(--neutral-500);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

/* Modal de producto no disponible */
.unavailable-modal {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease-out;
}

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

.unavailable-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unavailable-modal-icon i {
    font-size: 2.5rem;
    color: #dc2626;
}

.unavailable-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.unavailable-modal-message {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.unavailable-modal-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.unavailable-modal-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.unavailable-modal-btn:active {
    transform: translateY(0);
}

/* ===== Services ===== */
.services {
    background: var(--green-950);
    color: var(--white);
}

.services .section-tag {
    color: var(--green-300);
}

.services .section-tag::before {
    background: var(--green-300);
}

.services .section-title {
    color: var(--white);
}

.services .section-title em {
    color: var(--green-300);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.service-card {
    flex: 0 1 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--green-400));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-green);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ===== Reviews ===== */
.reviews {
    background: var(--neutral-50);
}

.reviews-summary {
    margin-top: 20px;
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--neutral-900);
    line-height: 1;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    display: flex;
    gap: 2px;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--neutral-500);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
}

.review-card {
    min-width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-100);
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 1rem;
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--green-400));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--neutral-400);
}

.reviews-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.review-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--neutral-200);
    background: var(--white);
    color: var(--neutral-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.85rem;
}

.review-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--green-50);
}

/* ===== CTA Section ===== */
.cta-section {
    background: 
        linear-gradient(135deg, var(--green-800) 0%, var(--primary) 50%, var(--green-700) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: var(--shadow-xl);
}

.cta-section .btn-primary:hover {
    background: var(--green-50);
    transform: translateY(-2px);
}

.cta-section .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--green-50);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.5;
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.social-links {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: var(--neutral-100);
    color: var(--neutral-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.contact-map {
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== Footer ===== */
.footer {
    background: var(--neutral-950);
    color: var(--neutral-400);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--neutral-500);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-500);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green-400);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 24px rgba(37, 211, 102, 0);
    }
}

/* Scroll Reveal — opacity only (no translateY to avoid CLS) */
.reveal {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.reveal.visible {
    opacity: 1;
}

/* ===== RESPONSIVE - Tablet ===== */
@media (min-width: 640px) {
    .menu-card {
        flex: 0 1 calc(50% - 12px);
    }

    .service-card {
        flex: 0 1 calc(50% - 12px);
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }

    .review-card {
        min-width: calc(50% - 12px);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== RESPONSIVE - Mobile nav scroll fix ===== */
@media (max-width: 1023px) {
    .nav-menu {
        overflow-y: auto;
        padding: 80px 20px 40px;
    }
}

/* ===== RESPONSIVE - Desktop ===== */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.8rem;
    }

    /* Navbar Desktop */
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        background: none;
        backdrop-filter: none;
        width: auto;
        height: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        gap: 4px;
    }

    .nav-link {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.85);
        padding: 8px 14px;
        border-radius: var(--radius-full);
    }

    .nav-link:hover {
        color: var(--white);
        background: rgba(255,255,255,0.1);
    }

    .navbar.scrolled .nav-link {
        color: var(--neutral-600);
    }

    .navbar.scrolled .nav-link:hover {
        color: var(--primary);
        background: var(--green-50);
    }

    .navbar.scrolled .nav-cta {
        color: var(--white);
    }

    .nav-cta {
        margin-top: 0;
        margin-left: 8px;
    }

    /* Hero Desktop */
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    /* About Desktop */
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .about-img-main img {
        height: 420px;
    }

    .about-img-secondary {
        width: 180px;
        height: 180px;
        right: -30px;
        bottom: -30px;
    }

    /* Menu Desktop */
    .menu-card {
        flex: 0 1 calc(33.333% - 16px);
    }

    /* Services Desktop */
    .service-card {
        flex: 0 1 calc(33.333% - 16px);
    }

    /* Reviews Desktop */
    .review-card {
        min-width: calc(33.333% - 16px);
    }

    /* CTA Desktop */
    .cta-content h2 {
        font-size: 2.8rem;
    }

    /* Contact Desktop */
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-map {
        height: auto;
        min-height: 400px;
    }

    /* Footer Desktop */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ===== RESPONSIVE - Large Desktop ===== */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 5rem;
    }

    .container {
        padding: 0 60px;
    }
}

/* ===== Favorite Button ===== */
.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--neutral-400);
    font-size: 1.1rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
}

.favorite-btn:hover {
    background: white;
    color: #ef4444;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.favorite-btn.active {
    color: #ef4444;
    background: white;
}

.favorite-btn.active:hover {
    transform: scale(1.15);
}

/* ===== Menu Search Bar ===== */
.menu-search-wrapper {
    max-width: 600px;
    margin: 24px auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.menu-search-bar {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.menu-search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.menu-search-bar i.fa-search {
    color: var(--neutral-400);
    margin-right: 12px;
    font-size: 1rem;
}

.menu-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--neutral-900);
}

.menu-search-bar input::placeholder {
    color: var(--neutral-400);
}

.clear-search-btn {
    background: none;
    border: none;
    color: var(--neutral-400);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-search-btn:hover {
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.favorites-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    color: var(--neutral-600);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.favorites-filter-btn i {
    font-size: 1rem;
}

.favorites-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.favorites-filter-btn:active {
    transform: scale(0.96);
}

.favorites-filter-btn.active {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
}

.favorites-filter-btn.active i {
    color: #dc2626;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .menu-search-wrapper {
        max-width: 100%;
        padding: 0 16px;
        gap: 8px;
    }

    .favorites-filter-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .favorites-filter-btn span {
        display: none;
    }

    .favorites-filter-btn i {
        font-size: 1.1rem;
    }
}

/* ===== Toast Notification (Real-time Updates) ===== */
.update-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.update-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.update-toast i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .update-toast {
        right: 10px;
        left: 10px;
        top: 70px;
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}
