/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    /* Colors - Portuguese Casual Restaurant Theme */
    --primary-color: #d35400;
    --primary-dark: #a04000;
    --primary-light: #e67e22;

    --secondary-color: #27ae60;
    --secondary-dark: #1e8449;

    --accent-color: #f39c12;
    --accent-dark: #d68910;

    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --text-light: #ecf0f1;

    --bg-light: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-section: #f8f9fa;
    --bg-card: #ffffff;

    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max: 1140px;
}

/* ===================================
   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(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ===================================
   UTILITIES
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

.section--dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: inherit;
}

.section--dark .section-title {
    color: var(--text-light);
}

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

.section--dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: var(--spacing-sm) auto;
    border-radius: 2px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.navbar__menu {
    display: flex;
    gap: var(--spacing-md);
}

.navbar__link {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: var(--primary-color);
    transition: transform var(--transition-fast);
}

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

.navbar__link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-xs);
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    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;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.7)
    );
}

.hero__content {
    position: relative;
    text-align: center;
    color: var(--text-light);
    z-index: 1;
    padding: var(--spacing-md);
}

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

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.star.half {
    background: linear-gradient(90deg, var(--accent-color) 50%, #ccc 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-size: 1.1rem;
}

.hero__badges {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.badge {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

.badge--tertiary {
    background-color: var(--accent-color);
    color: white;
}

.hero__cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

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

.btn--map {
    margin-top: var(--spacing-sm);
    background-color: var(--primary-color);
    color: white;
}

.btn__icon {
    font-size: 1.2rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.feature__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

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

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

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

.about__image:hover img {
    transform: scale(1.05);
}

/* ===================================
   SPECIALTIES SECTION
   =================================== */
.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.specialty-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.specialty-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.specialty-card__icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.specialty-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
}

.specialty-card__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.specialty-card__tags {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    flex-wrap: wrap;
}

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

/* ===================================
   SERVICES SECTION
   =================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.service-item {
    background-color: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.service-item__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.service-item__title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.service-item__description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-sm);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 16/9;
}

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

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

.gallery__item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery__item:hover::after {
    opacity: 1;
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews__stats {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    background-color: var(--bg-section);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.reviews__overall {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reviews__score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.reviews__stars {
    margin: var(--spacing-sm) 0;
}

.reviews__count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.review-bar {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.review-bar__label {
    font-size: 0.9rem;
    min-width: 30px;
    color: var(--text-secondary);
}

.review-bar__container {
    flex: 1;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.review-bar__fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width var(--transition-slow);
}

.review-bar__count {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 30px;
    text-align: right;
}

.reviews__highlights {
    margin-bottom: var(--spacing-md);
}

.reviews__highlights-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.reviews__tags {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.review-tag {
    background-color: var(--bg-section);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    font-size: 0.9rem;
}

.reviews__slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.review-card {
    background-color: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

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

.review-card__rating .star.empty {
    color: #ddd;
}

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

.review-card__text {
    margin: var(--spacing-sm) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.review-card__context {
    margin: var(--spacing-sm) 0;
    padding: var(--spacing-sm);
    background-color: var(--bg-section);
    border-radius: 8px;
}

.review-context__item {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.review-card__ratings {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin: var(--spacing-sm) 0;
}

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

.review-card__details {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

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

.review-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
}

.reviews__controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.reviews__control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

/* ===================================
   HOURS SECTION
   =================================== */
.hours__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.hours__table {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.hours__row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hours__row--closed {
    opacity: 0.5;
}

.hours__day {
    font-weight: 600;
}

.hours__time {
    color: var(--accent-color);
}

.hours__row--closed .hours__time {
    color: rgba(255, 255, 255, 0.5);
}

.hours__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
}

.info-box__title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--accent-color);
}

.info-box__text {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact__item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--bg-section);
    border-radius: 12px;
}

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

.contact__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.contact__text {
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

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

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

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

.map-container {
    flex: 1;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===================================
   RELATED SECTION
   =================================== */
.related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.related__card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
}

.related__card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.related__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.related__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.related__stars {
    color: var(--accent-color);
}

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

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: #0a0a0a;
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer__logo {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

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

.footer__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--accent-color);
}

.footer__contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

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

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

.lightbox.active {
    display: flex;
}

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

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__close {
    top: 20px;
    right: 20px;
}

.lightbox__prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

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

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

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1023px) {
    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

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

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

/* Mobile */
@media (max-width: 767px) {
    .navbar__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-light);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-normal);
    }

    .navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .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: 1.2rem;
    }

    .section {
        padding: var(--spacing-md) 0;
    }

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

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

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

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

    .lightbox__close,
    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .navbar__logo-text {
        font-size: 0.9rem;
    }

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

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

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