/* CSS Variables */
:root {
    --primary-color: #c8102e;
    --secondary-color: #d4a574;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #6c757d;
    --gray-light: #f8f9fa;
    --gray-dark: #343a40;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --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 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Georgia', 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

.section__subtitle {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Layout Components */
section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--gray-light);
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

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

.navbar__logo {
    display: flex;
    align-items: center;
}

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

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

.navbar__button {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.navbar__button:hover {
    background: #a00825;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.navbar__bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(135deg, #c8102e 0%, #d4a574 100%);
    opacity: 0.95;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__content {
    text-align: center;
    color: var(--light-color);
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero__title span {
    display: block;
    color: var(--secondary-color);
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.rating__stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1.5rem;
}

.star {
    color: var(--secondary-color);
}

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

.star.half {
    position: relative;
    color: var(--secondary-color);
    opacity: 0.5;
}

.rating__text {
    font-size: 1.125rem;
    opacity: 0.9;
}

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

.hero__button {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__button--primary {
    background: var(--light-color);
    color: var(--primary-color);
}

.hero__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero__button--secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.hero__button--secondary:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.button-icon {
    width: 20px;
    height: 20px;
}

/* About Section */
.about__content {
    display: grid;
    gap: 3rem;
}

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

.feature__card {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.feature__icon svg {
    stroke: var(--light-color);
    fill: var(--light-color);
}

.feature__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature__description {
    color: var(--gray-color);
    line-height: 1.8;
}

.about__info {
    max-width: 800px;
    margin: 0 auto;
}

.about__text {
    font-size: 1.125rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.specialty__card {
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

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

.specialty__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

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

.specialty__badge {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.specialty__description {
    color: var(--gray-color);
    line-height: 1.8;
}

/* Features Grid Section */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature__item {
    text-align: center;
}

.feature__icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 1rem;
}

.feature__svg {
    fill: var(--light-color);
}

.feature__item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature__item p {
    color: var(--gray-color);
}

/* Hours Section */
.hours__content {
    max-width: 800px;
    margin: 0 auto;
}

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

.hours__card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.hours__card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
}

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

.day__name {
    font-weight: 600;
    font-size: 1.125rem;
}

.day__time {
    font-weight: 500;
    color: var(--success-color);
}

.day__time.closed {
    color: var(--danger-color);
}

.hours__card.highlight .day__time {
    color: var(--light-color);
}

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

.info__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gray-light);
    border-radius: 20px;
    font-weight: 500;
}

.badge__icon {
    font-size: 1.25rem;
}

/* Reviews Section */
.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.summary__rating {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.summary__score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.summary__stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.summary__count {
    color: var(--gray-color);
}

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

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

.dist__label {
    text-align: right;
    font-weight: 500;
}

.dist__bar {
    height: 20px;
    background: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
}

.dist__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 1s ease-out;
}

.dist__count {
    color: var(--gray-color);
}

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

.highlight__tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-weight: 500;
    color: var(--primary-color);
}

.tag__icon {
    font-size: 1.25rem;
}

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

.review__card {
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

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

.review__stars {
    display: flex;
    gap: 0.125rem;
    color: var(--secondary-color);
}

.review__source {
    font-size: 0.875rem;
    color: var(--gray-color);
    font-weight: 500;
}

.review__text {
    color: var(--gray-dark);
    line-height: 1.8;
    font-style: italic;
}

/* Contact Section */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.info__item {
    display: flex;
    gap: 1rem;
}

.info__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info__icon svg {
    fill: var(--light-color);
}

.info__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.info__content p {
    color: var(--gray-color);
    line-height: 1.8;
}

.info__content a {
    color: var(--primary-color);
    font-weight: 500;
}

.info__content a:hover {
    text-decoration: underline;
}

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

.map__container {
    width: 100%;
    height: 400px;
    position: relative;
}

.map__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map__content {
    text-align: center;
    color: var(--light-color);
}

.map__content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map__content p {
    margin-bottom: 1.5rem;
}

.map__button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

.contact__cta {
    text-align: center;
    padding: 3rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
}

.contact__cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact__cta p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: var(--border-radius);
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition);
}

.cta__button:hover {
    background: #a00825;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

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

.footer__brand {
    max-width: 300px;
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
}

.footer__links h4,
.footer__info h4,
.footer__hours h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

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

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

.footer__info p,
.footer__hours p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.footer__info a {
    color: var(--secondary-color);
    transition: var(--transition);
}

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

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

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
}

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

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

.scroll-top:hover {
    background: #a00825;
    transform: translateY(-5px);
}

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

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

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

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

.slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__title span {
        font-size: 3.5rem;
    }
}

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

    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--light-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .navbar__menu.active {
        left: 0;
    }

    .navbar__item {
        margin: 1rem 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__title span {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

    .section__title {
        font-size: 2rem;
    }

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

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

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

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

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

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

    section {
        padding: 3rem 0;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__title span {
        font-size: 2rem;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .section__title {
        font-size: 1.75rem;
    }

    .section__subtitle {
        font-size: 1rem;
    }

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

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