/* 1. CSS Variables */
:root {
    --primary-color: #0066cc;
    --secondary-color: #1a73e8;
    --accent-color: #4285f4;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-light: #70757a;
    --background: #ffffff;
    --background-secondary: #f8f9fa;
    --border-color: #dadce0;
    --success-color: #188038;
    --warning-color: #ea8600;
    --error-color: #d93025;
    --shadow-sm: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
    --shadow-md: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
    --shadow-lg: 0 2px 8px 0 rgba(60,64,67,.3), 0 8px 16px 4px rgba(60,64,67,.15);
    --max-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Reset/Normalize */
* {
    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-primary);
    background: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* 3. Base Styles */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn--primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn--outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

.btn--outline:hover {
    border-color: var(--primary-color);
    background: rgba(66, 133, 244, 0.08);
}

/* 4. Layout Components */

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

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

.navigation__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navigation__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: var(--transition);
}

.navigation__menu {
    display: flex;
    gap: 2rem;
}

.navigation__menu li a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition);
}

.navigation__menu li a:hover {
    color: var(--primary-color);
    background: rgba(66, 133, 244, 0.08);
}

/* 5. Page Sections */

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--header-height);
}

.hero__image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero__content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero__rating {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.rating-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.stars {
    display: inline-flex;
    position: relative;
    font-size: 1.2rem;
}

.stars::before {
    content: '★★★★★';
    color: rgba(255, 255, 255, 0.3);
}

.stars::after {
    content: '★★★★★';
    position: absolute;
    left: 0;
    top: 0;
    color: #fbbf24;
    width: 92%;
    overflow: hidden;
}

.review-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* About */
.about {
    padding: 5rem 0;
    background: var(--background);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about__text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--background-secondary);
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.5rem;
}

.about__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-list li {
    padding: 0.5rem;
    background: var(--background);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-indicator {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.price-indicator span {
    color: var(--border-color);
}

.price-indicator .active {
    color: var(--primary-color);
}

/* Specialties */
.specialties {
    padding: 5rem 0;
    background: var(--background-secondary);
}

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

.specialty-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

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

.specialty-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.specialty-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Services */
.services {
    padding: 5rem 0;
    background: var(--background);
}

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

.service-group {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: 12px;
}

.service-group h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.check-icon {
    color: var(--success-color);
    font-weight: bold;
}

.services__note {
    background: #fef7ed;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--warning-color);
}

.note-item {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.note-item:last-child {
    margin-bottom: 0;
}

/* Hours */
.hours {
    padding: 5rem 0;
    background: var(--background-secondary);
}

.hours__grid {
    max-width: 600px;
    margin: 0 auto;
}

.hours__card {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.day-row:last-child {
    border-bottom: none;
}

.day-row.weekend {
    background: rgba(66, 133, 244, 0.05);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.day {
    font-weight: 500;
    color: var(--text-primary);
}

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

.hours__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--background);
    border-radius: 8px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success-color);
    animation: pulse 2s infinite;
}

.status-indicator.closed {
    background: var(--error-color);
    animation: none;
}

.status-text {
    font-weight: 500;
}

/* Reviews */
.reviews {
    padding: 5rem 0;
    background: var(--background);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.summary-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-secondary);
    border-radius: 12px;
}

.rating-display {
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stars-container {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.stars-full::before {
    content: '★★★★★';
    color: #e0e0e0;
}

.stars-full::after {
    content: '★★★★★';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #fbbf24;
    width: 92%;
    overflow: hidden;
}

.total-reviews {
    color: var(--text-secondary);
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.distribution-row {
    display: grid;
    grid-template-columns: 70px 1fr 50px;
    align-items: center;
    gap: 1rem;
}

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

.bar {
    height: 100%;
    background: #fbbf24;
    transition: var(--transition);
}

.reviews__highlights {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews__highlights h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.highlight-tag {
    padding: 8px 16px;
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.reviews__cta {
    text-align: center;
}

/* Audience */
.audience {
    padding: 5rem 0;
    background: var(--background-secondary);
}

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

.audience-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.audience-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: var(--background);
}

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

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-card address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

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

.contact-item {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

.order-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.order-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.order-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.order-icon {
    font-size: 1.5rem;
}

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

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 2rem;
}

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

.footer__brand h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer__brand p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer__subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer__links h4,
.footer__hours h4,
.footer__location h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer__links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer__hours p,
.footer__location p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

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

.footer__bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* 6. UI Components */

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* 7. Utilities */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(24, 128, 56, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(24, 128, 56, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(24, 128, 56, 0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* 9. Media Queries */

/* Tablet */
@media (max-width: 1023px) {
    .container {
        padding: 0 16px;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact__map {
        height: 300px;
    }

    .reviews__summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --header-height: 60px;
    }

    .navigation__toggle {
        display: flex;
    }

    .navigation__menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--background);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .navigation__menu.active {
        left: 0;
    }

    .navigation__menu li {
        width: 100%;
    }

    .navigation__menu li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

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

    .btn {
        width: 100%;
    }

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

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

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

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

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

    .order-options {
        grid-template-columns: 1fr;
    }

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

    .distribution-row {
        font-size: 0.9rem;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hero__title {
        font-size: 1.75rem;
    }

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

    .container {
        padding: 0 12px;
    }
}