/* ====================================
   CSS VARIABLES
   ==================================== */
:root {
    /* Colors - Casual Restaurant Theme */
    --primary: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ff5252;
    --secondary: #ffa726;
    --secondary-dark: #f57c00;
    --secondary-light: #ffb74d;

    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #ffffff;

    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-dark: #1a1a1a;
    --bg-overlay: rgba(0, 0, 0, 0.6);

    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Typography */
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Layout */
    --container-max: 1140px;
    --container-padding: 20px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ====================================
   RESET & BASE STYLES
   ==================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ====================================
   UTILITY CLASSES
   ==================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

/* ====================================
   NAVBAR
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.navbar__logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.navbar__menu {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.navbar__link {
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.navbar__link:hover {
    color: var(--primary);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__cta {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.navbar__cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 30px;
}

.navbar__toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

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

.hero__title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: var(--space-md);
    font-weight: 300;
    opacity: 0.95;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 1.5rem;
    color: #ffd700;
}

.star.filled {
    opacity: 1;
}

.star.partial {
    opacity: 0.5;
}

.star.empty {
    opacity: 0.3;
}

.rating-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.rating-count {
    opacity: 0.9;
}

.hero__badges {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
    text-align: center;
}

.btn--primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border: 2px solid var(--text-light);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: var(--text-light);
    color: var(--text-primary);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

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

.scroll-indicator {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about {
    padding: var(--space-xl) 0;
    background: var(--bg-primary);
}

.about__text {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about__text p + p {
    margin-top: var(--space-sm);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature-card {
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.feature-card__text {
    color: var(--text-secondary);
}

/* ====================================
   MENU SECTION
   ==================================== */
.menu {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
}

.menu__tags {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.tag-list {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.menu-item {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.menu-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.menu-item__description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.menu-item__tags {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.item-tag {
    padding: 0.25rem 0.75rem;
    background: var(--secondary-light);
    color: var(--text-primary);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.menu__price-note {
    text-align: center;
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--primary-light);
    color: var(--text-light);
    border-radius: 8px;
    font-weight: 600;
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services {
    padding: var(--space-xl) 0;
    background: var(--bg-primary);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: var(--space-md);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-card--highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--text-light);
}

.service-card--highlight .service-card__text,
.service-card--highlight .service-card__features {
    color: rgba(255, 255, 255, 0.95);
}

.service-card__icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.service-card__text {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-card__features {
    list-style: none;
}

.service-card__features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-card__features li:last-child {
    border-bottom: none;
}

.service-card__features li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 600;
    margin-right: 0.5rem;
}

.service-card--highlight .service-card__features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-card--highlight .service-card__features li::before {
    color: var(--text-light);
}

.delivery-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.delivery-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.delivery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

.delivery-btn__logo {
    font-size: 1.5rem;
}

/* ====================================
   GALLERY SECTION
   ==================================== */
.gallery {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__btn {
    font-size: 2rem;
    color: var(--text-light);
}

/* ====================================
   REVIEWS SECTION
   ==================================== */
.reviews {
    padding: var(--space-xl) 0;
    background: var(--bg-primary);
}

.reviews__summary {
    margin-bottom: var(--space-lg);
}

.rating-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: 12px;
}

.rating-summary__score {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.score-stars {
    margin: var(--space-sm) 0;
}

.score-count {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.rating-bar__label {
    min-width: 30px;
    font-weight: 500;
}

.rating-bar__fill {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar__value {
    height: 100%;
    background: var(--secondary);
    transition: var(--transition-slow);
}

.rating-bar__count {
    min-width: 40px;
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.reviews__slider {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: var(--space-sm);
}

.reviews__slider::-webkit-scrollbar {
    height: 8px;
}

.reviews__slider::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.reviews__slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.review-card {
    flex: 0 0 calc(50% - var(--space-sm));
    min-width: 300px;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: var(--space-md);
    scroll-snap-align: start;
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    font-size: 1rem;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.review-text {
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.review-details {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: var(--space-sm);
}

.detail-badge {
    padding: 0.25rem 0.75rem;
    background: var(--bg-primary);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.review-rating-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.review-response {
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-primary);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    font-size: 0.875rem;
}

.review-response strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.reviews__controls {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.review-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-light);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.review-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* ====================================
   HOURS SECTION
   ==================================== */
.hours {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
}

.hours__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.hours__schedule {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: 600;
}

.schedule-time {
    color: var(--text-secondary);
}

.hours__popular {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.hours__popular h3 {
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.popular-times {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.popular-time-day {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.day-label {
    font-weight: 600;
    font-size: 0.875rem;
}

.time-bar {
    height: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
}

.time-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: var(--transition-slow);
}

.time-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ====================================
   AMENITIES SECTION
   ==================================== */
.amenities {
    padding: var(--space-xl) 0;
    background: var(--bg-primary);
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.amenity-group {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: var(--space-md);
}

.amenity-group__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amenity-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.amenity-list li {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: var(--space-md);
    display: flex;
    gap: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.info-card__icon {
    font-size: 2.5rem;
}

.info-card__content h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.125rem;
}

.info-card__content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
    margin-top: var(--space-xs);
}

.info-link:hover {
    text-decoration: underline;
}

.info-phone {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.25rem;
    display: block;
    margin-bottom: var(--space-xs);
}

.contact__map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ====================================
   ORDER SECTION
   ==================================== */
.order {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
}

.order__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.order__title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
}

.order__text {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

.order__buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn--order {
    background: var(--text-light);
    color: var(--text-primary);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.btn--order:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer__title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.footer__text {
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.footer__links,
.footer__hours,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__links a:hover {
    color: var(--primary-light);
}

.footer__contact a {
    color: var(--primary-light);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__plus-code {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: var(--space-xs);
}

/* ====================================
   LIGHTBOX
   ==================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev {
    left: 2rem;
}

.lightbox__nav--next {
    right: 2rem;
}

/* ====================================
   SCROLL TO TOP BUTTON
   ==================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-light);
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    z-index: 999;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1023px) {
    .navbar__menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-normal);
        pointer-events: none;
    }

    .navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .navbar__toggle {
        display: flex;
    }

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

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

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

    .rating-summary {
        grid-template-columns: 1fr;
    }

    .contact__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .menu__grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex: 0 0 85%;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .lightbox__nav,
    .lightbox__close {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox__nav--prev {
        left: 1rem;
    }

    .lightbox__nav--next {
        right: 1rem;
    }

    .lightbox__close {
        top: 1rem;
        right: 1rem;
    }
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease;
}

/* Intersection Observer animations */
.observe-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.observe-fade.visible {
    opacity: 1;
    transform: translateY(0);
}