/* CSS Variables for Theme */
:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

@media (max-width: 1023px) {
    .container {
        max-width: 720px;
    }
}

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

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

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

.navigation__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navigation__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navigation__link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

.navigation__toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition-fast);
}

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

    .navigation__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition-fast);
    }

    .navigation__menu.active {
        left: 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    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(26, 26, 26, 0.8) 0%, rgba(212, 165, 116, 0.3) 100%);
}

.hero__content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero__badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero__button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-block;
}

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

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

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

.hero__button--secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero__scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    position: relative;
}

.hero__scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@media (max-width: 767px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    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: var(--primary-color);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.about__feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: var(--transition-fast);
}

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

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

.about__feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about__feature-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.specialties__item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

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

.specialties__item-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.specialties__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.specialties__item-content {
    padding: 1.5rem;
}

.specialties__item-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.specialties__item-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.specialties__price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.specialties__tag {
    background: rgba(212, 165, 116, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

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

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

.services__item {
    text-align: center;
    padding: 2rem 1rem;
}

.services__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services__item-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.services__item-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 250px;
}

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

.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%;
    object-fit: contain;
}

.gallery__close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery__nav--prev {
    left: 20px;
}

.gallery__nav--next {
    right: 20px;
}

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

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

.reviews__stars {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.star.filled {
    color: #ffc107;
}

.reviews__summary {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.reviews__track {
    display: flex;
    gap: 2rem;
    transition: var(--transition-medium);
}

.review__card {
    flex: 0 0 350px;
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

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

.review__rating {
    display: flex;
}

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

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

.review__translated {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.review__context {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review__tag {
    background: rgba(212, 165, 116, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.review__footer {
    display: flex;
    justify-content: flex-end;
}

.review__badge {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.reviews__nav:hover {
    background: #c19660;
}

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

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

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

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.reviews__bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews__label {
    min-width: 40px;
    color: var(--text-secondary);
}

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

.reviews__progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition-medium);
}

.reviews__count {
    min-width: 30px;
    text-align: right;
    color: var(--text-secondary);
}

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

.reviews__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reviews__highlight-tag {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .reviews__stats {
        grid-template-columns: 1fr;
    }

    .review__card {
        flex: 0 0 300px;
    }
}

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

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

.contact__item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact__icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact__label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.contact__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact__link:hover {
    text-decoration: underline;
}

.contact__hour-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

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

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

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

.contact__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact__button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact__button--primary {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.contact__button--primary:hover {
    background: #c19660;
    transform: translateY(-2px);
}

.contact__button--secondary {
    background: var(--bg-dark);
    color: white;
}

.contact__button--secondary:hover {
    background: #333;
}

.contact__button--tertiary {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.contact__button--tertiary:hover {
    background: var(--bg-secondary);
}

.contact__map {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__map {
        height: 300px;
    }
}

/* Similar Section */
.similar {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.similar__item {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.similar__item:hover {
    box-shadow: var(--shadow-md);
}

.similar__name {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.similar__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.similar__stars {
    color: #ffc107;
}

.similar__reviews {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

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

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.footer__category {
    background: rgba(212, 165, 116, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

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

.footer__links {
    list-style: none;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer__services {
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
}

.footer__service {
    margin-bottom: 0.5rem;
}

.footer__address {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer__phone {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.footer__hours {
    color: rgba(255, 255, 255, 0.7);
}

.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.5);
}

@media (max-width: 767px) {
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__categories {
        justify-content: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.active {
    opacity: 1;
    pointer-events: all;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Loading State */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navigation,
    .hero__buttons,
    .scroll-to-top,
    .gallery__lightbox {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: black;
    }

    a {
        text-decoration: underline;
    }
}