/* ===================================
   365 DIALER - CLICK TO CALL PAGE STYLES
   Custom styles for Click to Call page
   =================================== */

/* ===== CLICK TO CALL HERO VISUAL ===== */
.click-to-call-visual {
    position: relative;
    width: 420px;
    max-width: 100%;
}

.laptop-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.laptop-screen {
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 15px 15px 0 0;
    padding: 0;
    border: 2px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots .dot.red { background: #ff5f57; }
.browser-dots .dot.yellow { background: #ffbd2e; }
.browser-dots .dot.green { background: #28ca41; }

.browser-url {
    flex: 1;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.screen-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.contact-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.contact-phone {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.click-call-btn {
    padding: 8px 16px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: var(--radius-md);
    color: var(--dark-navy);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.click-call-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.click-call-btn.active {
    background: var(--mint);
    animation: pulse 1.5s infinite;
}

.laptop-base {
    height: 15px;
    background: linear-gradient(145deg, #2a2a3e 0%, #1a1a2e 100%);
    border-radius: 0 0 5px 5px;
    margin: 0 30px;
    border: 2px solid var(--border-color);
    border-top: none;
}

/* ===== WHY CLICK-TO-CALL SECTION ===== */
.why-click-section {
    background: var(--bg-primary);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.why-click-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%);
}

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

.thinking-visual {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.person-icon {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 100px;
    height: 140px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-navy);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.question-bubble {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--cyan);
    animation: float 4s ease-in-out infinite;
    box-shadow: var(--shadow-glow);
}

.idea-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.idea-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    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(--cyan);
    font-size: 1rem;
    animation: floatCard 5s ease-in-out infinite;
}

.idea-1 {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.idea-2 {
    top: 30%;
    right: 0;
    animation-delay: 1s;
}

.idea-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

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

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

.why-click-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.why-benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

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

.why-benefit-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-benefit-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-click-works-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.how-click-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.click-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.click-step:hover {
    transform: translateY(-10px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0 auto 20px;
}

.click-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 50px;
    color: var(--cyan);
    font-size: 1.2rem;
}

.connector-line {
    width: 30px;
    height: 2px;
    background: var(--border-color);
    margin-right: 10px;
}

/* ===== CORE FEATURES SECTION ===== */
.core-features-section {
    background: var(--bg-primary);
    padding: var(--section-padding);
}

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

.core-feature-card {
    padding: 35px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

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

.core-feature-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
    transition: transform var(--transition-normal);
}

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

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

.core-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CRM INTEGRATION SECTION ===== */
.crm-integration-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.laptop-crm {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.laptop-crm-screen {
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 15px;
    padding: 15px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.crm-interface {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.crm-header-bar {
    padding: 10px 15px;
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    font-size: 0.8rem;
    font-weight: 700;
}

.crm-content-area {
    display: flex;
    padding: 15px;
    gap: 15px;
    min-height: 150px;
}

.crm-sidebar {
    width: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    height: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.sidebar-item.active {
    background: var(--gradient-glow);
    border-color: var(--cyan);
}

.crm-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crm-card {
    height: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

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

.int-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.2rem;
    animation: floatCard 6s ease-in-out infinite;
    box-shadow: var(--shadow-md);
}

.int-1 { top: -10%; left: -5%; animation-delay: 0s; }
.int-2 { top: 10%; right: -10%; animation-delay: 1s; }
.int-3 { top: 50%; right: -15%; animation-delay: 2s; }
.int-4 { bottom: 10%; right: -5%; animation-delay: 0.5s; }
.int-5 { bottom: -5%; left: 20%; animation-delay: 1.5s; }
.int-6 { top: 40%; left: -15%; animation-delay: 2.5s; }

/* ===== SOMETHING GREAT SECTION ===== */
.something-great-section {
    background: var(--bg-primary);
    padding: var(--section-padding);
}

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

.great-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);
}

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

.great-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);
}

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

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

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

/* ===== 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) {
    .click-to-call-visual {
        width: 360px;
    }

    .why-click-grid,
    .crm-integration-grid {
        gap: 50px;
    }

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

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

    .thinking-visual {
        width: 240px;
        height: 240px;
    }

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

    .why-click-benefits {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .crm-integration-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .crm-integration-content {
        order: 1;
    }

    .crm-integration-visual {
        order: 2;
    }

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

    .crm-benefits {
        align-items: center;
    }

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

    .click-to-call-visual {
        display: none;
    }

    .step-connector {
        display: none;
    }

    .how-click-steps {
        flex-direction: column;
        align-items: center;
    }

    .click-step {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .core-features-grid,
    .great-features-grid,
    .other-products-grid {
        grid-template-columns: 1fr;
    }

    .person-icon {
        width: 80px;
        height: 110px;
        font-size: 2rem;
    }

    .question-bubble {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .idea-icon {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .int-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .core-feature-card,
    .great-feature-card,
    .other-product-card {
        padding: 25px 20px;
    }

    .core-feature-icon,
    .great-feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

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

    .click-step {
        padding: 25px 20px;
    }

    .step-number-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .thinking-visual {
        width: 200px;
        height: 200px;
    }

    .person-icon {
        width: 70px;
        height: 100px;
        font-size: 1.8rem;
    }

    .question-bubble {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .why-benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

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