/* AI Voice Agent Page Styles */

/* Hero Section */
.voice-agent-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.voice-agent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.voice-agent-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.voice-agent-hero-text h1.voice-agent-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-text {
    color: #CB202D;
}

.voice-agent-hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.voice-agent-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.voice-agent-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.voice-agent-btn-primary {
    background: #CB202D;
    color: white;
}

.voice-agent-btn-primary:hover {
    background: #a51824;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 32, 45, 0.3);
}

.voice-agent-btn-secondary {
    background: white;
    color: #CB202D;
    border: 2px solid #CB202D;
}

.voice-agent-btn-secondary:hover {
    background: #CB202D;
    color: white;
    transform: translateY(-2px);
}

.voice-agent-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.voice-agent-badge {
    display: inline-block;
    background: #CB202D;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.voice-agent-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.text-accent {
    color: #CB202D;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.voice-agent-benefits {
    padding: 80px 0;
    background: white;
}

.voice-agent-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.voice-agent-benefit-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.voice-agent-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #CB202D;
}

.voice-agent-benefit-icon {
    color: #CB202D;
    margin-bottom: 20px;
    display: inline-block;
}

.voice-agent-benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.voice-agent-benefit-description {
    color: #666;
    line-height: 1.6;
}

/* Cost Calculator Section */
.voice-agent-calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.calculator-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.calculator-input-group {
    display: flex;
    flex-direction: column;
}

.calculator-input-group label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1rem;
}

.calculator-input-group input,
.calculator-input-group select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    background: white;
}

.calculator-input-group input:focus,
.calculator-input-group select:focus {
    outline: none;
    border-color: #CB202D;
}

.calculator-input-group select {
    cursor: pointer;
}

.input-hint {
    font-size: 0.875rem;
    color: #999;
    margin-top: 5px;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.result-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.result-card.highlight-card {
    background: linear-gradient(135deg, #CB202D 0%, #a51824 100%);
    color: white;
}

.result-label {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.highlight-card .result-label {
    color: white;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.highlight-card .result-value {
    color: white;
}

.result-card.savings-card {
    background: #e8f5e9;
    border: 2px solid #2e7d32;
}

.savings-card .result-label {
    color: #1b5e20;
}

.savings-card .result-value {
    color: #2e7d32;
}

.savings-percentage {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2e7d32;
}

.savings-info {
    grid-column: 1 / -1;
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2e7d32;
}

.savings-info i {
    flex-shrink: 0;
}

.calculator-note {
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Demo Video Section */
.voice-agent-demo-video {
    padding: 80px 0;
    background: white;
}

.demo-video-wrapper {
    margin-top: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    display: block;
    border-radius: 12px;
}

.demo-highlights {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.demo-highlights h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.demo-highlights ul {
    list-style: none;
    padding: 0;
}

.demo-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #666;
}

.demo-highlights li i {
    color: #CB202D;
    flex-shrink: 0;
}

/* Features Section */
.voice-agent-features {
    padding: 80px 0;
    background: #f5f7fa;
}

.voice-agent-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.voice-agent-feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.voice-agent-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.voice-agent-feature-icon {
    color: #CB202D;
    margin-bottom: 20px;
}

.voice-agent-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.voice-agent-feature-description {
    color: #666;
    line-height: 1.6;
}

/* Inquiry Section */
.voice-agent-inquiry {
    padding: 80px 0;
    background: linear-gradient(135deg, #CB202D 0%, #a51824 100%);
    color: white;
}

.inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.inquiry-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.inquiry-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.inquiry-benefits {
    margin-bottom: 30px;
}

.inquiry-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.inquiry-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inquiry-btn-primary {
    background: white;
    color: #CB202D;
}

.inquiry-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.inquiry-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.inquiry-btn-secondary:hover {
    background: white;
    color: #CB202D;
}

.inquiry-contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.inquiry-contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #e8ecf1;
    transform: translateX(5px);
}

.contact-icon {
    color: #CB202D;
    flex-shrink: 0;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-link {
    color: #CB202D;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #a51824;
    text-decoration: underline;
}

.contact-time {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.voice-agent-faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .voice-agent-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .voice-agent-hero-text h1.voice-agent-hero-title {
        font-size: 2rem;
    }

    .voice-agent-heading {
        font-size: 1.8rem;
    }

    .inquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inquiry-title {
        font-size: 1.8rem;
    }

    .calculator-wrapper {
        padding: 25px;
    }

    .calculator-inputs {
        grid-template-columns: 1fr;
    }

    .voice-agent-benefits-grid,
    .voice-agent-features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .video-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .voice-agent-hero {
        padding: 60px 0 40px;
    }

    .voice-agent-hero-buttons {
        flex-direction: column;
    }

    .voice-agent-btn {
        width: 100%;
        justify-content: center;
    }

    .inquiry-buttons {
        flex-direction: column;
    }

    .inquiry-btn {
        width: 100%;
        justify-content: center;
    }

    .result-value {
        font-size: 1.5rem;
    }

    .inquiry-contact-info {
        padding: 25px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-icon {
        margin-bottom: 10px;
    }
}
