/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #ff6b35;
    --primary-dark: #e85a2a;
    --secondary-color: #f7931e;
    --accent-color: #ffc857;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2d3436;
    --border-color: #dfe6e9;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --header-height: 70px;
    --container-max: 1140px;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
}

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

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section--alt {
    background-color: var(--bg-light);
}

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

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

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

.header__logo {
    display: flex;
    flex-direction: column;
}

.header__title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.header__subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
}

.nav__toggle {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
}

.nav__toggle-icon,
.nav__toggle-icon::before,
.nav__toggle-icon::after {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

.nav__toggle-icon {
    top: 50%;
    transform: translateY(-50%);
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
    content: '';
    left: 0;
}

.nav__toggle-icon::before {
    top: -10px;
}

.nav__toggle-icon::after {
    top: 10px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__link {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--bg-white);
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__description {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero__rating {
    margin-bottom: 30px;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.rating__stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.rating__half {
    opacity: 0.5;
}

.rating__score {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rating__count {
    color: var(--text-light);
    font-size: 1rem;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    text-align: center;
}

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

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

.btn--secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

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

/* ===== ABOUT SECTION ===== */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition-normal);
}

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

.highlight__icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.highlight__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.highlight__text {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about__image:hover img {
    transform: scale(1.05);
}

/* ===== FEATURES SECTION ===== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

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

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card__text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-card__list {
    list-style: none;
}

.feature-card__list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
}

.feature-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== PRICE SECTION ===== */
.price__content {
    max-width: 600px;
    margin: 0 auto;
}

.price-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.price-card__range {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-card__description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.price-card__features {
    list-style: none;
    text-align: left;
}

.price-card__features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.125rem;
}

.price-card__features li::before {
    content: '💶';
    position: absolute;
    left: 0;
}

/* ===== GALLERY SECTION ===== */
.gallery__categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery__category {
    padding: 10px 24px;
    border-radius: 50px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-weight: 500;
    border: 2px solid var(--border-color);
    transition: var(--transition-fast);
}

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

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

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

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

.gallery__item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.gallery__item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery__item.hidden {
    display: none;
}

/* ===== REVIEWS SECTION ===== */
.reviews__summary {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 40px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.reviews__score {
    text-align: center;
    padding: 20px;
}

.reviews__score-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.reviews__score-stars {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.reviews__score-count {
    color: var(--text-light);
    font-size: 1rem;
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.distribution__item {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    gap: 15px;
    align-items: center;
}

.distribution__label {
    color: var(--text-dark);
    font-size: 0.875rem;
}

.distribution__bar {
    height: 8px;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.distribution__fill {
    height: 100%;
    background-color: var(--secondary-color);
    transition: var(--transition-normal);
}

.distribution__count {
    color: var(--text-light);
    font-size: 0.875rem;
    text-align: right;
}

.reviews__tags {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    padding: 8px 16px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.review-card {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

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

.review-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-card__stars {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.review-card__score {
    font-weight: 600;
    color: var(--text-dark);
}

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

.review-card__badge-guide {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 10px;
}

.review-card__badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-dark);
}

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

.review-card__context {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.review-card__visit {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== ORDER SECTION ===== */
.order__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.order__card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

.order__logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.order__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order__icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.order__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.order__description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ===== HOURS SECTION ===== */
.hours__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.hours__list {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.hours__item:last-child {
    border-bottom: none;
}

.hours__day {
    font-weight: 600;
    color: var(--text-dark);
}

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

.hours__item--closed .hours__time {
    color: var(--primary-color);
    font-weight: 600;
}

.hours__info {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.hours__info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hours__info-list {
    list-style: none;
}

.hours__info-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.hours__info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__item {
    display: flex;
    gap: 20px;
}

.contact__icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact__details {
    flex: 1;
}

.contact__label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact__text {
    color: var(--text-light);
    line-height: 1.6;
}

.contact__link {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact__link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

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

.footer__title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.footer__subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.footer__text {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer__link {
    color: var(--primary-color);
    transition: var(--transition-fast);
    display: inline-block;
    margin-bottom: 8px;
}

.footer__link:hover {
    color: var(--secondary-color);
}

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

.footer__copyright {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

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

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--bg-white);
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition-fast);
}

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

.modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal__image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

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

.modal__nav--prev {
    left: -70px;
}

.modal__nav--next {
    right: -70px;
}

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

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1023px) {
    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

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

    .about__highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews__summary {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

@media screen and (max-width: 767px) {
    .nav__toggle {
        display: block;
    }

    .nav__list {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-white);
        padding: 30px;
        box-shadow: var(--shadow-md);
        transition: var(--transition-normal);
        gap: 20px;
    }

    .nav__list.active {
        left: 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1.125rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section {
        padding: 60px 0;
    }

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

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

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

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

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

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

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

    .modal__nav--prev {
        left: 10px;
    }

    .modal__nav--next {
        right: 10px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 1.5rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}