/* CSS Variables */
:root {
    --color-primary: #8b7355;
    --color-primary-dark: #6d5a44;
    --color-primary-light: #a89276;
    --color-secondary: #2c2c2c;
    --color-accent: #d4a574;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f6f3;
    --color-border: #e5e2dd;
    --color-success: #4caf50;
    --color-warning: #ff9800;
    --color-error: #f44336;

    --font-primary: 'Georgia', serif;
    --font-secondary: 'Helvetica Neue', 'Arial', sans-serif;

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

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s 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-secondary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    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;
    color: var(--color-text-light);
}

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;
}

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

.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--color-bg-alt);
}

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

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

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

.section__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--color-bg);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

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

.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
    margin: 6px 0;
    transition: var(--transition);
}

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

.navbar__link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.hero__slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s 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(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.hero__stars {
    margin: 0.5rem 0;
}

.star {
    color: rgba(255,255,255,0.3);
    font-size: 1.2rem;
}

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

.hero__reviews,
.hero__price {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.hero__indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero__indicator.active {
    background: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

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

.feature__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

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

.feature__text {
    font-size: 0.9rem;
}

.about__stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specialties Section */
.specialties__tags {
    margin-bottom: 3rem;
}

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

.tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.tag:hover {
    transform: scale(1.1);
    background: var(--color-primary);
}

.tag[data-count="20"] { font-size: 1.2rem; }
.tag[data-count="15"] { font-size: 1.1rem; }
.tag[data-count="14"] { font-size: 1rem; }

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

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

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

.category-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

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

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

.service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.service-item__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.service-item__title {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-item__text {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Gallery Section */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    grid-auto-flow: dense;
}

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

.gallery__item:nth-child(3n+1) {
    grid-column: span 2;
}

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

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

/* Reviews Section */
.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.reviews__overall {
    text-align: center;
    padding: 2rem;
    border-right: 1px solid var(--color-border);
}

.reviews__rating {
    font-size: 4rem;
    font-weight: bold;
    color: var(--color-accent);
    display: block;
}

.reviews__stars {
    margin: 1rem 0;
}

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

.reviews__distribution {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

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

.rating-bar__label {
    min-width: 40px;
    font-size: 0.9rem;
}

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

.rating-bar__fill {
    height: 100%;
    background: var(--color-accent);
    transition: var(--transition);
}

.rating-bar__count {
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

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

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

.review-card:hover {
    transform: translateY(-3px);
    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;
    gap: 2px;
}

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

.review-card__text {
    margin: 1rem 0;
    line-height: 1.6;
}

.review-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

.review-card__ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rating-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

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

.hours__schedule {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hours__day {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.hours__day:hover:not(.closed) {
    background: var(--color-bg-alt);
}

.hours__day.current {
    background: var(--color-accent);
    color: white;
}

.hours__day.closed {
    opacity: 0.5;
}

.hours__day-name {
    font-weight: 500;
}

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

.hours__day.current .hours__time {
    color: white;
}

.hours__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

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

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.hours__busy {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hours__busy-title {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.busy-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 100px;
}

.busy-bar {
    flex: 1;
    background: var(--color-accent);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.busy-bar:hover {
    background: var(--color-primary);
}

.busy-bar.current {
    background: var(--color-primary-dark);
}

.busy-bar__tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.busy-bar:hover .busy-bar__tooltip {
    opacity: 1;
    bottom: calc(100% + 5px);
}

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

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact__label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.contact__value {
    font-size: 1rem;
    line-height: 1.6;
}

.contact__link {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-top: 0.5rem;
}

.contact__link:hover {
    color: var(--color-primary-dark);
    transform: translateX(5px);
}

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

.contact__nearby {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact__nearby-title {
    margin-bottom: 1rem;
}

.nearby-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nearby-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nearby-item:hover {
    background: var(--color-border);
}

.nearby-item__rating {
    color: var(--color-accent);
    font-weight: 500;
}

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

.faq__item {
    background: white;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

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

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

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

.footer__brand {
    max-width: 300px;
}

.footer__title {
    color: white;
    margin-bottom: 1rem;
}

.footer__description {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer__heading {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__text {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.8;
}

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

.footer__copyright,
.footer__update {
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0.5rem 0;
}

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

.lightbox.active {
    display: flex;
}

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

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

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

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    transform: translateY(-50%) scale(1.2);
}

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

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

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

.scroll-top:hover {
    background: var(--color-primary);
    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(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero__title {
        font-size: 3rem;
    }

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

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

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

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

    .section {
        padding: 60px 0;
    }

    .navbar__toggle {
        display: block;
    }

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

    .navbar__menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
    }

    .navbar__menu.active {
        right: 0;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

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

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

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

    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

    .gallery__item:nth-child(3n+1) {
        grid-column: span 1;
    }

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

    .reviews__overall {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

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

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

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

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

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

    .section__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero__indicators,
    .scroll-top,
    .lightbox {
        display: none;
    }

    .hero {
        height: auto;
        margin-top: 0;
    }

    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }
}