/* CSS Variables */
:root {
    --primary-color: #ff4444;
    --primary-dark: #cc0000;
    --secondary-color: #ffcc00;
    --accent-color: #ff6b35;
    --bg-color: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-light: #f8f9fa;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --text-white: #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);
    --transition: all 0.3s ease;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

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

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1140px;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    z-index: 1001;
}

.navbar__toggle span {
    display: block;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

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

.navbar__link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

.navbar__link--cta {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 25px;
}

.navbar__link--cta::after {
    display: none;
}

.navbar__link--cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-color);
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .navbar__menu.active {
        transform: translateX(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-white);
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero__features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
}

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

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.btn--primary:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    opacity: 0.7;
    z-index: 3;
}

.hero__scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.hero__scroll-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.about__header {
    margin-bottom: 30px;
}

.about__subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-color);
    margin-bottom: 20px;
}

.about__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about__highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about__highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.about__highlight-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

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

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

.about__stat {
    text-align: center;
    padding: 30px;
    background: var(--bg-color);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.about__stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

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

@media (min-width: 768px) {
    .about__container {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-color);
}

.services__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

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

.services__card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

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

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

.services__card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery__header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.gallery__subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.gallery__filter {
    padding: 10px 25px;
    border-radius: 25px;
    background: var(--bg-color);
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

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

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

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

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

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

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

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

.gallery__view-btn {
    background: var(--bg-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popular Items Section */
.popular {
    padding: 100px 0;
    background: var(--bg-color);
}

.popular__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

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

.popular__item {
    position: relative;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

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

.popular__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.popular__name {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-right: 100px;
}

.popular__desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.popular__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.popular__order-btn {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.popular__order-btn:hover {
    background: var(--primary-dark);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--bg-light);
}

.reviews__header {
    margin-bottom: 60px;
}

.reviews__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 40px;
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.reviews__rating {
    text-align: center;
}

.reviews__rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.reviews__stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 1.5rem;
    margin: 10px 0;
}

.reviews__star--filled {
    color: var(--secondary-color);
}

.reviews__star {
    color: var(--border-color);
}

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

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

.reviews__bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews__bar-label {
    width: 40px;
    font-weight: 600;
}

.reviews__bar-track {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.reviews__bar-fill {
    height: 100%;
    background: var(--secondary-color);
    transition: width 1s ease;
}

.reviews__bar-count {
    width: 50px;
    text-align: right;
    color: var(--text-light);
}

.reviews__carousel {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.reviews__card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.reviews__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

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

.reviews__text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.reviews__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.reviews__detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.reviews__detail-label {
    font-weight: 600;
    color: var(--text-color);
}

.reviews__detail-rating {
    color: var(--secondary-color);
}

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

.reviews__badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.reviews__recommended {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

.reviews__controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.reviews__control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews__control:hover {
    background: var(--primary-dark);
}

@media (min-width: 768px) {
    .reviews__summary {
        grid-template-columns: 300px 1fr;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-color);
}

.features__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

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

.features__item {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.features__item:hover {
    transform: translateY(-10px);
}

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

.features__name {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

/* Hours Section */
.hours {
    padding: 100px 0;
    background: var(--bg-light);
}

.hours__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.hours__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.hours__subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.hours__schedule {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.hours__day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.hours__day--highlight {
    background: linear-gradient(90deg, transparent, var(--bg-light), transparent);
    padding: 15px 20px;
    margin: 0 -20px;
    border-bottom-color: transparent;
}

.hours__day-name {
    font-weight: 600;
    color: var(--text-color);
}

.hours__day-time {
    color: var(--text-light);
    font-weight: 500;
}

.hours__day--highlight .hours__day-time {
    color: var(--primary-color);
    font-weight: 700;
}

.hours__note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--text-light);
}

.hours__peak {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.hours__peak-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hours__peak-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.hours__peak-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hours__peak-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.hours__peak-label {
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

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

@media (min-width: 768px) {
    .hours__container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Order Section */
.order {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.order__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.order__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.order__subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.order__btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-color);
    color: var(--primary-color);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--transition);
}

.order__btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.order__info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.order__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact__detail {
    display: flex;
    gap: 20px;
}

.contact__detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__detail-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

.contact__detail-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact__detail-text a:hover {
    text-decoration: underline;
}

.contact__directions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.contact__directions:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.contact__map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
    .contact__container {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer__logo-icon {
    font-size: 2rem;
}

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

.footer__rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer__stars {
    color: var(--secondary-color);
}

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

.footer__links-title,
.footer__contact-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer__links-list,
.footer__contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer__links-list a:hover {
    color: var(--text-white);
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright,
.footer__powered {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.lightbox.active {
    display: flex;
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--text-white);
    z-index: 10001;
}

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

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox__nav--prev {
    left: 30px;
}

.lightbox__nav--next {
    right: 30px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease;
}

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

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Responsive Media Queries */
@media (max-width: 767px) {
    .hero {
        min-height: 500px;
    }

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

    .hero__buttons {
        flex-direction: column;
    }

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

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

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

    .lightbox__nav {
        width: 50px;
        height: 50px;
    }

    .lightbox__nav--prev {
        left: 15px;
    }

    .lightbox__nav--next {
        right: 15px;
    }
}