/* CSS Variables */
:root {
    --color-primary: #d4a574;
    --color-primary-dark: #b08968;
    --color-secondary: #2c3e50;
    --color-accent: #e74c3c;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-border: #e0e0e0;
    --color-success: #27ae60;
    --color-warning: #f39c12;
    --color-star: #ffc107;

    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 36px rgba(0,0,0,0.2);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    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;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

.navbar__subtitle {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-style: italic;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
}

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

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

.navbar__link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.navbar__link:hover {
    color: var(--color-primary);
    background: rgba(212, 165, 116, 0.1);
}

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

.navbar__button:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    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__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.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.4) 100%);
}

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

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

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

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

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

.hero__price {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

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

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-success);
    animation: pulse 2s infinite;
}

.status-indicator.closed {
    background: var(--color-accent);
    animation: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn__icon {
    fill: currentColor;
}

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

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

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

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

/* Sections */
.section {
    padding: 5rem 0;
}

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

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

.section__title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

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

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

.about__text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.about__features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.info-card__title {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

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

.info-card__list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

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

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

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

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

.specialty-card__title {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.specialty-card__description {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight__icon {
    fill: var(--color-primary);
    flex-shrink: 0;
}

.highlight__content h4 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.highlight__content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.service-card__icon {
    fill: var(--color-primary);
    margin-bottom: 1.5rem;
}

.service-card__title {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.service-card__description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-card__features {
    list-style: none;
}

.service-card__features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
}

.service-card__features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Reviews Section */
.reviews__summary {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.reviews__rating {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

.reviews__stars {
    margin-top: 0.5rem;
}

.reviews__count {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-text-light);
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    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: 1rem;
}

.review-card__rating {
    display: flex;
}

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

.review-card__text {
    color: var(--color-text-light);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

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

.review-card__author {
    font-weight: 600;
    color: var(--color-secondary);
}

/* Stars */
.stars {
    display: inline-flex;
}

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

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

.star.half {
    position: relative;
}

.star.half:before {
    content: '★';
    position: absolute;
    color: var(--color-star);
    width: 50%;
    overflow: hidden;
}

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

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

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

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

.contact__details h3 {
    color: var(--color-secondary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact__details p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

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

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

.contact__phone {
    font-size: 1.25rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.hours-list {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--color-text);
}

.time {
    color: var(--color-primary);
}

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

.contact__map iframe {
    border-radius: var(--radius-lg);
}

/* Features Bar */
.features-bar {
    background: var(--color-secondary);
    color: white;
    padding: 3rem 0;
}

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

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

.features-bar__icon {
    fill: var(--color-primary);
    flex-shrink: 0;
}

.features-bar__content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.features-bar__content p {
    font-size: 0.875rem;
    opacity: 0.9;
}

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

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

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

.footer__subtitle {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer__text {
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    padding: 0.5rem 0;
}

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

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

.footer__address {
    font-style: normal;
    opacity: 0.9;
    line-height: 1.8;
}

.footer__address a {
    color: var(--color-primary);
}

.footer__hours {
    margin-top: 1rem;
    opacity: 0.9;
}

.footer__hours p {
    margin-bottom: 0.5rem;
}

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

/* 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%;
    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);
}

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

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

.back-to-top svg {
    fill: white;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .about__content,
    .contact__content {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .section__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .navbar__menu.active {
        left: 0;
    }

    .navbar__cta {
        margin-top: 1rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

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

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

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

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

    .about__features {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .section__title {
        font-size: 1.5rem;
    }

    .hero__info {
        flex-direction: column;
        gap: 1rem;
    }

    .features-bar__grid {
        grid-template-columns: 1fr;
    }

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