/* Professional Enterprise Restaurant Management System CSS */

:root {
    /* Professional Corporate Color Palette */
    --primary-color: #1a365d;        /* Deep Navy Blue */
    --secondary-color: #2d3748;      /* Charcoal Gray */
    --accent-color: #3182ce;         /* Professional Blue */
    --success-color: #38a169;        /* Professional Green */
    --warning-color: #d69e2e;        /* Corporate Gold */
    --danger-color: #e53e3e;         /* Corporate Red */
    --dark-color: #2d3748;           /* Dark Charcoal */
    --light-color: #f7fafc;          /* Clean White */
    --text-primary: #2d3748;         /* Primary Text */
    --text-secondary: #4a5568;       /* Secondary Text */
    --text-muted: #718096;           /* Muted Text */
    
    /* Professional Gradients */
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #3182ce 100%);
    --gradient-secondary: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    --gradient-accent: linear-gradient(135deg, #3182ce 0%, #4299e1 100%);
    --gradient-success: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    --gradient-premium: linear-gradient(135deg, #805ad5 0%, #9f7aea 100%);
    
    /* Corporate Shadows */
    --shadow-sm: 0 2px 4px rgba(45, 55, 72, 0.05);
    --shadow: 0 4px 6px rgba(45, 55, 72, 0.1);
    --shadow-lg: 0 10px 25px rgba(45, 55, 72, 0.15);
    --shadow-xl: 0 20px 40px rgba(45, 55, 72, 0.2);
    
    /* Glass Effect */
    --glass-bg: rgba(247, 250, 252, 0.8);
    --glass-border: rgba(45, 55, 72, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-color);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(26, 54, 93, 0.95) !important;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/restaurant-bg.jpg') center/cover;
    opacity: 0.1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(37, 99, 235, 0.8) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Demo Cards */
.demo-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.demo-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

/* Professional Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #edf2f7 100%);
    padding: 80px 0;
}

.pricing-highlights {
    margin-top: 1.5rem;
}

.pricing-highlights .badge {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.03);
    background: linear-gradient(135deg, #fff 0%, #f7fafc 100%);
    box-shadow: 0 25px 50px rgba(49, 130, 206, 0.15);
}

.pricing-card.featured::before {
    background: var(--gradient-accent);
    height: 6px;
}

.pricing-card.enterprise {
    border: 2px solid var(--primary-color);
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.2);
}

.pricing-card.enterprise::before {
    background: var(--gradient-premium);
    height: 6px;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.7rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-header h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.pricing-card.enterprise .pricing-header h4 {
    color: white;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.price .currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 0.25rem;
}

.price .period {
    font-size: 1rem;
    color: #6c757d;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 0.5rem;
}

.pricing-card.enterprise .price .currency,
.pricing-card.enterprise .price .amount {
    color: #ffd700;
}

.pricing-card.enterprise .price .period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 500;
}

.pricing-card.enterprise .plan-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.pricing-card.enterprise .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.pricing-features li i {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.pricing-features li i.fa-check {
    color: #28a745;
}

.pricing-features li i.fa-times {
    color: #6c757d;
}

.pricing-footer {
    margin-top: auto;
}

.setup-fee {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pricing-card.enterprise .setup-fee {
    color: #adb5bd;
}

.btn-gradient {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: var(--primary-color);
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    color: var(--primary-color);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-gradient:hover::before {
    left: 100%;
}

.pricing-note {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.1);
    margin-top: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.pricing-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.pricing-note h6 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-note p {
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 0;
}

.pricing-note i {
    font-size: 2.5rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(49, 130, 206, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--primary-color);
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 10;
    border: 2px solid #ffd700;
}

.pricing-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-10px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(10px); }
}

.pricing-header h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.pricing-card.enterprise .pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
    border: 2px solid #ffd700;
}

.pricing-card.enterprise .pricing-header h4 {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    position: relative;
    z-index: 2;
}

.price .currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.price .period {
    font-size: 1.1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.pricing-card.enterprise .price .currency,
.pricing-card.enterprise .price .amount {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.pricing-card.enterprise .price .period {
    color: rgba(255, 215, 0, 0.8);
}

.pricing-features {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.pricing-features li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    background: rgba(49, 130, 206, 0.05);
    padding-left: 1.5rem;
    border-radius: 0.5rem;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 1.2rem;
    font-weight: 900;
    width: 20px;
    text-align: center;
}

.pricing-features .fa-star {
    color: #ffd700;
}

.pricing-card .btn {
    margin: 0 2rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.pricing-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.4);
    color: white;
}

.pricing-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.pricing-card .btn:hover::before {
    left: 100%;
}

.pricing-card.enterprise .btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--primary-color);
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.pricing-card.enterprise .btn:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    color: var(--primary-color);
}

/* Contact Section */
.contact-info h4 {
    color: white;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-item h6 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form select.form-control {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-4-4h8l-4 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.contact-form select.form-control option {
    background: #1e293b !important;
    color: white !important;
    padding: 0.5rem;
}

.contact-form select.form-control:focus option {
    background: #334155 !important;
    color: white !important;
}

.contact-form .dropdown-toggle {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.contact-form .dropdown-toggle:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25) !important;
}

.contact-form .dropdown-toggle::after {
    border-top-color: white;
}

.contact-form .dropdown-item:hover {
    background: #334155 !important;
    color: white !important;
}

.contact-form .dropdown-item:focus {
    background: #334155 !important;
    color: white !important;
}

.contact-form .form-label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Utilities */
.bg-light {
    background-color: var(--light-color) !important;
}

.text-muted {
    color: var(--secondary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-image img {
        transform: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .contact-form {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .feature-card,
    .demo-card,
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Social Links */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Tab Features Styles */
.features-tab-nav {
    margin-bottom: 2rem;
}

.features-tab-nav .nav-pills {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 5px;
}

.features-tab-nav .nav-link {
    background: transparent;
    border: none;
    color: var(--dark-color);
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: auto;
    white-space: nowrap;
}

.features-tab-nav .nav-link i {
    font-size: 16px;
}

.features-tab-nav .nav-link span {
    font-size: 14px;
}

.features-tab-nav .nav-link:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.features-tab-nav .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.features-tab-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.15);
    position: relative;
    overflow: hidden;
}

.features-tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.feature-showcase {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.feature-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.feature-showcase h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard Preview Styles */
.dashboard-preview {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 15px;
    padding: 2rem;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
}

.mini-stat-card {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.08);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mini-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.15);
}

.mini-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.mini-stat-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-stat-card.primary { border-left-color: var(--accent-color); }
.mini-stat-card.success { border-left-color: var(--success-color); }
.mini-stat-card.warning { border-left-color: #ffd700; }
.mini-stat-card.info { border-left-color: var(--primary-color); }

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.mini-stat-card.primary .stat-icon { background: var(--accent-color); }
.mini-stat-card.success .stat-icon { background: var(--success-color); }
.mini-stat-card.warning .stat-icon { background: #ffd700; }
.mini-stat-card.info .stat-icon { background: var(--primary-color); }

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.mini-chart {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

/* Order Management Styles */
.order-management-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 1.5rem;
    color: #333;
}

.filter-bar {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-items {
    max-height: 200px;
    overflow-y: auto;
}

.order-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid;
}

.order-item:nth-child(odd) { border-left-color: #ffd700; }
.order-item:nth-child(even) { border-left-color: var(--success-color); }

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.order-id {
    font-weight: 600;
    color: #333;
}

.table-info {
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.order-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-preparing {
    background: #d4edda;
    color: #155724;
}

.order-details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.order-total {
    font-weight: 600;
    color: #28a745;
}

/* Table Management Styles */
.table-management-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 1.5rem;
    color: #333;
}

.table-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.table-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 2px solid;
}

.table-item.available {
    border-color: var(--success-color);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.1));
}

.table-item.occupied {
    border-color: var(--danger-color);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.1));
}

.table-item.reserved {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.1));
}

.table-number {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.table-status {
    font-size: 12px;
    font-weight: 500;
    margin: 0.5rem 0;
}

.table-capacity {
    font-size: 11px;
    color: #666;
}

.table-notifications {
    position: absolute;
    top: 5px;
    right: 5px;
    animation: pulse 2s infinite;
}

.qr-sample {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.qr-code-mini {
    font-size: 48px;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Kitchen Screen Styles */
.kitchen-screen-preview {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 10px;
    padding: 1.5rem;
    color: white;
    min-height: 300px;
}

.kitchen-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.kitchen-column {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
}

.column-header.pending { border-bottom-color: #f39c12; }
.column-header.preparing { border-bottom-color: #3498db; }
.column-header.ready { border-bottom-color: #27ae60; }

.column-header h6 {
    margin: 0;
    font-weight: 600;
}

.column-header .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 12px;
}

.kitchen-order-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.kitchen-order-card .order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.order-number {
    font-weight: 600;
}

.order-time {
    font-size: 12px;
    opacity: 0.8;
}

.kitchen-order-card .order-items {
    margin-bottom: 0.5rem;
}

.kitchen-order-card .item {
    font-size: 12px;
    margin-bottom: 2px;
}

.kitchen-order-card .table-info {
    font-size: 11px;
    opacity: 0.7;
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Notifications Styles */
.notifications-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 1.5rem;
    color: #333;
}

.notification-items {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid;
}

.notification-item.urgent { border-left-color: var(--danger-color); }
.notification-item.info { border-left-color: var(--primary-color); }
.notification-item.success { border-left-color: var(--success-color); }

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.notification-item.urgent .notification-icon { background: var(--danger-color); }
.notification-item.info .notification-icon { background: var(--primary-color); }
.notification-item.success .notification-icon { background: var(--success-color); }

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.notification-details {
    font-size: 12px;
    color: #666;
}

.notification-actions {
    flex-shrink: 0;
}

/* QR Menu Phone Mockup */
.qr-menu-preview {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: #333;
    border-radius: 25px;
    padding: 20px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.phone-screen {
    background: white;
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu-header {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.menu-header h6 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.language-selector {
    font-size: 12px;
    color: #666;
}

.menu-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow-x: auto;
}

.category-item {
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item.active {
    background: var(--primary-color);
    color: white;
}

.menu-items {
    flex: 1;
    overflow-y: auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.item-info h6 {
    margin: 0 0 0.25rem 0;
    font-size: 14px;
    color: #333;
}

.item-info p {
    margin: 0 0 0.25rem 0;
    font-size: 11px;
    color: #666;
}

.item-info .price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 13px;
}

.menu-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Feature List Styles */
.feature-list h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.custom-feature-list {
    list-style: none;
    padding: 0;
}

.custom-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dark-color);
    font-size: 14px;
}

.custom-feature-list li:last-child {
    border-bottom: none;
}

.custom-feature-list li i {
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-tab-nav .nav-pills {
        justify-content: center;
    }
    
    .features-tab-nav .nav-link span {
        display: none;
    }
    
    .features-tab-nav .nav-link {
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .features-tab-content {
        padding: 2rem 1.5rem;
    }
    
    .kitchen-columns {
        grid-template-columns: 1fr;
    }
    
    .table-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 360px;
        padding: 15px 10px;
    }
    
    .features-tab-nav .nav-pills {
        flex-direction: column;
        align-items: stretch;
    }
    
    .features-tab-nav .nav-link {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .features-tab-nav .nav-link span {
        display: inline;
        font-size: 12px;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* QR Menu Specific Styles */
.qr-menu-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: 2rem 0;
}

.phone-mockup .menu-header {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
}

.phone-mockup .restaurant-info {
    text-align: center;
    margin-bottom: 10px;
}

.phone-mockup .restaurant-logo {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 18px;
}

.phone-mockup .restaurant-name {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.phone-mockup .table-info {
    font-size: 12px;
    opacity: 0.8;
}

.phone-mockup .language-selector {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-mockup .bell-icon {
    position: absolute;
    top: 80px;
    right: 15px;
    background: var(--warning-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.phone-mockup .bell-icon:hover {
    transform: scale(1.1);
    background: #e67e22;
}

.phone-mockup .search-container {
    padding: 10px 15px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.phone-mockup .search-container input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    flex: 1;
}

.phone-mockup .search-container i {
    color: #999;
    font-size: 14px;
}

.phone-mockup .menu-categories {
    background: #f8f9fa;
    border-bottom: 2px solid #eee;
}

.phone-mockup .category-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
}

.phone-mockup .category-item.active {
    background: var(--primary-color);
    color: white;
}

.phone-mockup .category-item:hover:not(.active) {
    background: #e9ecef;
}

.phone-mockup .category-item i:first-child {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.phone-mockup .category-item i:last-child {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.phone-mockup .category-item.active i:last-child {
    transform: rotate(180deg);
}

.phone-mockup .menu-items {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.phone-mockup .menu-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
    gap: 12px;
    transition: all 0.3s ease;
}

.phone-mockup .menu-item:hover {
    background: #f8f9fa;
}

.phone-mockup .item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.phone-mockup .product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999;
}

.phone-mockup .item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phone-mockup .item-info h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.phone-mockup .item-info p {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.phone-mockup .item-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-mockup .price {
    font-size: 14px;
    font-weight: 600;
    color: var(--success-color);
}

.phone-mockup .add-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.phone-mockup .add-btn:hover {
    transform: scale(1.1);
}

.phone-mockup .menu-actions {
    display: flex;
    gap: 8px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.phone-mockup .action-btn {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-mockup .waiter-btn:hover {
    background: var(--warning-color);
    color: white;
    border-color: var(--warning-color);
}

.phone-mockup .bill-btn:hover {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.phone-mockup .action-btn i {
    font-size: 14px;
}

.phone-mockup .menu-footer {
    padding: 15px;
    background: white;
    border-top: 2px solid #eee;
}

.phone-mockup .cart-btn {
    position: relative;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.phone-mockup .cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.phone-mockup .cart-total {
    margin-left: auto;
    font-weight: 700;
}

/* Animation for QR Menu */
@keyframes phoneSlideIn {
    0% {
        transform: translateY(30px) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.phone-mockup {
    animation: phoneSlideIn 0.8s ease-out;
}

/* Menu item animations */
.phone-mockup .menu-item:nth-child(1) { animation-delay: 0.1s; }
.phone-mockup .menu-item:nth-child(2) { animation-delay: 0.2s; }
.phone-mockup .menu-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bell-ring {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.phone-mockup .menu-item {
    animation: fadeInUp 0.5s ease-out both;
}

/* Reservation System Styles */
.reservation-preview {
    background: #f8f9fc;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reservation-dashboard-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header-info h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.date {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stats-row {
    display: flex;
    gap: 15px;
}

.stat-item {
    background: rgba(255,255,255,0.2);
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-item .count {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.stat-item .label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.stat-item.pending {
    border-left: 4px solid #ffd700;
}

.stat-item.confirmed {
    border-left: 4px solid var(--success-color);
}

.stat-item.completed {
    border-left: 4px solid var(--primary-color);
}

.reservation-list {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.reservation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    border-left: 4px solid #ddd;
    transition: all 0.3s ease;
}

.reservation-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reservation-item.pending {
    border-left-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.reservation-item.confirmed {
    border-left-color: var(--success-color);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.reservation-item.completed {
    border-left-color: #17a2b8;
    background: linear-gradient(135deg, #e0f7fa 0%, #e1f5fe 100%);
}

.reservation-info {
    flex: 1;
}

.customer-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.reservation-details {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
}

.reservation-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.reservation-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.action-btn.confirm {
    background: #28a745;
    color: white;
}

.action-btn.cancel {
    background: #dc3545;
    color: white;
}

.action-btn.complete {
    background: #17a2b8;
    color: white;
}

.action-btn.view {
    background: #6c757d;
    color: white;
}

.reservation-actions-bar {
    padding: 20px;
    background: #f8f9fc;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
}

.action-button {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.action-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.action-button.secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.action-button.secondary:hover {
    background: #e9ecef;
}

/* Success Cards */
.success-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.success-icon {
    text-align: center;
    padding: 2rem 0 1rem;
    font-size: 3rem;
}

.success-card .card-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.success-card .card-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.stats-highlight {
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    margin-top: 1rem;
}

.stats-highlight .display-6 {
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-highlight small {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

