/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Colors - Warm earthy tones with orange accents */
    --primary-color: #ff6b35;
    --primary-dark: #e8491d;
    --primary-light: #ff8555;
    --secondary-color: #f7931e;
    --accent-color: #ffa500;
    
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-darker: #1a1a1a;
    --bg-card: #1f1f1f;
    
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-light: #999999;
    
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-fire: linear-gradient(180deg, #ff6b35 0%, #ffa500 50%, #ff6b35 100%);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Baloo 2', cursive;
    
    --font-huge: 3.5rem;
    --font-big: 2.5rem;
    --font-h1: 2rem;
    --font-h2: 1.75rem;
    --font-h3: 1.25rem;
    --font-normal: 1rem;
    --font-small: 0.875rem;
    
    /* Spacing */
    --header-height: 4.5rem;
    --section-padding: 5rem 0;
    --container-width: 1200px;
    
    /* Shadows & Effects */
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 12px 32px rgba(255, 107, 53, 0.4);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-family: var(--font-secondary);
    font-size: var(--font-big);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.section__subtitle {
    font-size: var(--font-normal);
    color: var(--text-gray);
    font-weight: 300;
}

.gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: var(--font-normal);
}

.button-primary {
    background: var(--gradient-orange);
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
}

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

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

.button-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.button-disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: default;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.header.scroll-header {
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.2);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    transition: var(--transition);
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
    transform: scale(1.05);
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

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

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
}

/* ==================== HOME/HERO SECTION ==================== */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
}

.home__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.home__data {
    z-index: 2;
}


.coming-soon-badge,
.status-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-orange);
    color: var(--text-white);
    border-radius: 50px;
    font-size: var(--font-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
    animation: pulse 2s ease-in-out infinite, fadeInUp 1s ease;
}

.status-badge + .status-badge {
    margin-left: 0.75rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge-launch {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9a3c 100%);
}

.badge-cart {
    background: linear-gradient(135deg, #ff934f 0%, #ff6b6b 100%);
}

.home__title {
    font-family: var(--font-secondary);
    font-size: var(--font-huge);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.home__description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.home__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.service-status {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.status-card {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.status-card h4 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.status-card p {
    color: var(--text-gray);
    font-size: var(--font-small);
    line-height: 1.6;
}

.status-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.home__img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease;
}

.home__logo-large {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 2s ease-in-out infinite;
}

/* Floating food icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.food-icon {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    animation: floatAround 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.food-icon:nth-child(1) {
    top: 20%;
    left: 10%;
}

.food-icon:nth-child(2) {
    top: 60%;
    left: 5%;
}

.food-icon:nth-child(3) {
    top: 80%;
    left: 15%;
}

/* Steam animation */
.steam {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.3), transparent);
    border-radius: 50%;
    animation: steam 2s ease-in-out infinite;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    z-index: 1;
}

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

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

.service-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card--active {
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 53, 0.6);
}

.service-card--upcoming {
    background: linear-gradient(180deg, rgba(31, 31, 31, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.service-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-card__list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-card__list li {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-small);
}

.service-card__list i {
    color: var(--primary-color);
}

.service-card__list a {
    color: var(--text-white);
    text-decoration: underline;
}

.service-card__cta {
    width: fit-content;
}

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

.service-card--upcoming:hover {
    border-color: rgba(255, 147, 79, 0.8);
}

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

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

.about__card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: var(--transition);
}

.about__card:hover::before {
    transform: scaleX(1);
}

.about__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.about__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-orange);
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: var(--shadow-glow);
}

.about__card h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-h3);
    margin-bottom: 1rem;
    color: var(--text-white);
}

.about__card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==================== THALI SECTION ==================== */
.thali {
    background: var(--bg-black);
}

.thali__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
}

.thali__intro {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

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

.highlight-card {
    background: var(--bg-darker);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 107, 53, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.highlight-card h4 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.highlight-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.thali__list {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.thali__list li {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.thali__list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.thali__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.thali__viewer {
    background: var(--bg-darker);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 1rem;
    box-shadow: var(--shadow-glow);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

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

.thali-card {
    background: rgba(31, 31, 31, 0.9);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.thali-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 107, 53, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-light);
    font-size: 1.6rem;
    box-shadow: inset 0 0 10px rgba(255, 107, 53, 0.15);
    position: relative;
    z-index: 1;
}

.thali-card__icon i {
    filter: drop-shadow(0 0 6px rgba(255, 133, 85, 0.35));
}

.thali-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.18), transparent 55%);
    opacity: 0;
    transition: var(--transition);
}

.thali-card h4 {
    font-family: var(--font-secondary);
    font-size: 1.35rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.thali-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.thali-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.thali-card:hover .thali-card__icon {
    background: rgba(255, 107, 53, 0.28);
    color: var(--primary-color);
}

.thali-card:hover::after {
    opacity: 1;
}

.thali__note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 1rem 1rem;
}

/* ==================== SPECIALTIES SECTION ==================== */
.specialties {
    background: var(--bg-dark);
}

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

.specialty__card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.specialty__card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.specialty__card:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.specialty__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.specialty__number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.specialty__card h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-h3);
    margin-bottom: 1rem;
    color: var(--text-white);
}

.specialty__card p {
    color: var(--text-gray);
    line-height: 1.8;
}

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

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact__info {
    display: grid;
    gap: 1.5rem;
}

.contact__card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.contact__card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.contact__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-orange);
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact__details h3 {
    font-size: var(--font-h3);
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

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

.contact__social {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact__social h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-h2);
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.social__links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social__link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.social__link:hover {
    background: var(--gradient-orange);
    color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.cta-box {
    background: var(--bg-darker);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.cta-box h4 {
    font-family: var(--font-secondary);
    font-size: var(--font-h3);
    margin-bottom: 1rem;
    color: var(--text-white);
}

.cta-box p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

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

.footer__logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.footer__logo p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer__info h4 {
    font-family: var(--font-secondary);
    font-size: var(--font-h3);
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer__info ul {
    list-style: none;
}

.footer__info ul li {
    margin-bottom: 0.5rem;
}

.footer__info ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer__copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-gray);
}

.footer__copyright i {
    color: var(--primary-color);
    animation: heartbeat 1.5s ease infinite;
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

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

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

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(-5px, -20px) rotate(-5deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(3deg);
    }
}

@keyframes steam {
    0% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-40px) scale(1.5);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

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

/* ==================== RESPONSIVE DESIGN ==================== */
@media screen and (max-width: 968px) {
    :root {
        --font-huge: 2.5rem;
        --font-big: 2rem;
        --font-h1: 1.75rem;
        --font-h2: 1.5rem;
    }
    
    .home {
        overflow: visible;
        padding-bottom: 6rem;
    }

    .home__container,
    .contact__content,
    .footer__content,
    .thali__content {
        grid-template-columns: 1fr;
    }
    
    .home__img {
        order: -1;
    }
    
    .home__logo-large {
        max-width: 350px;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 4rem 2rem;
        transition: var(--transition);
        border-left: 1px solid rgba(255, 107, 53, 0.2);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__link {
        font-size: 1.2rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
    }
    
    .home__buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .home__buttons .button {
        width: 100%;
        justify-content: center;
    }

    .service-status {
        grid-template-columns: 1fr;
        margin-bottom: 4rem;
    }

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

    .thali__viewer {
        order: -1;
    }

}

@media screen and (max-width: 576px) {
    :root {
        --font-huge: 2rem;
        --font-big: 1.75rem;
        --section-padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .home__title {
        font-size: 2rem;
    }
    
    .home__description {
        font-size: 1rem;
    }
    
    .menu__grid,
    .about__content,
    .specialties__content,
    .thali__highlights {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        height: 50px;
    }

    .hero-badges {
        flex-direction: column;
    }

    .status-badge + .status-badge {
        margin-left: 0;
    }

    .thali__cta {
        flex-direction: column;
    }

    .thali__menu-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-icons {
        display: none;
    }
}

@media screen and (max-width: 350px) {
    .nav__menu {
        width: 90%;
    }
    
    .home__logo-large {
        max-width: 250px;
    }
}

/* ==================== SCAN PAGE ==================== */
body.scan-page {
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 55%),
                radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.18) 0%, transparent 60%),
                var(--bg-black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.scan {
    width: 100%;
}

.scan__container {
    max-width: 620px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: rgba(31, 31, 31, 0.85);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 24px;
    box-shadow: var(--shadow-glow);
    text-align: center;
}

.scan__logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
}

.scan__title {
    font-family: var(--font-secondary);
    font-size: var(--font-big);
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.scan__subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.scan__links {
    display: grid;
    gap: 1rem;
}

.scan-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 15, 15, 0.75);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-white);
    transition: var(--transition);
}

.scan-link--primary {
    background: rgba(255, 107, 53, 0.24);
    border-color: var(--primary-color);
    box-shadow: 0 0 18px rgba(255, 107, 53, 0.4);
    animation: blinkGlow 1.6s ease-in-out infinite;
}

.scan-link--primary .scan-link__icon {
    background: var(--gradient-orange);
}

.scan-link--primary:hover {
    background: rgba(255, 107, 53, 0.32);
    box-shadow: 0 0 24px rgba(255, 107, 53, 0.6);
}

.scan-link--whatsapp {
    border-color: rgba(37, 211, 102, 0.45);
    background: rgba(37, 211, 102, 0.18);
}

.scan-link--whatsapp .scan-link__icon {
    background: rgba(37, 211, 102, 0.35);
    color: #25d366;
}

.scan-link--whatsapp:hover {
    background: rgba(37, 211, 102, 0.28);
    border-color: rgba(37, 211, 102, 0.7);
}

.scan-link__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 107, 53, 0.2);
    font-size: 1.5rem;
    color: var(--text-white);
}

.scan-link__content {
    text-align: left;
}

.scan-link__title {
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.25rem;
}

.scan-link__description {
    font-size: var(--font-small);
    color: var(--text-gray);
}

.scan-link__chevron {
    color: var(--text-light);
    font-size: 1rem;
}

.scan-link:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.12);
}

.scan__footer {
    margin-top: 2.5rem;
    font-size: var(--font-small);
    color: var(--text-light);
}

@keyframes blinkGlow {
    0%,
    100% {
        box-shadow: 0 0 18px rgba(255, 107, 53, 0.55);
    }
    50% {
        box-shadow: 0 0 6px rgba(255, 107, 53, 0.2);
    }
}

@media screen and (max-width: 576px) {
    .scan__container {
        padding: 2rem 1.5rem;
    }

    .scan-link {
        grid-template-columns: auto 1fr;
    }

    .scan-link__chevron {
        display: none;
    }
}
