/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-color: #333333;
    --text-light: #666666;
    --background: #ffffff;
    --background-alt: #f8f8f8;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --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);
    --border-radius: 8px;
    --max-width: 1140px;
}

/* Reset/Normalize */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:hover {
    opacity: 0.8;
}

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

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

.section {
    padding: 80px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 20px;
}

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

.nav {
    padding: 15px 0;
}

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

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

.nav__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.nav__subtitle {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

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

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

.nav__toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 30px;
    justify-content: center;
    gap: 4px;
}

.nav__toggle span {
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(212, 165, 116, 0.4) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

.hero__badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.badge__icon {
    fill: var(--primary-color);
}

.hero__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

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

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

.btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.btn__icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

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

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

.about__features {
    display: grid;
    gap: 30px;
}

.feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature__icon {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.feature__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 5px;
}

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

/* Specialties Section */
.specialties {
    background: var(--background-alt);
}

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

.specialty-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: default;
}

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

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

.specialty-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

/* Services Section */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-item {
    text-align: center;
}

.service-item__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    padding: 15px;
    background: var(--background-alt);
    border-radius: 50%;
    fill: var(--primary-color);
    transition: var(--transition);
}

.service-item:hover .service-item__icon {
    background: var(--primary-color);
    fill: white;
    transform: rotate(360deg);
}

.service-item__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

/* Reviews Section */
.reviews {
    background: var(--background-alt);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.reviews__rating {
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding-right: 30px;
}

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

.reviews__stars {
    font-size: 1.5rem;
    color: #ddd;
    margin: 10px 0;
}

.star--filled {
    color: var(--primary-color);
}

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

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

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

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

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

.distribution__fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.5s ease;
}

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

.reviews__carousel {
    position: relative;
    overflow: hidden;
}

.reviews__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
}

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

.review-card__rating {
    color: var(--primary-color);
}

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

.review-card__text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.review-card__badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--background-alt);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.review-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

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

.reviews__prev,
.reviews__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    z-index: 2;
}

.reviews__prev:hover,
.reviews__next:hover {
    background: var(--primary-color);
    color: white;
}

.reviews__prev {
    left: -20px;
}

.reviews__next {
    right: -20px;
}

/* Hours Section */
.hours__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.hours__card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.hours__table {
    width: 100%;
    border-collapse: collapse;
}

.hours__row {
    border-bottom: 1px solid var(--border-color);
}

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

.hours__day {
    padding: 15px 0;
    font-weight: 500;
}

.hours__time {
    padding: 15px 0;
    text-align: right;
    color: var(--text-light);
}

.hours__row--closed .hours__time {
    color: var(--error-color);
    font-weight: 500;
}

.hours__status {
    margin-top: 30px;
    padding: 15px;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours__status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hours__status--open .hours__status-indicator {
    background: var(--success-color);
}

.hours__status--closed .hours__status-indicator {
    background: var(--error-color);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

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

.hours__subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hours__popular,
.hours__services {
    list-style: none;
    padding-left: 0;
}

.hours__popular li,
.hours__services li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.hours__popular li::before,
.hours__services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: var(--background-alt);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

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

.contact__icon {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.contact__label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact__value {
    color: var(--text-light);
    line-height: 1.6;
    font-style: normal;
}

.contact__buttons {
    margin-top: 20px;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.map-container__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.map-container:hover .map-container__overlay {
    opacity: 1;
}

.map-container__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.map-container__link:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.map-container__icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Similar Places Section */
.similar__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.similar__card {
    padding: 25px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

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

.similar__name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.similar__rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.similar__stars {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

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

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

.footer__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__text {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}

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

.footer__tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: white;
    opacity: 0.9;
    transition: var(--transition);
}

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

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

.footer__copyright {
    opacity: 0.7;
}

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

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

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Media Queries */
@media (max-width: 1023px) {
    .section {
        padding: 60px 0;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

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

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

    .reviews__rating {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 30px;
    }

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

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

    .reviews__prev,
    .reviews__next {
        display: none;
    }
}

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

    .nav__menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--background);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: right 0.3s;
        box-shadow: var(--shadow-lg);
    }

    .nav__menu.active {
        right: 0;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

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

    .section {
        padding: 40px 0;
    }

    .section__header {
        margin-bottom: 30px;
    }

    .section__title {
        font-size: 1.75rem;
    }

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

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

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

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

    .badge {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

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

    .review-card {
        padding: 20px;
    }
}