/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
    /* Colors - Turkish Kebab Restaurant Theme */
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ef5350;
    --secondary-color: #ffa000;
    --secondary-dark: #f57c00;
    --secondary-light: #ffb300;

    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #2c2c2c;

    --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-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Georgia', serif;

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

    /* Container */
    --container-width: 1140px;
    --container-padding: 20px;

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

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

.logo__text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}

.nav__toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-base);
}

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

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

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

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

.nav__link--cta {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    border-radius: 50px;
}

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

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

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    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;
    animation: zoomEffect 20s ease infinite;
}

@keyframes zoomEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.85), rgba(255, 160, 0, 0.7));
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__content {
    text-align: center;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

.rating__stars {
    display: flex;
    gap: 4px;
    font-size: 1.5rem;
}

.star {
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.rating__text {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero__info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.info__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.info__item svg {
    flex-shrink: 0;
}

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

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about {
    background: var(--bg-light);
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.feature__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.feature__icon svg {
    color: var(--text-white);
}

.feature__content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

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

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

.specialty-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.specialty__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.specialty-card:hover .specialty__image img {
    transform: scale(1.1);
}

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

.specialty__content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.specialty__content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

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

.tag {
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Specialties Info Boxes */
.specialties__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.info-box {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

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

.info-list li {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================================
   GALLERY SECTION
   =========================================== */
.gallery {
    background: var(--bg-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-sm);
}

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

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

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

.gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(211, 47, 47, 0);
    transition: var(--transition-base);
}

.gallery__item:hover::after {
    background: rgba(211, 47, 47, 0.3);
}

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

.summary__rating {
    text-align: center;
    padding: var(--spacing-md);
}

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

.rating__count {
    color: var(--text-light);
    margin-top: var(--spacing-xs);
}

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

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

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

.distribution__bar {
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

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

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

/* Reviews Carousel */
.reviews__carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.review-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

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

.review__stars {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

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

.review__text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.review__footer {
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-sm);
}

.review__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-xs);
}

.badge {
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.review__rating-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Review Tags */
.reviews__tags {
    text-align: center;
}

.reviews__tags h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.tags__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.review-tag {
    padding: 8px 16px;
    background: var(--bg-white);
    border: 2px solid var(--primary-light);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition-base);
}

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

/* ===========================================
   ORDER SECTION
   =========================================== */
.order {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
}

.order .section-title,
.order .section-subtitle {
    color: var(--text-white);
}

.order .section-title::after {
    background: var(--text-white);
}

.order__content {
    max-width: 900px;
    margin: 0 auto;
}

.order__card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
}

.order__icon {
    margin: 0 auto var(--spacing-md);
}

.order__icon svg {
    color: var(--primary-color);
}

.order__card h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.order__card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.order__alternatives {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.order__alternatives h4 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

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

.alternative {
    text-align: center;
    padding: var(--spacing-md);
}

.alternative svg {
    margin: 0 auto var(--spacing-sm);
}

.alternative h5 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.alternative__link {
    color: var(--text-white);
    font-weight: 600;
    text-decoration: underline;
}

.alternative__link:hover {
    color: var(--secondary-color);
}

.alternative__text {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact {
    background: var(--bg-light);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

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

.info-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.info-card--full {
    grid-column: 1 / -1;
}

.info-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.info-card__icon svg {
    color: var(--text-white);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

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

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

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

.info-card__link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

.hours__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--spacing-sm);
}

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.hours__note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: var(--spacing-sm);
}

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

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer__section h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.footer__section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
}

.footer__rating .rating__stars {
    color: var(--secondary-color);
}

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

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

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

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

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

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

/* ===========================================
   MODAL
   =========================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

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

.modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--text-white);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.modal__nav:hover svg {
    color: var(--text-white);
}

.modal__nav--prev {
    left: -60px;
}

.modal__nav--next {
    right: -60px;
}

/* ===========================================
   SCROLL TO TOP
   =========================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

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

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

/* ===========================================
   ANIMATIONS
   =========================================== */
.fade-in {
    animation: fadeIn 0.6s ease;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================================
   MEDIA QUERIES
   =========================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 4rem;
    }

    .nav__menu {
        gap: 1.5rem;
    }

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 3rem;
        --container-padding: 15px;
    }

    /* Navigation */
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transition: var(--transition-base);
        overflow-y: auto;
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__link {
        width: 100%;
        padding: var(--spacing-sm);
        text-align: center;
    }

    .nav__link--cta {
        margin-top: var(--spacing-sm);
    }

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

    .hero__info {
        font-size: 0.9rem;
    }

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

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

    /* Cards and Grids */
    .about__features,
    .specialties__grid,
    .reviews__carousel {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    /* Modal */
    .modal__nav--prev {
        left: 10px;
    }

    .modal__nav--next {
        right: 10px;
    }

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

/* Small Mobile */
@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .hero__buttons .btn {
        font-size: 0.9rem;
        padding: 10px 24px;
    }

    .modal__content {
        max-width: 95vw;
    }

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