﻿:root {
    --primary: #47A4A0;
    --dark: #223849;
    --light: #ffffff;
    --gray: #DFE8E5;
    --accent-light: #DFE8E5;
    --primary-light: rgba(71, 164, 160, 0.1);
    --primary-dark: #3a8a87;
    --border: #c9d6d2;
    --shadow: 0 10px 30px rgba(34, 56, 73, 0.08);
    --gradient-primary: linear-gradient(135deg, #47A4A0, #5bb3af);
    --gradient-dark: linear-gradient(135deg, #223849, #2d4555);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    line-height: 1.7;
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(71, 164, 160, 0.3);
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(71, 164, 160, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(223, 232, 229, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin-bottom: 40px;
}

.hero-heading {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.hero-subheading {
    text-align: center;
    margin-bottom: 30px;
}

.hero .btn {
    margin: 0 auto;
    display: inline-block;
}

/* Features Grid */
.features {
    padding: 100px 0;
    background: var(--gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-desc {
    color: #666;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.steps-container::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f0f0f0;
    z-index: -1;
}

.step-item {
    text-align: center;
    width: 30%;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    font-weight: 700;
}

.step-title {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--gray), var(--light));
    overflow: hidden;
    position: relative;
}

.screenshots .section-title {
    margin-bottom: 50px;
}

.screenshots-features {
    margin-bottom: 50px;
}

.feature-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-tab {
    padding: 10px 20px;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-tab.active,
.feature-tab:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.feature-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.feature-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.feature-content.active {
    display: block;
}

.feature-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-content p {
    color: var(--dark);
    opacity: 0.8;
    font-size: 16px;
}

.swiper-slide {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.swiper-slide:hover {
    transform: translateY(-5px);
}

.zoom-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.swiper-slide:hover .zoom-indicator {
    opacity: 1;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 14px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.swiper-slide:hover .slide-caption {
    transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.screenshots-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.screenshots-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.screenshots-cta p {
    margin-bottom: 25px;
    color: var(--dark);
    opacity: 0.8;
}

/* Screenshot Modal/Lightbox */
.screenshot-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-close {
    color: #f1f1f1;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
}

.modal-image-container {
    width: 100%;
    height: calc(100% - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: move;
}

.modal-caption {
    margin: 15px 0;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.modal-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.modal-nav-btn,
.modal-zoom-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-nav-btn:hover,
.modal-zoom-btn:hover {
    background: var(--primary);
}

.modal-nav-btn {
    font-size: 20px;
}

.modal-helper-text {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    opacity: 0.7;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2050;
}

.modal-helper-text p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-helper-text i {
    font-size: 14px;
    margin-right: 3px;
}

.modal-image-container:hover .modal-helper-text {
    opacity: 0;
}

.helper-text-desktop {
    display: none;
}

.helper-text-mobile {
    display: block;
}

@media (min-width: 768px) {
    .helper-text-desktop {
        display: block;
    }

    .helper-text-mobile {
        display: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .feature-tabs {
        flex-direction: column;
        align-items: center;
    }

    .feature-tab {
        width: 80%;
    }
}

/* Add-on Features */
.add-ons {
    padding: 100px 0;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.add-on-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.add-on-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.add-on-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.add-on-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.add-on-desc {
    font-size: 14px;
    color: #666;
}

/* Pricing Plans */
.pricing {
    padding: 100px 0;
    background: var(--gray);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 50px;
}

.toggle-label {
    font-weight: 500;
    margin: 0 15px;
    color: #666;
}

.active-period {
    color: var(--dark);
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-plan {
    background: var(--light);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-plan.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(71, 164, 160, 0.02), rgba(223, 232, 229, 0.1));
    position: relative;
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 24px;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
}

.plan-period {
    font-size: 14px;
    color: #666;
}

.pricing-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 16px;
}

.feature-text {
    font-size: 15px;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 56, 73, 0.15);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-info h4 {
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #666;
    font-size: 14px;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-text {
    margin-bottom: 40px;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.cta-icon {
    font-size: 24px;
    margin-right: 10px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    /* Ensures default text color is light for inheriting elements */
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer logo styling for dark background */
.footer-about img {
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.footer-about img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(71, 164, 160, 0.3);
}

.footer-about p {
    /* Added to style the paragraph in .footer-about */
    color: var(--light);
    opacity: 0.9;
    /* Optional: for softer white */
    font-size: 15px;
    /* Adjusted from the h3 style that was here */
    line-height: 1.7;
}

/* Removed .footer-about h3 as it's not used in the HTML for that section */

.footer-links h4 {
    font-size: 18px;
    /* Standard size for footer headings */
    margin-bottom: 15px;
    /* Standard margin */
    color: var(--light);
    /* Explicitly set heading color */
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    /* Ensure no bullets */
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--accent-light);
    /* Light color for links (e.g., #DFE8E5) */
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: var(--primary);
    /* Keep hover effect */
}

/* Styles for spans within footer-links if needed, though inline styles exist */
.footer-links ul li span {
    font-size: 15px;
    /* Match link font size */
    /* Color is set inline in HTML, e.g., #e0e0e0, #b0b0b0 */
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    /* Add padding if not already there */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Add border if not already there */
    margin-top: 30px;
    /* Add margin if not already there */
}

.footer-bottom p {
    color: var(--light);
    /* Explicitly set text color */
    opacity: 0.8;
    /* Optional: for softer white */
    font-size: 14px;
    /* Standard copyright text size */
    margin: 0;
}

/* New License Comparison Styling */
.subtitle {
    margin-top: 5px;
    font-size: 1rem;
    color: var(--dark);
}

.license-comparison {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.license-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--primary);
    color: #000;
}

.license-feature-header {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.license-plan-header {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.license-plan-header.featured {
    background: var(--dark);
    color: #fff;
}

.license-plan-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.license-price {
    font-size: 1.8rem;
    font-weight: 700;
}

.license-price span {
    font-weight: 700;
    color: #ffffff;
}

.license-features {
    background: #fff;
}

.license-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.license-feature {
    padding: 18px 20px;
    font-size: 1rem;
    border-right: 1px solid #eee;
}

.feature-note {
    font-size: 0.85rem;
    color: var(--dark);
    font-style: italic;
}

.license-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #eee;
}

.license-availability .fas.fa-check {
    color: #2ecc71;
    font-size: 1.2rem;
}

.license-availability .fas.fa-times {
    color: #e74c3c;
    font-size: 1.2rem;
}

.license-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px;
    background: #f9f9f9;
}

.license-btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {

    .license-header,
    .license-row {
        grid-template-columns: 3fr 2fr 2fr;
    }

    .license-feature,
    .license-feature-header {
        font-size: 0.9rem;
    }

    .license-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .license-header {
        grid-template-columns: 1fr;
    }

    .license-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .license-feature-header,
    .license-plan-header {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .license-cta {
        grid-template-columns: 1fr;
    }
}

/* Landing Page Showcase Section */
.landing-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray) 0%, #ffffff 50%, #f0f6f5 100%);
    position: relative;
    overflow: hidden;
}

.landing-showcase::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.landing-showcase::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.landing-showcase .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Header Section */
.showcase-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.showcase-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.showcase-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

.showcase-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Filter Tabs */
.showcase-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.2);
}

/* Stats Section */
.showcase-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.showcase-stats:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-dark);
}

/* Enhanced Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    min-height: 600px;
    transition: all 0.3s ease;
}

.showcase-item {
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.showcase-item.featured {
    transform: scale(1.02);
}

.showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.showcase-item:hover .showcase-card {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.showcase-preview {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.showcase-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover .showcase-preview img {
    transform: scale(1.1);
}

/* Enhanced Overlay */
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.9) 0%, rgba(44, 44, 44, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
}

.preview-btn,
.quick-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: var(--dark);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.preview-btn:hover,
.quick-view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Badges */
.showcase-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.showcase-badge.popular {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    animation: pulseGlow 2s ease-in-out infinite;
}

.showcase-badge.new {
    background: var(--gradient-primary);
}

.showcase-badge.trending {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
}

/* Rating System */
.showcase-rating {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 12px;
}

.rating-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}

/* Enhanced Info Section */
.showcase-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.template-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    animation: slideInFromLeft 0.6s ease 0.3s both;
}

.template-type,
.template-difficulty {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

.template-type {
    background: #e3f2fd;
    color: #1976d2;
}

.template-difficulty {
    background: #f3e5f5;
    color: #7b1fa2;
}

.showcase-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
    animation: slideInFromLeft 0.6s ease 0.4s both;
}

.showcase-item:hover .showcase-info h3 {
    color: var(--primary);
}

.showcase-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    animation: slideInFromLeft 0.6s ease 0.5s both;
}

/* Enhanced Feature Tags */
.showcase-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    animation: slideInFromLeft 0.6s ease 0.6s both;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag.animated {
    background: #fff3e0;
    color: #e65100;
}

.feature-tag.modern {
    background: #e8f5e8;
    color: #2e7d32;
}

.feature-tag.responsive {
    background: #e3f2fd;
    color: #1976d2;
}

.feature-tag.professional {
    background: #f3e5f5;
    color: #7b1fa2;
}

.feature-tag.clean {
    background: #e0f2f1;
    color: #00695c;
}

.feature-tag.trusted {
    background: #fff8e1;
    color: #f57c00;
}

.feature-tag.creative {
    background: #fce4ec;
    color: #c2185b;
}

.feature-tag.bold {
    background: #ffebee;
    color: #d32f2f;
}

.feature-tag.artistic {
    background: #f1f8e9;
    color: #558b2f;
}

.feature-tag.minimal {
    background: #fafafa;
    color: #424242;
}

.feature-tag.elegant {
    background: #f8bbd9;
    color: #6a1b9a;
}

.feature-tag.focused {
    background: #e1f5fe;
    color: #0277bd;
}

.feature-tag.premium {
    background: #fff9c4;
    color: #f9a825;
}

.feature-tag.luxury {
    background: #ffd54f;
    color: #e65100;
}

.feature-tag.exclusive {
    background: #ffcdd2;
    color: #d32f2f;
}

.feature-tag.quickservice {
    background: #e8f5e8;
    color: #388e3c;
}

.feature-tag.foodtech {
    background: #fff3e0;
    color: #f57c00;
}

.feature-tag.optimized {
    background: #e3f2fd;
    color: #1976d2;
}

/* CTA Section */
.showcase-cta {
    margin-top: 80px;
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    animation: slideInFromBottom 1s ease both;
}

.showcase-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-primary {
    background: white;
    color: var(--primary);
}

.cta-primary:hover {
    background: #f5f5f5;
    color: var(--dark);
}

.cta-secondary {
    border-color: white;
    color: white;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary);
}

.cta-visual {
    flex: 0 0 200px;
    position: relative;
    z-index: 2;
}

.design-elements {
    position: relative;
    width: 200px;
    height: 150px;
}

.element {
    position: absolute;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
    animation: float 3s ease-in-out infinite;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
    animation: float 3s ease-in-out infinite 1s;
}

.element-3 {
    width: 100px;
    height: 50px;
    bottom: 0;
    left: 50px;
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive styles for Landing Showcase */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .showcase-title {
        font-size: 42px;
    }

    .showcase-stats {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .showcase-title {
        font-size: 36px;
    }

    .showcase-subtitle {
        font-size: 16px;
    }

    .showcase-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .showcase-cta {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px;
    }

    .cta-visual {
        flex: none;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .landing-showcase {
        padding: 80px 0;
    }

    .showcase-header {
        margin-bottom: 60px;
    }

    .showcase-title {
        font-size: 28px;
    }

    .showcase-subtitle {
        font-size: 15px;
    }

    .showcase-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .showcase-preview {
        height: 200px;
    }

    .showcase-stats {
        flex-direction: column;
        gap: 20px;
    }

    .showcase-cta {
        margin-top: 60px;
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .overlay-content {
        flex-direction: row;
        gap: 10px;
    }

    .preview-btn,
    .quick-view-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .showcase-title {
        font-size: 24px;
    }

    .showcase-info {
        padding: 20px;
    }

    .showcase-info h3 {
        font-size: 18px;
    }

    .showcase-info p {
        font-size: 14px;
    }

    .showcase-features {
        gap: 5px;
    }

    .feature-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-heading {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .steps-container::before {
        display: none;
    }

    .step-item {
        width: 100%;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-heading {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-buttons {
        display: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: var(--primary);
}

input:checked+.toggle-slider:before {
    transform: translateX(30px);
}

/* Enhanced Modern Device Mockup */
.device-mockup-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    perspective: 1000px;
}

.device-frame {
    position: relative;
    background: linear-gradient(145deg, var(--gray), #ffffff);
    border-radius: 25px;
    padding: 8px;
    box-shadow:
        0 25px 50px rgba(34, 56, 73, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(34, 56, 73, 0.1);
    transform: rotateX(5deg) rotateY(-5deg);
    transition: all 0.6s ease;
    animation: deviceFloat 4s ease-in-out infinite;
}

.device-frame:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.02);
    box-shadow: 0 35px 70px rgba(34, 56, 73, 0.2);
}

.device-screen {
    background: var(--dark);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

/* Modern Header Design */
.pos-header-modern {
    background: var(--gradient-dark);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.pos-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff7a00, #ff9a40);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 255, 100, 0.2);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid rgba(0, 255, 100, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff64;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.table-info {
    font-weight: 600;
    font-size: 14px;
}

.order-id {
    font-size: 12px;
    opacity: 0.8;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.datetime-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.current-time {
    font-weight: 600;
    font-size: 14px;
}

.current-date {
    font-size: 12px;
    opacity: 0.8;
}

.server-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff7a00, #ff9a40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

/* Main POS Interface */
.pos-interface {
    display: grid;
    grid-template-columns: 280px 1fr 350px;
    gap: 0;
    flex: 1;
    background: #f8fafc;
}

/* Enhanced Sidebar */
.sidebar-modern {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box {
    position: relative;
    margin-top: 15px;
}

.search-box input {
    width: 100%;
    padding: 10px 35px 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.category-grid {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow-y: auto;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    border: 1px solid #e2e8f0;
}

.category-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.category-card.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.category-card.special {
    background: linear-gradient(135deg, #ff7a00, #ff9a40);
    color: white;
    position: relative;
    overflow: hidden;
}

.special-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 4s linear infinite;
}

.category-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.category-name {
    flex: 1;
    font-weight: 500;
}

.item-badge {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-card.active .item-badge {
    background: rgba(255, 255, 255, 0.2);
}

.active-indicator {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: white;
    border-radius: 0 4px 4px 0;
}

/* Enhanced Menu Grid */
.menu-grid {
    background: white;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e2e8f0;
}

.section-header {
    padding: 20px 25px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
}

.view-options {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.items-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    flex: 1;
    overflow-y: auto;
}

.menu-item-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.menu-item-card.selected {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: linear-gradient(135deg, #f8faff, #ffffff);
}

.selection-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: selectionGlow 2s ease-in-out infinite;
}

.item-image {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.item-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.4;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
}

.add-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.add-btn.added {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.popularity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff7a00, #ff9a40);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.healthy-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
}

/* Enhanced Order Panel */
.order-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.order-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.order-items-list {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.order-item-modern:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 8px;
}

.qty-btn {
    width: 25px;
    height: 25px;
    border: none;
    background: #667eea;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #5a67d8;
    transform: scale(1.1);
}

.qty {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}

.item-price {
    font-size: 12px;
    color: #64748b;
}

.item-total {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
}

.remove-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(223, 232, 229, 0.3);
    color: var(--dark);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.remove-btn:hover {
    background: rgba(71, 164, 160, 0.1);
    color: var(--primary);
    transform: scale(1.1);
}

.order-summary-modern {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-row.discount {
    color: #10b981;
}

.summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 15px 0;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: #334155;
    padding-top: 10px;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 12px;
    margin-bottom: 15px;
}

.action-btn {
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-btn.secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.action-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
}

.action-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.quick-btn {
    padding: 10px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.quick-btn:hover {
    background: #f8fafc;
    border-color: #667eea;
    color: #667eea;
}

/* Device Decorative Elements */
.device-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg,
            rgba(102, 126, 234, 0.1),
            rgba(118, 75, 162, 0.1),
            rgba(255, 122, 0, 0.1));
    border-radius: 35px;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

.screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    border-radius: 18px 18px 0 0;
    pointer-events: none;
}

/* Activity Indicators */
.activity-indicators {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.activity-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    animation: activityPulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes deviceFloat {

    0%,
    100% {
        transform: rotateX(5deg) rotateY(-5deg) translateY(0px);
    }

    50% {
        transform: rotateX(5deg) rotateY(-5deg) translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes selectionGlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes activityPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pos-interface {
        grid-template-columns: 250px 1fr 300px;
    }
}

@media (max-width: 768px) {
    .device-frame {
        transform: none;
        margin: 0 -10px;
    }

    .pos-interface {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .sidebar-modern,
    .order-panel {
        max-height: 300px;
        overflow-y: auto;
    }
}

/* Legacy Styles (keeping for compatibility) */

.order-summary {
    background: var(--light);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.order-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--border);
    gap: 10px;
}

.order-item-quantity {
    background: var(--primary);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.order-item-price {
    color: var(--primary);
    font-weight: 600;
}

.order-summary-total {
    background: var(--gray);
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
}

.total-row.final {
    font-size: 18px;
    font-weight: 600;
    border-top: 2px solid var(--border);
    padding-top: 10px;
    margin-top: 10px;
}

.order-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.order-btn {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
}

.order-btn.hold {
    background: var(--gray);
    color: var(--dark);
}

.order-btn.discount {
    background: #FFE4CC;
    color: var(--primary);
}

.order-btn.pay {
    background: var(--primary);
    color: white;
}

/* Enhanced Animated POS UI */
.pos-mockup {
    width: 100%;
    max-width: 600px;
    height: 380px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.pos-header {
    height: 50px;
    background: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    color: white;
    font-size: 14px;
}

.pos-header-left {
    display: flex;
    align-items: center;
}

.pos-logo {
    font-weight: 700;
    color: #ff7a00;
    margin-right: 15px;
}

.pos-time {
    color: #ecf0f1;
    font-size: 12px;
}

.pos-header-right {
    display: flex;
    align-items: center;
}

.pos-user {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    margin-left: 10px;
}

.pos-main {
    display: flex;
    height: calc(100% - 50px);
}

.pos-menu {
    width: 30%;
    background: #34495e;
    padding: 10px;
    overflow-y: auto;
}

.pos-category {
    background: #3498db;
    color: white;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.pos-category:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.pos-category:nth-child(2) {
    background: #e74c3c;
}

.pos-category:nth-child(3) {
    background: #2ecc71;
}

.pos-category:nth-child(4) {
    background: #f39c12;
}

.pos-category:nth-child(5) {
    background: #9b59b6;
}

.pos-category-active {
    position: relative;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.pos-category-active::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 5px;
    background: white;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pos-order {
    width: 70%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pos-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    overflow-y: auto;
    max-height: 220px;
}

.pos-item {
    background: white;
    border-radius: 8px;
    padding: 12px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pos-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.pos-item-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s ease;
}

.pos-item-icon i {
    font-size: 20px;
    color: #ff7a00;
    transition: all 0.3s ease;
}

.pos-item:hover .pos-item-icon {
    background-color: #ff7a00;
    transform: scale(1.1);
}

.pos-item:hover .pos-item-icon i {
    color: white;
    animation: wiggle 0.6s ease;
}

.pos-item-selected .pos-item-icon {
    background-color: #ff7a00;
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
}

.pos-item-selected .pos-item-icon i {
    color: white;
    animation: pulse-icon 2s infinite;
}

/* Enhanced icon effects */
.pos-item-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    top: -50%;
    left: -50%;
    transition: all 0.4s ease;
}

.pos-item:hover .pos-item-icon::before {
    top: -30%;
    left: -30%;
}

.pos-item-selected {
    border: 2px solid #ff7a00;
    animation: pulse 3s infinite;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.2);
}

.pos-item-selected .pos-item-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    top: 25%;
    right: 25%;
    opacity: 0;
    filter: blur(1px);
    animation: sparkle 2s infinite;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 20px;
    bottom: 20px;
    left: 5%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    filter: blur(15px);
    z-index: -1;
    animation: shadow 3s ease-in-out infinite;
}

@keyframes shadow {
    0% {
        transform: scale(0.95);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.4;
    }
}

@keyframes shadow {
    0% {
        opacity: 0.6;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* Source Code & Hosting Section */
.source-hosting {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.source-hosting::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -400px;
    right: -400px;
    border-radius: 50%;
    animation: floating 20s infinite ease-in-out;
}

.source-hosting::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -300px;
    left: -300px;
    border-radius: 50%;
    animation: floating 15s infinite ease-in-out reverse;
}

/* Title Badge */
.title-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.title-badge i {
    font-size: 16px;
    animation: glow 2s infinite alternate;
}

/* Premium Card Styles */
.premium-card {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, #ff7a00, #3b82f6, #10b981);
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
}

.hosting-card {
    background: linear-gradient(145deg, #ffffff, #f0f9ff);
}

.affordable-card {
    background: linear-gradient(145deg, #ffffff, #f0fdf4);
}

/* Card Glow Effects */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 122, 0, 0.1), transparent);
    animation: rotate 8s linear infinite;
    z-index: -1;
}

.hosting-glow {
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
}

.affordable-glow {
    background: conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.1), transparent);
}

/* Header Content Improvements */
.header-content {
    flex: 1;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    animation: pulse 2s infinite;
}

.hosting-badge-style {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.affordable-badge-style {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Icon Pulse Effects */
.icon-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 122, 0, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.hosting-pulse {
    border-color: rgba(59, 130, 246, 0.3);
}

.affordable-pulse {
    border-color: rgba(16, 185, 129, 0.3);
}

/* Enhanced Benefit Items */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 16px;
}

.hosting-card .benefit-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.affordable-card .benefit-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.benefit-content small {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}

/* Stats Sections */
.code-stats,
.hosting-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ff7a00;
    margin-bottom: 5px;
}

.hosting-card .stat-number {
    color: #3b82f6;
}

.affordable-card .stat-number {
    color: #10b981;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Enhanced Code Editor */
.code-editor {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.editor-tabs {
    display: flex;
    background: #21252b;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #2c323c;
    color: #abb2bf;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid #181a1f;
}

.tab.active {
    background: #282c34;
    color: #61afef;
}

.tab i {
    font-size: 14px;
}

.code-window {
    background: #282c34;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-3deg);
    transition: all 0.5s ease;
}

.premium-card:hover .code-window {
    transform: perspective(1000px) rotateY(-1deg) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.code-header {
    background: #21252b;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #181a1f;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.header-actions {
    display: flex;
    gap: 10px;
    color: #abb2bf;
}

.header-actions i {
    font-size: 12px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.header-actions i:hover {
    opacity: 1;
}

.code-content {
    display: flex;
    max-height: 280px;
    overflow: hidden;
}

.line-numbers {
    background: #21252b;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: #5c6370;
    border-right: 1px solid #181a1f;
    user-select: none;
}

.code-text {
    flex: 1;
    padding: 15px;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #abb2bf;
    overflow-x: auto;
}

.code-comment {
    color: #5c6370;
    font-style: italic;
}

.floating-elements {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 10px;
}

.code-badge {
    background: rgba(255, 122, 0, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    animation: float 3s infinite ease-in-out;
}

.code-badge:nth-child(2) {
    background: rgba(59, 130, 246, 0.9);
    animation-delay: -1.5s;
}

/* Cloud Servers Illustration */
.cloud-servers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 30px 20px;
}

.cloud-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cloud-icon {
    position: relative;
    font-size: 48px;
    color: #3b82f6;
}

.cloud-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.server-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.server-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.server-option.active {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.server-option i {
    font-size: 20px;
    color: #64748b;
}

.server-option.active i {
    color: #3b82f6;
}

.server-option span {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.server-option.active span {
    color: #3b82f6;
}

.data-flow {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.data-packet {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: data-flow 2s infinite ease-in-out;
}

.data-packet:nth-child(2) {
    animation-delay: -0.7s;
}

.data-packet:nth-child(3) {
    animation-delay: -1.4s;
}

.your-server {
    display: flex;
    justify-content: center;
}

.server-rack.modern {
    background: linear-gradient(145deg, #1e293b, #334155);
    border: 2px solid #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    padding: 20px;
    border-radius: 12px;
}

.server-unit .server-display {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.display-line {
    height: 4px;
    background: #64748b;
    border-radius: 2px;
    flex: 1;
    transition: all 0.3s ease;
}

.display-line.active {
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.light-dot.power-on {
    background: #10b981;
    animation: steady-glow 2s infinite ease-in-out;
}

.light-dot.activity {
    background: #f59e0b;
    animation: quick-blink 1s infinite;
}

.light-dot.network {
    background: #3b82f6;
    animation: network-pulse 1.5s infinite ease-in-out;
}

.server-label-modern {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.2);
    padding: 6px 10px;
    border-radius: 6px;
    color: #e2e8f0;
    font-size: 11px;
    font-weight: 600;
}

.hosting-badges {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.hosting-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ROI Comparison */
.roi-comparison {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.comparison-title {
    text-align: center;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 16px;
}

.comparison-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.comparison-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-item.expensive {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.comparison-item.affordable {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.comparison-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #64748b;
}

.comparison-price {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.expensive .comparison-price {
    color: #ef4444;
}

.affordable .comparison-price {
    color: #10b981;
}

.comparison-time {
    font-size: 11px;
    color: #64748b;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

/* Money Visual */
.money-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.money-stack,
.coin-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bill,
.coin {
    font-size: 32px;
    animation: money-float 3s infinite ease-in-out;
}

.bill:nth-child(2) {
    animation-delay: -1s;
}

.bill:nth-child(3) {
    animation-delay: -2s;
}

.coin:nth-child(2) {
    animation-delay: -1.5s;
}

.money-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-align: center;
}

.arrow-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #10b981;
    font-weight: 600;
}

.arrow-right i {
    font-size: 24px;
    animation: arrow-bounce 2s infinite;
}

.arrow-right span {
    font-size: 12px;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    color: #10b981;
}

/* Value Metrics */
.value-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 20px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

/* Guarantee Seal */
.guarantee-seal {
    display: flex;
    justify-content: center;
}

.seal-content {
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(34, 56, 73, 0.2);
    animation: seal-rotation 10s infinite linear;
}

.seal-content i {
    font-size: 16px;
    margin-bottom: 2px;
}

/* Animations */
@keyframes floating {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes data-flow {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(40px);
        opacity: 0;
    }
}

@keyframes steady-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
    }
}

@keyframes quick-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes network-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes money-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-5px) rotate(2deg);
    }

    66% {
        transform: translateY(-2px) rotate(-1deg);
    }
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(5px);
    }
}

@keyframes seal-rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.source-hosting-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
}

.source-hosting-item {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.source-hosting-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.source-hosting-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.source-hosting-header {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.source-hosting-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    position: relative;
    flex-shrink: 0;
}

.source-hosting-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: all 0.5s ease;
}

.source-hosting-item:hover .source-hosting-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(71, 164, 160, 0.3);
}

.source-hosting-item:hover .source-hosting-icon i {
    color: var(--light);
    transform: rotate(-10deg);
}

.source-hosting-content h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

.source-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Illustration Styles */
.source-hosting-illustration {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

/* Style for reversed layout (illustration on left, content on right) */
.source-hosting-item-reversed {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.source-hosting-item-reversed .source-hosting-content,
.source-hosting-item-reversed .source-hosting-illustration {
    direction: ltr;
    /* Reset direction for the content inside */
}

@media (max-width: 1200px) {

    .source-hosting-item,
    .source-hosting-item-reversed {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .source-hosting-item-reversed .source-hosting-content {
        order: 1;
    }

    .source-hosting-item-reversed .source-hosting-illustration {
        order: 2;
    }
}

@media (max-width: 768px) {
    .source-hosting {
        padding: 80px 0;
    }

    .source-hosting-item {
        min-height: auto;
    }

    .source-hosting-content {
        padding: 30px 20px;
    }

    .source-hosting-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .source-hosting-content h2 {
        font-size: 24px;
    }

    .code-stats,
    .hosting-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .comparison-items {
        flex-direction: column;
        gap: 15px;
    }

    .value-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .money-visual {
        flex-direction: column;
        gap: 20px;
    }

    .arrow-right {
        transform: rotate(90deg);
    }

    .server-options {
        grid-template-columns: repeat(4, 1fr);
    }

    .code-editor {
        max-width: 100%;
    }

    .tab {
        padding: 6px 8px;
        font-size: 11px;
    }

    .floating-elements {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }
}

/* Legacy styles cleaned up - new styles are above */

/* Server Illustration */
.server-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.server-rack {
    width: 180px;
    background: #2c3e50;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    padding: 10px;
    position: relative;
    transform: perspective(800px) rotateY(5deg);
    transition: all 0.4s ease;
}

.source-hosting-item:hover .server-rack {
    transform: perspective(800px) rotateY(2deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.server-unit {
    background: #34495e;
    margin-bottom: 10px;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    border: 1px solid #2c3e50;
    position: relative;
}

.server-unit:last-child {
    margin-bottom: 0;
}

.server-unit.active {
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.3);
}

.server-lights {
    display: flex;
    margin-bottom: 8px;
    gap: 8px;
}

.light-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7f8c8d;
}

.light-dot.on {
    background: #2ecc71;
}

.light-dot.blinking {
    background: #e74c3c;
    animation: blink 2s infinite;
}

.light-dot.blinking-fast {
    background: #f39c12;
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.server-slots {
    display: flex;
    gap: 5px;
}

.server-slot {
    height: 6px;
    background: #2c3e50;
    border-radius: 2px;
    flex: 1;
}

.server-label {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 9px;
    color: #ecf0f1;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 5px;
    border-radius: 2px;
}

.connection-lines {
    width: 100%;
    height: 40px;
    background-image:
        linear-gradient(to right, transparent 40%, var(--primary) 40%, var(--primary) 60%, transparent 60%),
        linear-gradient(to bottom, transparent 45%, var(--primary) 45%, var(--primary) 55%, transparent 55%);
    background-size: 100% 100%, 20px 100%;
    opacity: 0.2;
    margin-top: 20px;
}

.source-hosting-wrapper:last-child {
    margin-bottom: 0;
}

.source-hosting-wrapper .source-hosting-item {
    width: 100%;
    max-width: 100%;
}

/* Add some more visual separation between the sections */
.source-hosting-wrapper:first-child {
    position: relative;
}

.source-hosting-wrapper:first-child:after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, rgba(255, 122, 0, 0), var(--primary), rgba(255, 122, 0, 0));
}

/* Style for reversed layout (illustration on left, content on right) */
.source-hosting-item-reversed {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.source-hosting-item-reversed .source-hosting-content,
.source-hosting-item-reversed .source-hosting-illustration {
    direction: ltr;
    /* Reset direction for the content inside */
}

@media (max-width: 1200px) {
    .source-hosting-item-reversed {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .source-hosting-item-reversed .source-hosting-content {
        order: 1;
    }

    .source-hosting-item-reversed .source-hosting-illustration {
        order: 2;
    }
}

/* Affordability Section Styles */
.affordability-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    gap: 15px;
}

.affordability-img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.affordability-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .affordability-illustration {
        padding: 15px;
        gap: 10px;
    }

    .affordability-img {
        max-width: 250px;
    }
}

/* Additional Showcase Animations and Effects */
.showcase-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.showcase-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item.featured .showcase-card {
    border: 2px solid rgba(255, 122, 0, 0.3);
    position: relative;
}

.showcase-item.featured .showcase-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), #ff9500, var(--primary));
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Feature Tag Hover Effects */
.feature-tag {
    transition: all 0.3s ease;
    cursor: default;
}

.feature-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Template Meta Styling */
.template-meta {
    animation: slideInFromLeft 0.6s ease 0.3s both;
}

.showcase-info h3 {
    animation: slideInFromLeft 0.6s ease 0.4s both;
}

.showcase-info p {
    animation: slideInFromLeft 0.6s ease 0.5s both;
}

.showcase-features {
    animation: slideInFromLeft 0.6s ease 0.6s both;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading States */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

.loading .quick-view-btn {
    background: #f0f0f0;
    color: #999;
}

/* Notification Styles */
.notification {
    font-family: 'Poppins', sans-serif;
    border-left: 4px solid var(--primary);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    color: var(--primary);
}

/* Smooth Filter Transitions */
.showcase-grid {
    min-height: 600px;
    transition: all 0.3s ease;
}

/* Enhanced CTA Animations */
.showcase-cta {
    animation: slideInFromBottom 1s ease both;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Effect for Popular Badge */
.showcase-badge.popular {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.8), 0 0 30px rgba(255, 107, 107, 0.4);
    }
}

/* Enhanced Hover States */
.filter-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.2);
}

.preview-btn:hover,
.quick-view-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Focus States for Accessibility */
.filter-btn:focus,
.preview-btn:focus,
.quick-view-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Loading Spinner Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Creative Background Elements with New Color Palette */
.section-decorative::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(71, 164, 160, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(223, 232, 229, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Enhanced Button Animations */
.btn-primary-glow {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary-glow::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary-glow:hover::before {
    transform: rotate(45deg) translateX(100%);
}

/* Section Divider with New Colors */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 40px 0;
    opacity: 0.3;
}

/* Accent Card Shadows */
.card-accent-shadow {
    box-shadow:
        0 10px 30px rgba(71, 164, 160, 0.1),
        0 1px 8px rgba(34, 56, 73, 0.05);
    transition: box-shadow 0.3s ease;
}

.card-accent-shadow:hover {
    box-shadow:
        0 20px 40px rgba(71, 164, 160, 0.15),
        0 5px 15px rgba(34, 56, 73, 0.1);
}

/* Beautiful Border Animations with New Color Palette */
.accent-border-animation {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        var(--gradient-primary) border-box;
    border-radius: 10px;
}

/* Floating Elements Background */
.floating-elements::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(71, 164, 160, 0.1);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(223, 232, 229, 0.3);
    border-radius: 50%;
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Enhanced Section Titles */
.section-title-enhanced h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Modern Cards with New Theme */
.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 164, 160, 0.1);
    border-radius: 15px;
    box-shadow:
        0 8px 32px rgba(34, 56, 73, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 16px 64px rgba(34, 56, 73, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(71, 164, 160, 0.2);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    /* Ensures default text color is light for inheriting elements */
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer logo styling for dark background */
.footer-about img {
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.footer-about img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(71, 164, 160, 0.3);
}

.footer-about p {
    /* Added to style the paragraph in .footer-about */
    color: var(--light);
    opacity: 0.9;
    /* Optional: for softer white */
    font-size: 15px;
    /* Adjusted from the h3 style that was here */
    line-height: 1.7;
}

/* Removed .footer-about h3 as it's not used in the HTML for that section */

.footer-links h4 {
    font-size: 18px;
    /* Standard size for footer headings */
    margin-bottom: 15px;
    /* Standard margin */
    color: var(--light);
    /* Explicitly set heading color */
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    /* Ensure no bullets */
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--accent-light);
    /* Light color for links (e.g., #DFE8E5) */
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: var(--primary);
    /* Keep hover effect */
}

/* Styles for spans within footer-links if needed, though inline styles exist */
.footer-links ul li span {
    font-size: 15px;
    /* Match link font size */
    /* Color is set inline in HTML, e.g., #e0e0e0, #b0b0b0 */
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    /* Add padding if not already there */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Add border if not already there */
    margin-top: 30px;
    /* Add margin if not already there */
}

.footer-bottom p {
    color: var(--light);
    /* Explicitly set text color */
    opacity: 0.8;
    /* Optional: for softer white */
    font-size: 14px;
    /* Standard copyright text size */
    margin: 0;
}

/* New License Comparison Styling */
.subtitle {
    margin-top: 5px;
    font-size: 1rem;
    color: var(--dark);
}

.license-comparison {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.license-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--primary);
    color: #000;
}

.license-feature-header {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.license-plan-header {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.license-plan-header.featured {
    background: var(--dark);
    color: #fff;
}

.license-plan-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.license-price {
    font-size: 1.8rem;
    font-weight: 700;
}

.license-price span {
    font-weight: 700;
    color: #ffffff;
}

.license-features {
    background: #fff;
}

.license-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.license-feature {
    padding: 18px 20px;
    font-size: 1rem;
    border-right: 1px solid #eee;
}

.feature-note {
    font-size: 0.85rem;
    color: var(--dark);
    font-style: italic;
}

.license-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #eee;
}

.license-availability .fas.fa-check {
    color: #2ecc71;
    font-size: 1.2rem;
}

.license-availability .fas.fa-times {
    color: #e74c3c;
    font-size: 1.2rem;
}

.license-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px;
    background: #f9f9f9;
}

.license-btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {

    .license-header,
    .license-row {
        grid-template-columns: 3fr 2fr 2fr;
    }

    .license-feature,
    .license-feature-header {
        font-size: 0.9rem;
    }

    .license-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .license-header {
        grid-template-columns: 1fr;
    }

    .license-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .license-feature-header,
    .license-plan-header {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .license-cta {
        grid-template-columns: 1fr;
    }
}

/* Landing Page Showcase Section */
.landing-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray) 0%, #ffffff 50%, #f0f6f5 100%);
    position: relative;
    overflow: hidden;
}

.landing-showcase::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.landing-showcase::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.landing-showcase .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Header Section */
.showcase-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.showcase-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.showcase-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

.showcase-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Filter Tabs */
.showcase-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.2);
}

/* Stats Section */
.showcase-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.showcase-stats:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-dark);
}

/* Enhanced Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    min-height: 600px;
    transition: all 0.3s ease;
}

.showcase-item {
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.showcase-item.featured {
    transform: scale(1.02);
}

.showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.showcase-item:hover .showcase-card {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.showcase-preview {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.showcase-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover .showcase-preview img {
    transform: scale(1.1);
}

/* Enhanced Overlay */
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.9) 0%, rgba(44, 44, 44, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
}

.preview-btn,
.quick-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: var(--dark);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.preview-btn:hover,
.quick-view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Badges */
.showcase-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.showcase-badge.popular {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    animation: pulseGlow 2s ease-in-out infinite;
}

.showcase-badge.new {
    background: var(--gradient-primary);
}

.showcase-badge.trending {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
}

/* Rating System */
.showcase-rating {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 12px;
}

.rating-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}

/* Enhanced Info Section */
.showcase-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.template-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    animation: slideInFromLeft 0.6s ease 0.3s both;
}

.template-type,
.template-difficulty {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

.template-type {
    background: #e3f2fd;
    color: #1976d2;
}

.template-difficulty {
    background: #f3e5f5;
    color: #7b1fa2;
}

.showcase-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
    animation: slideInFromLeft 0.6s ease 0.4s both;
}

.showcase-item:hover .showcase-info h3 {
    color: var(--primary);
}

.showcase-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    animation: slideInFromLeft 0.6s ease 0.5s both;
}

/* Enhanced Feature Tags */
.showcase-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    animation: slideInFromLeft 0.6s ease 0.6s both;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag.animated {
    background: #fff3e0;
    color: #e65100;
}

.feature-tag.modern {
    background: #e8f5e8;
    color: #2e7d32;
}

.feature-tag.responsive {
    background: #e3f2fd;
    color: #1976d2;
}

.feature-tag.professional {
    background: #f3e5f5;
    color: #7b1fa2;
}

.feature-tag.clean {
    background: #e0f2f1;
    color: #00695c;
}

.feature-tag.trusted {
    background: #fff8e1;
    color: #f57c00;
}

.feature-tag.creative {
    background: #fce4ec;
    color: #c2185b;
}

.feature-tag.bold {
    background: #ffebee;
    color: #d32f2f;
}

.feature-tag.artistic {
    background: #f1f8e9;
    color: #558b2f;
}

.feature-tag.minimal {
    background: #fafafa;
    color: #424242;
}

.feature-tag.elegant {
    background: #f8bbd9;
    color: #6a1b9a;
}

.feature-tag.focused {
    background: #e1f5fe;
    color: #0277bd;
}

.feature-tag.premium {
    background: #fff9c4;
    color: #f9a825;
}

.feature-tag.luxury {
    background: #ffd54f;
    color: #e65100;
}

.feature-tag.exclusive {
    background: #ffcdd2;
    color: #d32f2f;
}

.feature-tag.quickservice {
    background: #e8f5e8;
    color: #388e3c;
}

.feature-tag.foodtech {
    background: #fff3e0;
    color: #f57c00;
}

.feature-tag.optimized {
    background: #e3f2fd;
    color: #1976d2;
}

/* CTA Section */
.showcase-cta {
    margin-top: 80px;
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    animation: slideInFromBottom 1s ease both;
}

.showcase-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-primary {
    background: white;
    color: var(--primary);
}

.cta-primary:hover {
    background: #f5f5f5;
    color: var(--dark);
}

.cta-secondary {
    border-color: white;
    color: white;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary);
}

.cta-visual {
    flex: 0 0 200px;
    position: relative;
    z-index: 2;
}

.design-elements {
    position: relative;
    width: 200px;
    height: 150px;
}

.element {
    position: absolute;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
    animation: float 3s ease-in-out infinite;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
    animation: float 3s ease-in-out infinite 1s;
}

.element-3 {
    width: 100px;
    height: 50px;
    bottom: 0;
    left: 50px;
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive styles for Landing Showcase */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .showcase-title {
        font-size: 42px;
    }

    .showcase-stats {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .showcase-title {
        font-size: 36px;
    }

    .showcase-subtitle {
        font-size: 16px;
    }

    .showcase-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .showcase-cta {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px;
    }

    .cta-visual {
        flex: none;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .landing-showcase {
        padding: 80px 0;
    }

    .showcase-header {
        margin-bottom: 60px;
    }

    .showcase-title {
        font-size: 28px;
    }

    .showcase-subtitle {
        font-size: 15px;
    }

    .showcase-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .showcase-preview {
        height: 200px;
    }

    .showcase-stats {
        flex-direction: column;
        gap: 20px;
    }

    .showcase-cta {
        margin-top: 60px;
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .overlay-content {
        flex-direction: row;
        gap: 10px;
    }

    .preview-btn,
    .quick-view-btn {
        animation-delay: 0.2s;
    }
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: var(--primary);
}

input:checked+.toggle-slider:before {
    transform: translateX(30px);
}

/* Enhanced Modern Device Mockup */
.device-mockup-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    perspective: 1000px;
}

.device-frame {
    position: relative;
    background: linear-gradient(145deg, var(--gray), #ffffff);
    border-radius: 25px;
    padding: 8px;
    box-shadow:
        0 25px 50px rgba(34, 56, 73, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(34, 56, 73, 0.1);
    transform: rotateX(5deg) rotateY(-5deg);
    transition: all 0.6s ease;
}