/* ============================================
   HOME PAGE - MODERN DESIGN
   ============================================ */

/* ============ ROOT VARIABLES ============ */
:root {
    --primary-gradient: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    --success-gradient: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 100%);
    --purple-gradient: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    --blue-gradient: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 100%);
    --pink-gradient: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    --orange-gradient: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
    --color-primary: #1E3A8A;
    --color-teal: #06B6D4;
    --color-orange: #F97316;
    --color-neutral: #F3F4F6;
    --color-text: #111827;
    --color-text-muted: #6B7280;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(30, 58, 138, 0.15);
    --border-radius: 20px;
}

/* ============ MODERN HERO SECTION ============ */
.modern-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
    animation-delay: 5s;
}

.hero-shape.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInDown 0.6s ease;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease;
}

.gradient-text {
    background: linear-gradient(90deg, #fff 0%, #fef3c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    animation: slideInLeft 1s ease;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: slideInLeft 1.2s ease;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-chip:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    animation: slideInUp 1s ease;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-modern.btn-primary {
    background: white;
    color: #1E3A8A;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-modern.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
    color: #1E3A8A;
}

.btn-modern.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.3);
}

.btn-modern.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(17, 153, 142, 0.4);
    color: white;
}

.table-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.table-info strong {
    color: white;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease;
}

.illustration-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

.illustration-card {
    position: absolute;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: float 6s ease-in-out infinite;
}

.illustration-card i {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.illustration-card h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.illustration-card p {
    margin: 0;
    color: #6B7280;
    font-size: 0.9rem;
}

.illustration-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.illustration-card.card-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.illustration-card.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

/* ============ MENU SECTION ============ */
.menu-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.section-header-modern {
    position: relative;
    z-index: 1;
}

.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--primary-gradient);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subheading {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Tabs */
.nav-pills .nav-link {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #6c757d;
    background: #f8f9fa;
    border: 2px solid transparent;
    margin: 0 6px;
}

.nav-pills .nav-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
}

.nav-pills .nav-link.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

/* Menu Cards */
.menu-item-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.menu-item-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-badge.popular {
    background: var(--pink-gradient);
}

.menu-badge.new {
    background: var(--blue-gradient);
}

.menu-item-content {
    padding: 25px;
}

.menu-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.menu-item-description {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.menu-item-footer {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-item-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ FEATURES SECTION ============ */
.features-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.feature-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
}

.feature-icon-modern.gradient-purple {
    background: var(--purple-gradient);
}

.feature-icon-modern.gradient-blue {
    background: var(--blue-gradient);
}

.feature-icon-modern.gradient-pink {
    background: var(--pink-gradient);
}

.feature-card-modern h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.feature-card-modern p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ============ TECH SECTION ============ */
.tech-section {
    padding: 100px 0;
    background: white;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #374151;
}

.tech-feature-item i {
    font-size: 1.3rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #1E3A8A;
}

/* ============ TECH-ITEM (used in Home/Index.cshtml) ============ */
.tech-item {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(6, 182, 212, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    border-color: #1E3A8A;
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.tech-item:hover i {
    transform: scale(1.2) rotateY(360deg);
}

.tech-item h6 {
    position: relative;
    z-index: 1;
}

.tech-item small {
    position: relative;
    z-index: 1;
}

.tech-card i {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.tech-card h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.tech-card small {
    color: #6B7280;
    font-size: 0.9rem;
}

/* ============ EVENTS SECTION ============ */
.events-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.event-card-modern {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.event-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

.event-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
}

.event-image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

.event-badge-modern {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-badge-modern.featured {
    background: var(--pink-gradient);
}

.event-content-modern {
    padding: 25px;
}

.event-meta-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #6B7280;
}

.event-meta-modern span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-content-modern h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.event-content-modern p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-location-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #06B6D4;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============ ANIMATIONS ============ */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-illustration {
        height: 400px;
    }

    .illustration-card {
        padding: 20px;
    }

    .illustration-card h4 {
        font-size: 1.5rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-illustration {
        display: none;
    }

    .hero-features {
        flex-direction: column;
    }

    .feature-chip {
        width: 100%;
        justify-content: center;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .section-subheading {
        font-size: 1rem;
    }

    .nav-pills .nav-link {
        padding: 10px 20px;
        margin: 0 4px;
        font-size: 0.9rem;
    }

    .menu-item-image {
        height: 200px;
    }
}
.hero-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom;
    background-size: cover;
    opacity: 0.3;
}

/* ============ HERO CAROUSEL STYLES ============ */
.hero-carousel-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-slide {
    min-height: 40vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 30vh;
    }

    .hero-slide h1 {
        font-size: 1.5rem !important;
    }

    .hero-slide .lead {
        font-size: 0.9rem !important;
    }

    .hero-slide .qr-alert-modern {
        display: none !important;
    }
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 15;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    width: 40px;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    will-change: opacity, transform;
}

.hero-carousel-section:hover .carousel-control-prev,
.hero-carousel-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ============ TEXT GRADIENTS ============ */
.text-gradient {
    background: linear-gradient(90deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(90deg, #ffffff 0%, #fef3c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.hero-title {
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* ============ BACKDROP BLUR UTILITY ============ */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ============ HERO IMAGE EFFECTS ============ */
.hero-image {
    animation: fadeInRight 1s ease;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-image-wrapper {
    position: relative;
}

/* ============ QR ALERT - MODERN DESIGN ============ */
.qr-alert-modern {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    animation: slideInLeft 0.8s ease;
    transition: all 0.3s ease;
}

.qr-alert-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.qr-icon-animated {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
    color: #ffc107;
}

/* ============ CTA BUTTON ANIMATIONS ============ */
.animate-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.animate-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.animate-btn:hover::before {
    width: 300px;
    height: 300px;
}

.animate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
    border-color: white !important;
}

/* ============ FLOATING CARD ============ */
.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============ WAVE DIVIDER ============ */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* ============ STATS SECTION ============ */
.stats-section {
    background: linear-gradient(135deg, #F3F4F6 0%, #e8eaf0 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.4" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom;
    background-size: cover;
    opacity: 0.5;
}

.stats-section .section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.stats-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-section .section-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #4B5563;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    will-change: transform, box-shadow;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.18);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.gradient-purple {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
}

.stat-label {
    color: #6B7280;
    font-size: 0.95rem;
}

/* Highlight animation for stat changes (SignalR real-time) */
.stat-highlight {
    animation: statPulse 0.5s ease;
}

@keyframes statPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
    }
}

/* ============ SECTION HEADERS ============ */
.section-header {
    max-width: 700px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
}

/* ============ EVENT CARDS ============ */
.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    will-change: transform, box-shadow;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.event-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-badge.featured {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.event-content {
    padding: 25px;
}

.event-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.event-type,
.event-location {
    font-size: 0.85rem;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.4;
}

.event-description {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.event-date,
.event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

/* ============ FEATURES SECTION ============ */
.feature-card {
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.feature-description {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ FOOTER SECTION ============ */
.footer-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: #667eea;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #cbd5e0;
}

.footer-contact i {
    font-size: 1.2rem;
    color: #667eea;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact strong {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

.footer-bottom strong {
    color: #ffffff;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: center;
    justify-content: flex-end;
}

.footer-bottom-links li {
    display: inline-block;
}

.footer-bottom-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* ============ FOOTER MOBILE (< 576px) ============ */
@media (max-width: 575px) {
    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-widget {
        margin-bottom: 20px;
    }

    .footer-logo {
        font-size: 1.2rem;
        gap: 6px;
        margin-bottom: 10px;
    }

    .footer-logo i {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.78rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .footer-title::after {
        width: 30px;
        height: 2px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 0.8rem;
        gap: 5px;
    }

    .footer-contact li {
        gap: 8px;
        margin-bottom: 12px;
    }

    .footer-contact i {
        font-size: 0.9rem;
    }

    .footer-contact div {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .footer-contact strong {
        font-size: 0.82rem;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom p {
        font-size: 0.78rem;
    }

    .footer-bottom-links {
        gap: 16px;
        justify-content: center;
        margin-top: 8px;
    }

    .footer-bottom-links a {
        font-size: 0.78rem;
    }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============ ABOUT APPLICATION SECTION ============ */
.about-app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.about-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    border-radius: 50% 0 0 50%;
}

.about-app-section .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.about-app-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-app-section .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #718096;
}

.features-list .feature-item {
    transition: transform 0.3s ease;
}

.features-list .feature-item:hover {
    transform: translateX(10px);
}

.feature-icon-small {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    flex-shrink: 0;
}

.feature-icon-small i {
    font-size: 1.5rem;
}

.tech-stack-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.tech-item {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

/* ============ MENU SHOWCASE SECTION ============ */
.menu-showcase-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.menu-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 0 0 50% 50% / 0 0 30px 30px;
}

.menu-tab {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    color: #6c757d;
    background: white;
    margin: 0 8px;
}

.menu-tab:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.menu-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.menu-item-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-badge.popular {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.menu-badge.new {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    top: 55px; /* Position below popular badge when both are present */
}

.menu-item-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.menu-item-description {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.menu-item-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.menu-item-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-order {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: white;
}

/* Tab Content Animation */
.tab-pane {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-tab {
        padding: 10px 20px;
        margin: 0 4px;
        font-size: 14px;
    }

    .menu-item-image {
        height: 200px;
    }

    .menu-item-title {
        font-size: 1.1rem;
    }

    .menu-item-price {
        font-size: 1.3rem;
    }
}


.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.tech-item i {
    transition: all 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.1);
}

.text-purple {
    color: #764ba2 !important;
}

@media (max-width: 992px) {
    .about-app-section .section-title {
        font-size: 2rem;
    }

    .tech-stack-card {
        margin-top: 30px;
    }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .lead {
        font-size: 1.1rem !important;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .qr-alert-modern {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .qr-icon-animated {
        font-size: 2rem;
    }

    .animate-btn {
        width: 100%;
        justify-content: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .hero-carousel-section .carousel-control-prev,
    .hero-carousel-section .carousel-control-next {
        opacity: 0.8;
    }

    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }

    .footer-title::after {
        width: 40px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-bottom p {
        margin-bottom: 10px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ============ EXTRA SMALL SCREENS (< 480px) ============ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem !important;
    }

    .lead {
        font-size: 0.95rem !important;
    }

    .hero-slide {
        min-height: 100svh;
    }

    .qr-alert-modern {
        padding: 10px 14px;
        gap: 8px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-card {
        padding: 16px 12px;
    }
}

/* ============ PRINT STYLES ============ */
@media print {
    .hero-carousel-section,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators,
    .footer-section,
    .qr-alert-modern {
        display: none !important;
    }

    .stat-card,
    .event-card,
    .feature-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ============ HOW TO ORDER SECTION ============ */
.how-to-order-section {
    background-color: #ffffff;
}

.how-to-card {
    position: relative;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2.5rem 1.75rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(30, 58, 138, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.how-to-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.how-to-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.how-to-step-number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    width: 2rem;
    height: 2rem;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.how-to-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--color-primary);
    transition: background 0.3s ease;
}

.how-to-card:hover .how-to-icon {
    background: var(--primary-gradient);
    color: #fff;
}

.how-to-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.6rem;
}

.how-to-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .how-to-card {
        padding: 2rem 1.25rem 1.5rem;
    }
}

@media print {
    .hero-carousel-section,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators,
    .footer-section,
    .qr-alert-modern {
        display: none !important;
    }

    .stat-card,
    .event-card,
    .feature-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ============ QR ORDER SECTION ============ */
.qr-step-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qr-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.qr-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
