/* Business Section Styles for InnovaticaTECH */

/* Business Hero Section */
.business-hero {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--secondary-color));
    color: var(--light-color);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/business-hero-pattern.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
}

.business-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.business-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.business-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Partnership Models Section */
.partnership-models {
    padding: 80px 0;
    background-color: var(--light-color);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.model-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.model-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.03);
}

.model-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.model-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.model-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.model-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.model-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex-grow: 1;
}

.model-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.model-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
    margin-top: 4px;
}

/* Business Benefits Section */
.business-benefits {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--white-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: var(--box-shadow-light);
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.benefit-details h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefit-details p {
    color: var(--text-color);
    line-height: 1.6;
}

.benefits-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Partner Showcase Section */
.partner-showcase {
    padding: 80px 0;
    background-color: var(--white-color);
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 25px;
}

.case-study-category {
    display: inline-block;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.case-study-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.case-study-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color-dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Partnership Process Section */
.partnership-process {
    padding: 80px 0;
    background-color: var(--white-color);
}

.process-steps {
    margin-top: 50px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 2px;
    height: calc(100% - 80px);
    background-color: var(--primary-color-light);
    z-index: 1;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: var(--box-shadow-light);
}

.step-content {
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
    max-width: 600px;
}

/* Partnership Inquiry Form Section */
.inquiry-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.inquiry-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.inquiry-form-container {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow-light);
}

.inquiry-form .form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.inquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--white-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

.btn-block {
    width: 100%;
}

.inquiry-info {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.inquiry-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-dots.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.inquiry-info h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.inquiry-info p {
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.partnership-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

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

.contact-options {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-options h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.contact-options ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-options li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-options li i {
    margin-right: 10px;
}

.download-brochure {
    position: relative;
    z-index: 2;
}

.download-brochure .btn-outline {
    border-color: var(--white-color);
    color: var(--white-color);
}

.download-brochure .btn-outline:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.faq-container {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background-color: var(--white-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-color);
    transition: var(--transition);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active {
    background-color: var(--primary-color-light);
}

.faq-question.active h3 {
    color: var(--primary-color);
}

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

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

.faq-answer.active {
    padding: 0 25px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/cta-pattern.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Product Sections */
.business-products {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* New Products Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.business-products .product-section {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.business-products .product-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.business-products .product-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-products h3 {
    color: #333;
    margin-bottom: 15px;
}

.business-products .product-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    text-align: left;
}

.business-products .product-list li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}

.business-products .product-list li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 0.9rem;
}

.business-products .btn-outline {
    margin-top: 10px;
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .business-hero h2 {
        font-size: 2.75rem;
    }
    
    .benefits-container,
    .inquiry-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .business-hero h2 {
        font-size: 2.25rem;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .model-card.featured {
        transform: scale(1);
    }
    
    .model-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .process-steps::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-right: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .business-hero {
        padding: 80px 0 50px;
    }
    
    .business-hero h2 {
        font-size: 2rem;
    }
    
    .business-hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .inquiry-form-container {
        padding: 25px;
    }
    
    .partnership-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        margin-bottom: 15px;
    }
}