/* Mail System Landing Page Styles */

/* Hero Section Styles */
.mail-hero-section {
    background: linear-gradient(145deg, #0c1e2c 0%, #1a3a5f 100%);
    padding: 100px 0 50px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.mail-hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pattern-dots.svg');
    opacity: 0.1;
    z-index: 1;
}

.mail-hero-section .container {
    position: relative;
    z-index: 2;
}

.mail-hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.mail-hero-section .hero-title .highlight {
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.mail-hero-section .hero-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.mail-hero-section .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.mail-hero-section .tech-badge {
    display: inline-block;
    background: rgba(52, 152, 219, 0.2);
    border-left: 3px solid #3498db;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mail Features Grid */
.mail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
}

.mail-features .feature-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mail-features .feature-item:hover {
    background: rgba(52, 152, 219, 0.15);
    transform: translateY(-3px);
}

.mail-features .feature-item i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-buttons button {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-buttons .btn-gradient {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.hero-buttons .btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(52, 152, 219, 0.5);
}

.hero-buttons .btn-outline:hover {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.hero-buttons button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Mail Sphere Animation */
.mail-sphere {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(10, 30, 60, 0.2) 70%);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(52, 152, 219, 0.3);
    box-shadow: 0 0 50px rgba(52, 152, 219, 0.2), inset 0 0 30px rgba(52, 152, 219, 0.2);
}

.mail-indicators {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mail-point {
    position: absolute;
    width: 15px;
    height: 15px;
    z-index: 2;
    animation: fadeInOut 3s ease-in-out var(--delay) infinite;
}

.mail-point .point-pulse {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #3498db;
    position: absolute;
    animation: pulse 2s ease-out infinite;
}

.mail-point .point-data {
    position: absolute;
    left: 20px;
    top: -5px;
    background: rgba(52, 152, 219, 0.9);
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    min-width: 140px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mail-point .mail-label {
    font-size: 0.8rem;
    font-weight: 600;
}

.mail-point .mail-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-icons .icon-item {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.floating-icons .icon-item i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #3498db;
}

.floating-icons .icon-item .icon-label {
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: center;
}

.floating-icons .smtp {
    top: 20%;
    left: 15%;
}

.floating-icons .database {
    top: 20%;
    right: 15%;
}

.floating-icons .analytics {
    bottom: 20%;
    left: 15%;
}

.floating-icons .parallel {
    bottom: 20%;
    right: 15%;
}

/* Central Circle */
.central-circle {
    width: 120px;
    height: 120px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(52, 152, 219, 0.5);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.3);
    z-index: 2;
}

.central-circle .circle-content {
    text-align: center;
}

.central-circle .mail-status {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.central-circle .mail-metric {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

/* Mail Metrics Section */
.mail-metrics {
    margin-top: 50px;
}

.mail-metrics .metric-card {
    background: rgba(52, 152, 219, 0.08);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mail-metrics .metric-card:hover {
    background: rgba(52, 152, 219, 0.12);
    transform: translateY(-5px);
}

.mail-metrics .metric-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.mail-metrics .metric-icon {
    width: 50px;
    height: 50px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.mail-metrics .metric-icon i {
    font-size: 1.3rem;
    color: #3498db;
}

.mail-metrics .metric-data {
    flex: 1;
}

.mail-metrics .metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.mail-metrics .metric-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.mail-metrics .metric-trend {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
}

.mail-metrics .metric-trend i {
    margin-right: 5px;
}

.mail-metrics .metric-trend.positive {
    color: #2ecc71;
}

.mail-metrics .metric-trend.negative {
    color: #e74c3c;
}

.mail-metrics .metric-trend.stable {
    color: #f39c12;
}

/* Expertise Solutions Block */
.expertise-solutions-block {
    background: linear-gradient(145deg, #0f172a 0%, #1a2234 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.expertise-solutions-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pattern-dots.svg');
    opacity: 0.05;
    z-index: 1;
}

.solutions-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-badge {
    display: inline-block;
    background: rgba(52, 152, 219, 0.1);
    border-left: 3px solid #3498db;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solutions-badge i {
    margin-right: 8px;
    color: #3498db;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.solutions-highlight {
    color: #3498db;
    position: relative;
}

.solutions-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.solutions-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.solution-showcase-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-showcase-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

.solution-showcase-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.showcase-box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.showcase-box-icon {
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-box-icon i {
    font-size: 1.8rem;
    color: #3498db;
}

.showcase-box-stats {
    display: flex;
    gap: 15px;
}

.showcase-stat {
    text-align: right;
}

.showcase-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3498db;
    display: block;
}

.showcase-stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

.showcase-box-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.showcase-box-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.showcase-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.showcase-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.showcase-feature-list li i {
    width: 22px;
    height: 22px;
    background: rgba(52, 152, 219, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 0.7rem;
    color: #3498db;
}

.showcase-protection-meter {
    background: rgba(0, 0, 0, 0.2);
    height: 8px;
    border-radius: 4px;
    position: relative;
    margin-top: 10px;
    overflow: hidden;
}

.protection-meter-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--level, 0%);
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 4px;
}

.showcase-protection-meter span {
    display: block;
    font-size: 0.8rem;
    text-align: right;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.solutions-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.solutions-metric-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.solutions-metric-box:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 152, 219, 0.4);
}

.metric-box-icon {
    width: 50px;
    height: 50px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.metric-box-icon i {
    font-size: 1.3rem;
    color: #3498db;
}

.metric-box-content {
    flex: 1;
}

.metric-box-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    color: #ffffff;
}

.metric-box-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Technical Features Section */
.technical-features-section {
    background: linear-gradient(145deg, #0c1e2c 0%, #152638 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.technical-features-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pattern-dots.svg');
    opacity: 0.05;
    z-index: 1;
}

.technical-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.technical-header {
    text-align: center;
    margin-bottom: 60px;
}

.technical-badge {
    display: inline-block;
    background: rgba(52, 152, 219, 0.1);
    border-left: 3px solid #3498db;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.technical-badge i {
    margin-right: 8px;
    color: #3498db;
}

.technical-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.technical-title .technical-highlight {
    color: #3498db;
    position: relative;
}

.technical-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.technical-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.technical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

.technical-card .card-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 20, 30, 0.3);
}

.technical-card .card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.technical-card .tech-badge,
.technical-card .deployment-type {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 8px 15px;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.technical-card .card-content {
    padding: 30px;
}

.technical-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.technical-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.component-metrics,
.deployment-highlights {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.component-metrics .metric,
.deployment-highlights .highlight-item {
    background: rgba(15, 23, 42, 0.8);
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.15);
}

.component-metrics .metric-value,
.deployment-highlights i {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
}

.component-metrics .metric-label,
.deployment-highlights span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.technical-details .detail-list,
.integration-options .integration-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.technical-details .detail-list li,
.integration-options .integration-list li {
    margin-bottom: 20px;
}

.technical-details .detail-title,
.integration-options .integration-title {
    display: block;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 5px;
}

.operation-steps .step,
.service-options .option-item {
    margin-bottom: 25px;
    display: flex;
}

.operation-steps .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.operation-steps .step-content h5,
.service-options .option-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.service-options .option-item h5 i {
    color: #3498db;
    margin-right: 8px;
}

.service-options .option-item code {
    display: block;
    background: rgba(10, 20, 30, 0.5);
    padding: 12px 15px;
    border-radius: 5px;
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 10px;
    border: 1px solid rgba(52, 152, 219, 0.15);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    20%, 80% {
        opacity: 1;
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mail-hero-section .hero-title {
        font-size: 2.8rem;
    }
    
    .mail-sphere {
        width: 350px;
        height: 350px;
    }
    
    .technical-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mail-hero-section {
        padding: 80px 0 40px;
    }
    
    .mail-hero-section .hero-title {
        font-size: 2.2rem;
    }
    
    .mail-features {
        grid-template-columns: 1fr;
    }
    
    .mail-sphere {
        width: 300px;
        height: 300px;
        margin-top: 40px;
    }
    
    .floating-icons .icon-item {
        width: 50px;
        height: 50px;
    }
    
    .floating-icons .icon-item i {
        font-size: 1.5rem;
    }
    
    .central-circle {
        width: 100px;
        height: 100px;
    }
    
    .technical-card .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .mail-hero-section .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .mail-sphere {
        width: 250px;
        height: 250px;
    }
    
    .mail-metrics .row > div {
        margin-bottom: 20px;
    }
    
    .component-metrics,
    .deployment-highlights {
        flex-direction: column;
    }
    
    .technical-grid {
        grid-template-columns: 1fr;
    }
}

/* Advanced Queue Management Section */
.advanced-queue-section {
    background: linear-gradient(145deg, #0c1e2c 0%, #152638 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advanced-queue-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pattern-dots.svg');
    opacity: 0.05;
    z-index: 1;
}

.queue-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.queue-header {
    text-align: center;
    margin-bottom: 60px;
}

.queue-badge {
    display: inline-block;
    background: rgba(52, 152, 219, 0.1);
    border-left: 3px solid #3498db;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.queue-badge i {
    margin-right: 8px;
    color: #3498db;
}

.queue-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.queue-highlight {
    color: #3498db;
    position: relative;
}

.queue-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Queue Visualization */
.queue-visual-wrapper {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.queue-visual {
    width: 100%;
    max-width: 800px;
    height: 300px;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.queue-visual:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.queue-inputs, .queue-outputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 30%;
}

.input-block, .output-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-icon, .output-icon {
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-icon i, .output-icon i {
    font-size: 1.2rem;
    color: #3498db;
}

.input-bar {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.input-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    animation: progress 3s infinite alternate;
}

.output-channel {
    width: 100px;
    height: 4px;
    background: rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
}

.channel-dots {
    display: flex;
    gap: 8px;
    position: absolute;
    top: 0;
    left: -30px;
    animation: moveDots 3s infinite linear;
}

.channel-dots span {
    width: 6px;
    height: 4px;
    background: #3498db;
    border-radius: 50%;
}

.input-label, .output-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.processor-unit {
    width: 120px;
    height: 120px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.processor-icon {
    width: 50px;
    height: 50px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.processor-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.processor-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.processor-flow {
    position: absolute;
    background: rgba(52, 152, 219, 0.1);
    height: 8px;
    width: 40%;
    border-radius: 4px;
}

.processor-flow.flow-1 {
    top: 30%;
    left: -10%;
    animation: processorFlow1 3s infinite;
}

.processor-flow.flow-2 {
    top: 50%;
    left: -20%;
    animation: processorFlow2 5s infinite;
}

.processor-flow.flow-3 {
    top: 70%;
    left: -15%;
    animation: processorFlow3 4s infinite;
}

.processor-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 5px;
}

/* Queue Features Grid */
.queue-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.queue-feature-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

.queue-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-card-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.feature-code-snippet {
    background: rgba(10, 20, 30, 0.5);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.feature-code-snippet code {
    color: #e74c3c;
    font-size: 0.9rem;
    font-family: monospace;
}

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

.feature-point-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-point-list .point-marker {
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Queue Metrics */
.queue-metrics-container {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.metrics-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.metric-tile {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.metric-tile .metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.metric-tile .metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.metric-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 3px;
}

/* Monitoring & Diagnostics Section */
.monitoring-diagnostics-section {
    background: linear-gradient(145deg, #0f172a 0%, #1a2234 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.monitoring-diagnostics-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pattern-dots.svg');
    opacity: 0.05;
    z-index: 1;
}

.monitoring-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.monitoring-header {
    text-align: center;
    margin-bottom: 60px;
}

.monitoring-badge {
    display: inline-block;
    background: rgba(52, 152, 219, 0.1);
    border-left: 3px solid #3498db;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.monitoring-badge i {
    margin-right: 8px;
    color: #3498db;
}

.monitoring-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.monitoring-highlight {
    color: #3498db;
    position: relative;
}

.monitoring-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Dashboard Styles */
.monitoring-dashboard {
    margin: 50px 0;
}

.dashboard-wrapper {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-header {
    background: rgba(10, 20, 30, 0.6);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
}

.dashboard-title {
    font-weight: 600;
    color: #ffffff;
}

.dashboard-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.dashboard-panel {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.panel-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
    padding-bottom: 10px;
}

/* Status Panel */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.status-light {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3498db;
    position: relative;
    box-shadow: 0 0 10px #3498db;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3498db;
}

.status-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.status-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.status-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Health Charts */
.health-charts {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.chart-circle {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-circle .circle-bg {
    fill: none;
    stroke: rgba(52, 152, 219, 0.1);
    stroke-width: 3;
}

.chart-circle .circle-fill {
    fill: none;
    stroke: #3498db;
    stroke-width: 3;
    stroke-linecap: round;
}

.chart-percentage {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.chart-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Campaign Panel */
.campaign-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.campaign-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.campaign-info {
    flex: 1;
}

.campaign-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.campaign-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 3px;
}

.progress-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    width: 40px;
    text-align: right;
}

.campaign-metrics {
    display: flex;
    gap: 15px;
}

.campaign-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.campaign-metric i {
    font-size: 1.1rem;
    color: #3498db;
}

.campaign-metric span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Activity Panel */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.activity-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3498db;
    margin-top: 5px;
}

.activity-indicator.warning {
    background: #f39c12;
}

.activity-indicator.success {
    background: #2ecc71;
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.activity-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Monitor Features */
.monitor-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.monitor-feature-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    gap: 25px;
}

.monitor-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.feature-code {
    background: rgba(10, 20, 30, 0.5);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 15px;
    overflow-x: auto;
}

.feature-code code {
    color: #e74c3c;
    font-size: 0.9rem;
    font-family: monospace;
}

.feature-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-benefit i {
    color: #2ecc71;
    font-size: 0.9rem;
}

.feature-benefit span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Implementation Example */
.implementation-example {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.implementation-header {
    background: rgba(10, 20, 30, 0.5);
    padding: 20px;
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
}

.implementation-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.implementation-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.code-example {
    padding: 20px;
    overflow-x: auto;
}

.code-example pre {
    margin: 0;
}

.code-example code {
    color: #e74c3c;
    font-size: 0.9rem;
    font-family: monospace;
    white-space: pre-wrap;
    line-height: 1.6;
}

/* Animations */
@keyframes moveDots {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(130px);
    }
}

@keyframes processorFlow1 {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

@keyframes processorFlow2 {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

@keyframes processorFlow3 {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .monitor-features-grid {
        grid-template-columns: 1fr;
    }
    
    .queue-visual {
        flex-direction: column;
        height: auto;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .queue-inputs, .queue-outputs {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .monitor-feature-box {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
    
    .health-charts {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .campaign-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .campaign-metrics {
        width: 100%;
        justify-content: space-around;
    }
    
    .queue-inputs, .queue-outputs {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .status-details {
        grid-template-columns: 1fr;
    }
}

/* Business Benefits Styles */
.business-benefits {
    padding: 30px;
}

.benefit-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.benefit-item {
    flex: 1;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(52, 152, 219, 0.4);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefit-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefit-item {
        width: 100%;
    }
} 