/* CSS Variables */
:root {
    --color-primary: #d4a574;
    --color-primary-dark: #b8935f;
    --color-secondary: #2c3e50;
    --color-accent: #e74c3c;
    --color-success: #27ae60;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-border: #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 16px rgba(0,0,0,0.15);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
}

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

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

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

/* Base Styles */
.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;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--color-primary-dark);
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

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

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

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

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

.btn--block {
    display: block;
    width: 100%;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

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

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

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

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

.navbar__title {
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin: 0;
}

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

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

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

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

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

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

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

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

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: subtle-zoom 20s ease-in-out infinite;
}

@keyframes subtle-zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(212, 165, 116, 0.6) 100%);
}

.hero__content {
    text-align: center;
    z-index: 1;
    color: white;
    animation: fadeInUp 1s ease;
}

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

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero__badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    animation: fadeIn 1.5s ease 0.5s backwards;
}

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

.hero__badge-rating {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.hero__badge-price {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.hero__badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.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 white;
    border-radius: 25px;
    position: relative;
}

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

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

@keyframes scroll {
    0% { opacity: 0; top: 10px; }
    40% { opacity: 1; }
    80% { opacity: 0; top: 25px; }
    100% { opacity: 0; top: 25px; }
}

/* About Section */
.about {
    background-color: var(--color-background-alt);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about__text h3 {
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

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

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

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

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

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

.specialty-card__title {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

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

/* Features Section */
.features {
    background-color: var(--color-background-alt);
}

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

.feature-item {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

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

.feature-item__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-item__title {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

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

/* Gallery Section */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery__item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    height: 250px;
}

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

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

.gallery__item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    transform: translateY(0);
}

.gallery__item-title {
    color: white;
    font-weight: 600;
}

.gallery__load-more {
    display: block;
    margin: 0 auto;
}

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

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews__rating {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.reviews__rating-value {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--color-primary);
    display: block;
    margin-bottom: 10px;
}

.reviews__stars {
    margin-bottom: 10px;
}

.star {
    color: #ddd;
    font-size: 1.5rem;
}

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

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

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

.distribution__row {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.distribution__bar {
    background: #f0f0f0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

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

.reviews__carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.reviews__track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

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

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

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

.review-card__rating {
    display: flex;
    gap: 2px;
}

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

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

.review-card__translated {
    color: var(--color-text-light);
    font-style: italic;
    font-size: 0.875rem;
    padding-top: 10px;
    border-top: 1px solid var(--color-border);
}

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

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

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

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

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

.reviews__tags {
    text-align: center;
}

.reviews__tags-title {
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.reviews__tags-list {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-tag {
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

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

/* People Also Search Section */
.also-search__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.also-search__item {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.also-search__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.also-search__name {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.also-search__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color-text);
}

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

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

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.contact__item-title {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.contact__item-content {
    color: var(--color-text);
    font-style: normal;
    line-height: 1.8;
}

.contact__services,
.contact__features {
    list-style: none;
    color: var(--color-text);
    line-height: 2;
}

.contact__price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}

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

.map__container {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.map__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.map__link:hover .map__overlay {
    opacity: 1;
}

.map__text {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--color-primary);
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

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

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

.footer__title {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.footer__description {
    opacity: 0.9;
}

.footer__links-title,
.footer__info-title {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 1.125rem;
}

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

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

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

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

.footer__rating {
    margin-top: 15px;
    opacity: 0.9;
}

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

.footer__copyright {
    opacity: 0.8;
}

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

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__close:hover {
    transform: scale(1.2);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.lightbox__nav--prev {
    left: 30px;
}

.lightbox__nav--next {
    right: 30px;
}

/* Utilities */
.fade-in {
    animation: fadeIn 1s ease;
}

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

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1023px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero__title {
        font-size: 2.5rem;
    }

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

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

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

@media (max-width: 767px) {
    .navbar__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }

    .navbar__menu.active {
        display: flex;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

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

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

    section {
        padding: 60px 0;
    }

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

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

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

    .also-search__grid {
        grid-template-columns: 1fr;
    }

    .reviews__track {
        flex-direction: column;
    }

    .review-card {
        min-width: 100%;
    }

    .reviews__nav {
        display: none;
    }
}