/* Restaurant Management Page Specific Styles */

/* Restaurant Management Page Background */
.restaurant-management-page {
    background: #2f2600ec url('../assets/restaurant-bg.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-blend-mode: darken;
    background-position: top;
}

/* Restaurant Hero Section */
.restaurant-hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #2f2600ec url('../assets/restro-bg.jpg');
    background-size: cover;
    background-position: bottom;
    background-attachment: scroll;
    background-blend-mode: overlay;
    background-position: center;
}

.restaurant-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1366px;
}

.pos-mockup {
    transform: perspective(1200px) rotateX(347deg) rotateY(343deg) !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.hero-badge i {
    font-size: 1.2rem;
}

.restaurant-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.restaurant-hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFD700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-large {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pos-mockup {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.pos-mockup img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 12px solid rgba(0, 0, 0, 1);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: floatingIcon 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.floating-icon:nth-child(1) {
    top: 10%;
    right: -30px;
}

.floating-icon:nth-child(2) {
    top: 30%;
    left: -30px;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    right: -30px;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    left: -30px;
}

@keyframes floatingIcon {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Core Features Section */
.core-features {
    padding: 120px 0;
    position: relative;
}

.features-showcase {
    margin-top: 4rem;
}

.feature-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-main:nth-child(even)>* {
    direction: ltr;
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature-icon-large i {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 1rem;
}

.feature-list i {
    color: #FFD700;
    font-size: 1.2rem;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-screen {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 300px;
}

.screen-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.screen-dots {
    display: flex;
    gap: 0.5rem;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.screen-dots span:nth-child(1) {
    background: #ff5f57;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:nth-child(3) {
    background: #28ca42;
}

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

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-item span {
    opacity: var(--opacity-light)
}

.kitchen-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.kitchen-item i {
    color: #FFD700;
}

.kitchen-item span {
    opacity: var(--opacity-light)
}


.service-types {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.service-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(9, 9, 185, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-light);
    min-width: 120px;
    transition: all 0.3s ease;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.service-card i {
    font-size: 1.5rem;
    color: #FFD700;
    flex-shrink: 0;
}

.service-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    opacity: var(--opacity-light)
}

/* Mobile Apps Section */
.mobile-apps {
    padding: 120px 0;
    position: relative;
}

.apps-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.app-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* .app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.app-card:hover::before {
    left: 100%;
} */

.app-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.app-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.app-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.app-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.app-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.app-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
}

.app-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: 600;
    width: 100%;
}

/* Advanced Features Section */
.advanced-features {
    padding: 120px 0;
    position: relative;
}

.features-grid-advanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.advanced-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* .advanced-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.advanced-feature:hover::before {
    left: 100%;
} */

.advanced-feature:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px);
}

.advanced-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.advanced-feature .feature-icon i {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.advanced-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.advanced-feature p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    position: relative;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.2;
}

.benefits-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(10px);
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-circle {
    display: flex;
    gap: 2rem;
}

.stat-circle {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.stat-circle .stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: #FFD700;
    line-height: 1;
}

.stat-circle .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    opacity: var(--opacity-light)
}

/* Responsive Styles for Restaurant Management Page */
@media (max-width: 1200px) {
    .restaurant-hero .container {
        gap: 3rem;
    }

    .restaurant-hero h1 {
        font-size: 3rem;
    }

    .restaurant-hero .hero-stats {
        gap: 2rem;
    }

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

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

@media (max-width: 992px) {
    .restaurant-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .restaurant-hero h1 {
        font-size: 2.5rem;
    }

    .restaurant-hero .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .restaurant-hero .hero-buttons {
        justify-content: center;
    }

    .feature-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .feature-main:nth-child(even) {
        direction: ltr;
    }

    .apps-showcase {
        grid-template-columns: 1fr;
    }

    .features-grid-advanced {
        grid-template-columns: 1fr;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .restaurant-hero {
        padding: 120px 0 80px;
    }

    .restaurant-hero h1 {
        font-size: 2rem;
    }

    .restaurant-hero p {
        font-size: 1rem;
    }

    .restaurant-hero .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .restaurant-hero .stat-number {
        font-size: 2rem;
    }

    .restaurant-hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .restaurant-hero .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .restaurant-hero .floating-icon {
        width: 50px;
        height: 50px;
    }

    .restaurant-hero .floating-icon i {
        font-size: 1.2rem;
    }

    .core-features,
    .mobile-apps,
    .advanced-features,
    .benefits {
        padding: 80px 0;
    }

    .feature-main {
        margin-bottom: 4rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .feature-list i {
        font-size: 1rem;
    }

    .mockup-screen {
        min-width: 250px;
        padding: 1rem;
    }

    .app-card {
        padding: 1.5rem;
    }

    .app-icon {
        width: 70px;
        height: 70px;
    }

    .app-icon i {
        font-size: 1.8rem;
    }

    .app-card h3 {
        font-size: 1.3rem;
    }

    .app-card p {
        font-size: 0.9rem;
    }

    .app-features li {
        font-size: 0.8rem;
    }

    .advanced-feature {
        padding: 1.5rem;
    }

    .advanced-feature h3 {
        font-size: 1.1rem;
    }

    .advanced-feature p {
        font-size: 0.9rem;
    }

    .benefits-text h2 {
        font-size: 2rem;
    }

    .benefits-text p {
        font-size: 1rem;
    }

    .benefit-item {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .benefit-item i {
        font-size: 1.2rem;
    }

    .benefit-item h4 {
        font-size: 1rem;
    }

    .benefit-item p {
        font-size: 0.8rem;
    }

    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .stat-circle .stat-number {
        font-size: 1.5rem;
    }

    .stat-circle .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .restaurant-hero h1 {
        font-size: 1.8rem;
    }

    .restaurant-hero .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .restaurant-hero .hero-badge i {
        font-size: 1rem;
    }

    .restaurant-hero .stat-number {
        font-size: 1.8rem;
    }

    .restaurant-hero .stat-label {
        font-size: 0.8rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .feature-list li {
        font-size: 0.8rem;
    }

    .app-card {
        padding: 1rem;
    }

    .app-card h3 {
        font-size: 1.2rem;
    }

    .app-card p {
        font-size: 0.8rem;
    }

    .app-features li {
        font-size: 0.75rem;
    }

    .advanced-feature {
        padding: 1rem;
    }

    .advanced-feature h3 {
        font-size: 1rem;
    }

    .advanced-feature p {
        font-size: 0.8rem;
    }

    .benefits-text h2 {
        font-size: 1.8rem;
    }

    .benefits-text p {
        font-size: 0.9rem;
    }

    .benefit-item {
        padding: 0.75rem;
    }

    .benefit-item h4 {
        font-size: 0.9rem;
    }

    .benefit-item p {
        font-size: 0.75rem;
    }
}