/* ========================================
   AIBOT24 - Demo Page Styles
   ======================================== */

.demo-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.demo-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.demo-hero-content .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .demo-hero {
        padding: 3rem 0 2rem;
    }
    
    .demo-hero-content h1 {
        font-size: 2rem;
    }
    
    .demo-hero-content .lead {
        font-size: 1.125rem;
    }
}

/* Process Section */
.demo-process {
    padding: 5rem 0;
    background: #f9fafb;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.process-icon {
    margin: 2rem 0 1.5rem;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.process-card p {
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Form Section */
.demo-form-section {
    padding: 5rem 0;
}

.demo-form-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.form-info > p {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.info-list {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #1f2937;
}

.contact-info {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #dbeafe;
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info .phone {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.contact-info .hours {
    color: #6b7280;
}

.form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.demo-form .form-row {
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-field textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox a {
    color: #2563eb;
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .demo-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
}

/* FAQ Section */
.demo-faq {
    padding: 5rem 0;
    background: #f9fafb;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.7;
}

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

