/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Color Palette - Fast Food Theme (Energetic & Inviting) */
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8456;
    --secondary-color: #f7931e;
    --accent-color: #ffd700;

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

    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #6c757d;
    --text-muted: #999999;

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

    /* Typography */
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;

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

    /* Container */
    --container-width: 1140px;
    --section-padding: 5rem 2rem;

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

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

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

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

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

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

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

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

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

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
}

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

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

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

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(26, 26, 26, 0.98);
}

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

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.nav__logo {
    font-size: 2rem;
}

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

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

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

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-image:
        linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
        url('https://lh3.googleusercontent.com/p/AF1QipOaVECMPw4844uzrqA28qEozyHWwM3sn_MttTXh=w1920-h1080-k-no');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 26, 26, 0.5) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero__rating {
    margin-bottom: 2rem;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

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

.rating__score {
    font-weight: 700;
    font-size: 1.3rem;
}

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

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.hero__info-item .icon {
    font-size: 1.5rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero__scroll-arrow {
    font-size: 2rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about__content {
    display: grid;
    gap: 3rem;
}

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

.about__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--light-section);
    border-radius: 15px;
    transition: var(--transition-base);
}

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

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

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.about__highlights h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
}

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

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-section);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-gray);
}

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

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: var(--text-light);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.stat-card__number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card__label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background: var(--light-section);
}

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

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.service-card__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery__filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--light-section);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-gray);
    transition: var(--transition-base);
}

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

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

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

.gallery__item.hidden {
    display: none;
}

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

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

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

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

.gallery__zoom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-light);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

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

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    background: var(--light-section);
}

.reviews__summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.rating-summary__score {
    text-align: center;
    padding: 2rem;
}

.score-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.score-stars {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.score-text {
    display: block;
    color: var(--text-gray);
    font-size: 1.1rem;
}

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

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

.rating-bar__label {
    min-width: 30px;
    font-weight: 600;
    color: var(--text-gray);
}

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

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width var(--transition-slow);
}

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

.rating-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--light-section);
    border-radius: 8px;
}

.detail-rating__label {
    min-width: 100px;
    font-weight: 600;
    color: var(--text-dark);
}

.detail-rating__stars {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.detail-rating__score {
    margin-left: auto;
    font-weight: 700;
    color: var(--primary-color);
}

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

.review-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

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

.review-card__rating {
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

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

.badge {
    padding: 0.3rem 0.75rem;
    background: var(--light-section);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

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

.review-card__detailed {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.review-card__context {
    background: var(--light-section);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.review-card__context p {
    margin-bottom: 0.5rem;
}

.review-card__context p:last-child {
    margin-bottom: 0;
}

.review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.review-card__author {
    font-weight: 600;
    color: var(--text-dark);
}

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

.review-recommendation {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.review-recommendation h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.customer-update {
    padding: 1.5rem;
    background: var(--light-section);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.customer-update__text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.customer-update__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.customer-update__author {
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   BUSY TIMES SECTION
   ======================================== */
.busy-times {
    background: var(--light-bg);
}

.busy-times__day-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.day-btn {
    padding: 0.75rem 1.5rem;
    background: var(--light-section);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-gray);
    transition: var(--transition-base);
}

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

.busy-times__graph {
    background: var(--light-section);
    padding: 2rem;
    border-radius: 15px;
    min-height: 300px;
    margin-bottom: 2rem;
}

.busy-times__legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.low {
    background: #4caf50;
}

.legend-dot.medium {
    background: var(--secondary-color);
}

.legend-dot.high {
    background: var(--primary-color);
}

/* ========================================
   ORDER SECTION
   ======================================== */
.order {
    background: var(--light-section);
}

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

.platform-card {
    background: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.platform-card__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.platform-card__name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.platform-card__text {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-card__link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.info-box {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

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

.info-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-box p {
    color: var(--text-gray);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.info-card {
    background: var(--light-section);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.info-item:last-child {
    margin-bottom: 0;
}

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

.info-item__content strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item__content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-item__content a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-item__content a:hover {
    text-decoration: underline;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.hours-item__day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-item__time {
    color: var(--text-gray);
}

.hours-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    color: var(--text-dark);
}

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

.parking-list li {
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 8px;
    color: var(--text-gray);
}

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

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

.map-coordinates {
    padding: 1rem;
    background: var(--light-section);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.map-coordinates p {
    margin-bottom: 0.5rem;
}

.map-coordinates p:last-child {
    margin-bottom: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

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

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

.footer__tagline {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer__description {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer__column h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.footer__column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer__rating {
    margin-top: 0.5rem;
    color: var(--accent-color);
}

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

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

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

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.lightbox__close {
    top: 2rem;
    right: 2rem;
}

.lightbox__prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.lightbox__prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox__next:hover {
    transform: translateY(-50%) scale(1.1);
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem 2rem;
    }

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

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

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition-base);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__toggle {
        display: flex;
    }

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

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

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

    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

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

    .lightbox__prev {
        left: 1rem;
    }

    .lightbox__next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

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

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

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}