/* CSS Variables */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --text-light: #7f8c8d;
    --border-color: #dce1e3;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

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

a:hover {
    color: var(--secondary-color);
}

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

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), #ff5252);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn--secondary {
    background: white;
    color: var(--dark-color);
    border: 2px solid var(--border-color);
}

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

.btn__icon {
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.navbar__brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.navbar__title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.navbar__subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.navbar__link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero__info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.hero__info-icon {
    font-size: 1.2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-color);
}

.about__content {
    display: grid;
    gap: 3rem;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card__title {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-card__description {
    color: var(--text-light);
    line-height: 1.5;
}

.about__services {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about__services-title {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-tag {
    background: var(--light-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    border: 2px solid transparent;
    transition: var(--transition);
}

.service-tag:hover {
    border-color: var(--primary-color);
    background: white;
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.specialty-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.specialty-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.specialty-card__image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.specialty-card__content {
    padding: 1.5rem;
    background: white;
}

.specialty-card__title {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.specialty-card__description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.specialty-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.specialties__options {
    text-align: center;
}

.specialties__options-title {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.options-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.option-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--light-color);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery__item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.gallery__lightbox.active {
    display: flex;
}

.gallery__lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius);
}

.gallery__lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
}

.gallery__lightbox-prev,
.gallery__lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 20px;
}

.gallery__lightbox-prev {
    left: 20px;
}

.gallery__lightbox-next {
    right: 20px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.reviews__rating {
    text-align: center;
}

.reviews__score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.reviews__stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

.star {
    font-size: 1.5rem;
    color: var(--border-color);
}

.star.filled {
    color: #ffc107;
}

.reviews__count {
    color: var(--text-light);
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.distribution-row {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 15px;
}

.distribution-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.distribution-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    margin-bottom: 3rem;
}

.reviews__track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.review-card__date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-card__text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-card__details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-detail {
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--light-color);
    padding: 4px 8px;
    border-radius: var(--radius);
}

.review-card__badge {
    background: var(--success-color);
    color: white;
    padding: 4px 8px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.review-card__owner-response {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

.review-card__owner-response p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.reviews__nav:hover {
    background: var(--primary-color);
    color: white;
}

.reviews__nav--prev {
    left: 0;
}

.reviews__nav--next {
    right: 0;
}

.reviews__tags {
    text-align: center;
}

.reviews__tags-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.review-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.review-tag {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    font-size: 0.9rem;
}

/* Popularity Section */
.popularity {
    padding: 80px 0;
    background: var(--light-color);
}

.popularity__days {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.popularity__day {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.popularity__day.active,
.popularity__day:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.popularity__chart {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.popularity__bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 200px;
    margin-bottom: 1rem;
}

.popularity__bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
    position: relative;
}

.popularity__bar:hover {
    opacity: 0.8;
}

.popularity__bar-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
}

.popularity__hours {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.85rem;
}

.popularity__legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.popularity__legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.popularity__legend-item::before {
    content: '';
    width: 20px;
    height: 12px;
    border-radius: 4px;
}

.popularity__legend-item.low::before {
    background: #a8e6cf;
}

.popularity__legend-item.medium::before {
    background: #ffd3b6;
}

.popularity__legend-item.high::before {
    background: #ffaaa5;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact__info {
    display: grid;
    gap: 2rem;
}

.contact__card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact__card-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact__address {
    font-style: normal;
    color: var(--text-color);
    line-height: 1.8;
}

.contact__map-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact__phone {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact__note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact__hours {
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-day {
    font-weight: 600;
    color: var(--text-color);
}

.hours-time {
    color: var(--primary-color);
}

.contact__delivery {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
}

.contact__delivery:hover {
    background: var(--secondary-color);
    color: white;
}

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

.contact__payment {
    text-align: center;
}

.contact__payment-title {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-method {
    background: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

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

.footer__title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer__description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__badge {
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: var(--radius);
    font-size: 0.85rem;
}

.footer__links-title,
.footer__services-title,
.footer__similar-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer__links-list,
.footer__services-list,
.footer__similar-list {
    list-style: none;
}

.footer__links-list li,
.footer__services-list li,
.footer__similar-list li {
    padding: 5px 0;
    color: rgba(255,255,255,0.8);
}

.footer__links-list a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

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

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

.footer__copyright {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}

.footer__location {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .specialties__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
    }

    .navbar__menu.active {
        display: flex;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .reviews__summary {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__info {
        flex-direction: column;
        align-items: center;
    }

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

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

    .popularity__days {
        flex-direction: column;
        align-items: stretch;
    }

    .popularity__hours {
        font-size: 0.7rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero__buttons,
    .gallery__lightbox,
    .reviews__nav,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
    }
}