/* 1. CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #2c2c2c;
    --accent-color: #ff6b6b;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --background-light: #ffffff;
    --background-gray: #f8f8f8;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --danger-color: #FF5722;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --transition-default: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

/* 3. Base Styles */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-default);
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

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

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

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

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

.btn--large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--background-gray);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* 4. Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-default);
}

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

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

.nav__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav__badge {
    display: none;
    padding: 4px 12px;
    background: var(--success-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

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

.nav__cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.nav__cta:hover {
    background: #c49560;
    color: white;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.nav__toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-default);
}

/* 5. Hero Section */
.hero {
    margin-top: 70px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide--active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero__text {
    max-width: 600px;
    color: white;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

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

.hero__features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-default);
    z-index: 3;
}

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

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

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

/* 6. Features Section */
.features {
    padding: 4rem 0;
    background: var(--background-gray);
}

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

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

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

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

.feature-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* 7. About Section */
.about {
    padding: 4rem 0;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about__text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about__text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about__highlights {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight__icon {
    color: var(--success-color);
    font-size: 1.2rem;
}

.price-info {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: var(--border-radius);
}

.price-info__badge {
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.85rem;
}

.special-offer {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.special-offer__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.special-offer__text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.special-offer__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.special-offer__images img {
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-default);
}

.special-offer__images img:hover {
    transform: scale(1.05);
}

/* 8. Gallery Section */
.gallery {
    padding: 4rem 0;
    background: var(--background-gray);
}

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

.gallery__tab {
    padding: 10px 24px;
    border-radius: 25px;
    background: white;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-default);
}

.gallery__tab--active,
.gallery__tab:hover {
    background: var(--primary-color);
    color: white;
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-default);
}

.gallery__item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery__item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery__lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.gallery__lightbox--active {
    display: flex;
}

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

.gallery__close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-default);
}

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

/* 9. Reviews Section */
.reviews {
    padding: 4rem 0;
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--background-gray);
    border-radius: var(--border-radius);
}

.reviews__rating {
    text-align: center;
}

.reviews__score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.reviews__stars {
    margin: 0.5rem 0;
}

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

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

.star--half {
    position: relative;
}

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

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

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

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

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

.distribution__fill {
    height: 100%;
    background: var(--warning-color);
    transition: width 1s ease;
}

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

.reviews__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 350px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

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

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

.review-card__rating .star {
    font-size: 1rem;
}

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

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

.review-card__translation {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

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

.review-card__ratings {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

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

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

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

.reviews__tags {
    text-align: center;
}

.reviews__tags-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.tag {
    padding: 8px 16px;
    background: var(--background-gray);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-default);
}

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

/* 10. Hours Section */
.hours {
    padding: 4rem 0;
    background: var(--background-gray);
}

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

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

.hours__title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.hours__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hours__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition-default);
}

.hours__item:hover {
    background: var(--background-gray);
}

.hours__item--today {
    background: var(--success-color);
    color: white;
}

.hours__day {
    font-weight: 500;
}

.hours__time {
    color: inherit;
    opacity: 0.9;
}

.hours__badge {
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hours__status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background-gray);
    border-radius: var(--border-radius);
}

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

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

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

.day-selector {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.popular-times__chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 150px;
    margin-bottom: 1rem;
}

.time-bar {
    flex: 1;
    background: var(--success-color);
    border-radius: 4px 4px 0 0;
    transition: var(--transition-default);
    position: relative;
}

.time-bar:hover {
    opacity: 0.8;
}

.time-bar__label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-light);
}

.popular-times__legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

/* 11. Contact Section */
.contact {
    padding: 4rem 0;
}

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

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

.contact__title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

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

.contact__item strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

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

.contact__services {
    background: var(--background-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.service-icon {
    color: var(--success-color);
}

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

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

/* 12. Similar Section */
.similar {
    padding: 4rem 0;
    background: var(--background-gray);
}

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

.similar-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-default);
    cursor: pointer;
}

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

.similar-card__name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.similar-card__rating {
    display: flex;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 13. Footer */
.footer {
    background: var(--secondary-color);
    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;
    margin-bottom: 0.5rem;
}

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

.footer__rating {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

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

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

.footer__links a {
    color: rgba(255,255,255,0.8);
}

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

.footer__info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

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

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

.footer__badges .badge {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

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

.footer__source {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* 14. Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-default);
    z-index: 999;
}

.scroll-top--visible {
    display: flex;
}

.scroll-top:hover {
    background: #c49560;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* 15. 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(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 16. Media Queries */
@media screen and (max-width: 1023px) {
    .nav__badge {
        display: inline-block;
    }

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

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

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

@media screen and (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }

    .nav__menu--active {
        left: 0;
    }

    .nav__badge {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
    }

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

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

    .special-offer__images {
        grid-template-columns: 1fr;
    }

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

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

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

    .contact__cta {
        flex-direction: column;
    }

    .reviews__carousel {
        padding: 0 40px;
    }
}

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

    .hero {
        height: 500px;
    }

    .hero__features {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews__tags-list {
        justify-content: flex-start;
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero__nav,
    .reviews__nav,
    .scroll-top,
    .gallery__lightbox {
        display: none !important;
    }

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

    body {
        font-size: 12pt;
    }

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