/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #c92127;
    --primary-dark: #a01a1f;
    --primary-light: #e63946;
    --secondary-color: #f77f00;
    --accent-color: #fcbf49;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #2b2d42;
    --bg-darker: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --max-width: 1140px;
    --header-height: 80px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    text-align: center;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

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

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

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

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--text-light);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    flex-shrink: 0;
}

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

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

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    color: var(--text-dark);
}

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

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.nav__toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

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

.hero__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide.active {
    opacity: 1;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(201,33,39,0.4) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 24px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stars {
    display: flex;
    gap: 4px;
}

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

.star.filled {
    color: #fbbf24;
}

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

.rating-text {
    font-size: 1.125rem;
    font-weight: 500;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.badge--halal {
    background: rgba(34, 197, 94, 0.9);
}

.badge--price {
    background: rgba(59, 130, 246, 0.9);
}

.badge--service {
    background: rgba(249, 115, 22, 0.9);
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 2;
}

.hero__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition-normal);
}

.hero__arrow:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

/* ===== ABOUT SECTION ===== */
.about__content {
    display: grid;
    gap: 60px;
}

.about__text {
    max-width: 800px;
    margin: 0 auto;
}

.about__description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

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

.feature {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
}

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

.feature__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature__text {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.service-card {
    background: var(--bg-darker);
    padding: 40px 28px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.service-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-card__text {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.amenities {
    background: rgba(255,255,255,0.05);
    padding: 48px;
    border-radius: var(--border-radius-lg);
}

.amenities__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.amenity {
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    font-size: 0.938rem;
    transition: var(--transition-fast);
}

.amenity:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(4px);
}

/* ===== GALLERY SECTION ===== */
.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery__filter {
    padding: 10px 28px;
    border-radius: 50px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.gallery__filter:hover,
.gallery__filter.active {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery__item.hidden {
    display: none;
}

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

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201,33,39,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

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

.gallery__btn {
    padding: 12px 32px;
    background: var(--text-light);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

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

/* ===== REVIEWS SECTION ===== */
.reviews__summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
    padding: 48px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
}

.reviews__score {
    text-align: center;
}

.reviews__score-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.reviews__stars {
    margin-bottom: 12px;
}

.reviews__count {
    font-size: 1rem;
    color: var(--text-gray);
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-bar__label {
    font-size: 0.875rem;
    font-weight: 600;
    width: 40px;
    flex-shrink: 0;
}

.review-bar__track {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.review-bar__fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.6s ease;
}

.review-bar__count {
    font-size: 0.875rem;
    color: var(--text-gray);
    width: 30px;
    text-align: right;
    flex-shrink: 0;
}

.reviews__highlights {
    margin-bottom: 48px;
}

.reviews__highlights-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reviews__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    padding: 8px 20px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.reviews__slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.review-card {
    background: var(--bg-light);
    padding: 28px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

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

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

.review-card__stars .star {
    font-size: 1.125rem;
}

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

.review-card__text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.detail-badge {
    padding: 4px 12px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.review-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.review-card__meta span:not(:last-child)::after {
    content: '•';
    margin-left: 12px;
}

.reviews__navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.reviews__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

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

/* ===== HOURS SECTION ===== */
.hours__wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.hours__list {
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.hours__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.hours__day {
    font-weight: 600;
    font-size: 1.125rem;
}

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

.hours__time--closed {
    color: #ef4444;
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact__content {
    display: grid;
    gap: 48px;
}

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

.contact__card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

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

.contact__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact__card-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact__card-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact__phone {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
}

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

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

.contact__note {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.contact__link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

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

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

.popular-searches {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.popular-searches__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: var(--primary-color);
}

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

.popular-search {
    background: var(--bg-light);
    padding: 20px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.popular-search:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.popular-search__name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.popular-search__rating {
    color: var(--text-gray);
    font-size: 0.938rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    color: var(--text-light);
    padding: 60px 0 24px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer__text {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.938rem;
}

.footer__subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__hours p,
.footer__contact p {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
}

.footer__contact a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

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

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

/* ===== 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;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-light);
    background: rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.lightbox__close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--border-radius);
}

.lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

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

.lightbox__arrow--prev {
    left: 40px;
}

.lightbox__arrow--next {
    right: 40px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

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

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

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

.fade-in {
    animation: fadeInUp 0.6s ease;
}

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

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        height: 80vh;
    }

    .gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--text-light);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-md);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav__toggle {
        display: flex;
    }

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

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

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

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

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

    .amenities {
        padding: 32px 20px;
    }

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

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

    .reviews__summary {
        grid-template-columns: 1fr;
        padding: 32px 20px;
        gap: 32px;
    }

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

    .hours__item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px;
    }

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

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

    .footer__rating {
        justify-content: center;
    }

    .lightbox__close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox__arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

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

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

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .popular-searches__grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero__controls {
        bottom: 20px;
    }

    .hero__arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .reviews__arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}