/* ===================================
   365 DIALER - OUTBOUND CALL CENTER PAGE STYLES
   Custom styles for Outbound Call Center page
   =================================== */

/* ===== OUTBOUND HERO VISUAL ===== */
.outbound-visual {
    position: relative;
    width: 400px;
    max-width: 100%;
}

.campaign-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.dashboard-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-header-bar .dashboard-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
}

.dashboard-status.running {
    background: rgba(120, 253, 196, 0.15);
    color: var(--mint);
}

.dashboard-status .status-dot {
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.campaign-stats-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.campaign-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.campaign-stat i {
    font-size: 1.5rem;
    color: var(--cyan);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info .stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-info .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.campaign-progress-bar {
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.progress-track {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    transition: width 1s ease;
}

.agent-list-mini {
    display: flex;
    gap: 10px;
}

.agent-mini {
    position: relative;
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-mini.active {
    border-color: var(--cyan);
}

.agent-initials {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.agent-mini.active .agent-initials {
    color: var(--white);
}

.agent-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: var(--mint);
    border: 2px solid var(--bg-card);
    border-radius: 50%;
}

.agent-status-dot.idle {
    background: var(--text-muted);
}

/* ===== ELEGANT SOFTWARE SECTION ===== */
.elegant-software-section {
    background: var(--bg-primary);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.elegant-software-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 40%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(118, 252, 251, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
}

.elegant-software-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.elegant-visual-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.agent-at-work {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    animation: float 6s ease-in-out infinite;
}

.work-desk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.desk-monitor {
    width: 100%;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: var(--radius-md);
    padding: 15px;
    border: 2px solid var(--border-color);
}

.monitor-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 15px;
}

.content-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-bars .bar {
    height: 10px;
    background: var(--gradient-secondary);
    border-radius: 5px;
}

.content-bars .bar.short {
    width: 60%;
}

.desk-person {
    width: 70px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-navy);
}

.success-indicators {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.indicator {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    font-size: 1rem;
    animation: floatCard 5s ease-in-out infinite;
}

.indicator.ind-1 {
    top: 10px;
    right: -20px;
}

.indicator.ind-2 {
    bottom: 20px;
    left: -20px;
    animation-delay: 1s;
    color: var(--cyan);
}

.elegant-content .section-badge,
.elegant-content .section-title,
.elegant-content .section-description {
    text-align: left;
}

.elegant-content .section-description {
    margin-bottom: 30px;
}

.elegant-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.elegant-benefit {
    display: flex;
    gap: 20px;
}

.elegant-benefit .benefit-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark-navy);
}

.elegant-benefit .benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.elegant-benefit .benefit-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== OUTBOUND FEATURES SECTION ===== */
.outbound-features-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.outbound-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.outbound-feature-card {
    padding: 30px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.outbound-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.outbound-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin: 0 auto 20px;
    transition: transform var(--transition-normal);
}

.outbound-feature-card:hover .outbound-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.outbound-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.outbound-feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== GLOBAL COVERAGE SECTION ===== */
.global-coverage-section {
    background: var(--bg-primary);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.global-coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.global-content .section-badge,
.global-content .section-title,
.global-content .section-description {
    text-align: left;
}

.global-content .section-description {
    margin-bottom: 25px;
}

.global-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.global-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.global-feature i {
    color: var(--mint);
    font-size: 1rem;
}

.globe-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.globe {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-ring {
    position: absolute;
    border: 2px dashed var(--border-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.globe-ring.ring-1 {
    width: 100%;
    height: 100%;
}

.globe-ring.ring-2 {
    width: 75%;
    height: 75%;
    animation-direction: reverse;
    animation-duration: 15s;
}

.globe-center {
    width: 120px;
    height: 120px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-navy);
    z-index: 2;
    box-shadow: var(--shadow-glow-strong);
    animation: float 5s ease-in-out infinite;
}

.connection-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.connection-point.point-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.connection-point.point-2 { top: 50%; right: 5%; }
.connection-point.point-3 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.connection-point.point-4 { top: 50%; left: 5%; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== DUAL BENEFITS SECTION ===== */
.dual-benefits-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.dual-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-block {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.benefit-block:hover {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.benefit-block-visual {
    position: relative;
    margin-bottom: 30px;
}

.visual-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.visual-decorations {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
}

.decoration {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--gradient-glow);
    border-radius: 50%;
    animation: floatCard 4s ease-in-out infinite;
}

.decoration.dec-1 {
    top: 0;
    right: 0;
}

.decoration.dec-2 {
    bottom: 0;
    left: 0;
    animation-delay: 1s;
}

.benefit-block-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.benefit-block-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.benefit-list li i {
    color: var(--mint);
    font-size: 0.9rem;
}

/* ===== FAQS SECTION ===== */
.faqs-section {
    background: var(--bg-primary);
    padding: var(--section-padding);
}

.faqs-layout {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.faqs-header-side .section-badge,
.faqs-header-side .section-title,
.faqs-header-side .section-description {
    text-align: left;
}

.faqs-header-side .section-title {
    font-size: 2.5rem;
}

.faqs-header-side .section-description {
    margin-bottom: 0;
}

.faqs-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(118, 252, 251, 0.1) 0%, rgba(120, 253, 196, 0.1) 100%);
    border-left: 4px solid var(--cyan);
}

.faq-question h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    padding-right: 15px;
}

.faq-question i {
    color: var(--cyan);
    font-size: 0.85rem;
    transition: transform var(--transition-fast);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 20px 25px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-answer .faq-list {
    list-style: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-answer .faq-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.faq-answer .faq-list li i {
    color: var(--cyan);
    font-size: 0.7rem;
}

/* ===== OTHER PRODUCTS SECTION ===== */
.other-products-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.other-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.other-product-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.other-product-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.other-product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-glow);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cyan);
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
}

.other-product-card:hover .other-product-icon {
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    transform: scale(1.1);
}

.other-product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.other-product-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap var(--transition-fast);
}

.product-link:hover {
    gap: 12px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .outbound-visual {
        width: 360px;
    }

    .elegant-software-grid,
    .global-coverage-grid {
        gap: 50px;
    }

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

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

@media (max-width: 992px) {
    .elegant-software-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .elegant-visual {
        order: 2;
    }

    .elegant-content {
        order: 1;
    }

    .elegant-content .section-badge,
    .elegant-content .section-title,
    .elegant-content .section-description {
        text-align: center;
    }

    .elegant-benefits {
        max-width: 500px;
        margin: 0 auto;
    }

    .global-coverage-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .global-content .section-badge,
    .global-content .section-title,
    .global-content .section-description {
        text-align: center;
    }

    .global-features {
        align-items: center;
    }

    .global-content .btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .dual-benefits-grid {
        grid-template-columns: 1fr;
    }

    .outbound-visual {
        display: none;
    }

    .faqs-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faqs-header-side .section-badge,
    .faqs-header-side .section-title,
    .faqs-header-side .section-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .outbound-features-grid {
        grid-template-columns: 1fr;
    }

    .other-products-grid {
        grid-template-columns: 1fr;
    }

    .elegant-benefit {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .elegant-benefit .benefit-icon {
        margin: 0 auto;
    }

    .globe-container {
        width: 250px;
        height: 250px;
    }

    .globe-center {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .connection-point {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 576px) {
    .outbound-feature-card {
        padding: 25px 20px;
    }

    .outbound-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .other-product-card {
        padding: 30px 20px;
    }

    .other-product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefit-block {
        padding: 30px 20px;
    }

    .visual-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h4 {
        font-size: 0.85rem;
    }

    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }

    .faqs-header-side .section-title {
        font-size: 2rem;
    }

    .globe-container {
        width: 200px;
        height: 200px;
    }

    .globe-center {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}
