/* Products/Solutions Page Styles */

/* Header Styles */
.page-header {
    background-color: unset;
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../img/oiyaa_groups_global_background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Content Styles */
.content-section {
    padding: 5rem 0;
}

.content-block {
    margin-bottom: 3rem;
}

.products-ecosystem {
    background: linear-gradient(135deg, var(--oiyaa-orange) 0%, var(--oiyaa-blue) 100%);
    position: relative;
    overflow: hidden;
}

.decorative-circle-1,
.decorative-circle-2 {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.decorative-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.decorative-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
}

.ecosystem-title {
    color: white;
    font-weight: 600;
}

.ecosystem-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.eco-component {
    background-color: rgba(255, 255, 255, 0.15);
    transition: transform 0.3s, background-color 0.3s;
}

.eco-component:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.25);
}

.component-title {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Product Cards */
.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    color: var(--oiyaa-orange);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-tag {
    display: inline-block;
    background-color: var(--oiyaa-orange);
    color: white;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* Technology Cards */
.tech-card {
    transition: transform 0.3s;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-card h4 {
    color: var(--oiyaa-orange);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* Implementation Cards */
.implementation-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.implementation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.implementation-card ul {
    list-style-type: none;
    padding-left: 0;
}

.implementation-card ul li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.implementation-card ul li:before {
    content: "✓";
    color: var(--oiyaa-orange);
    position: absolute;
    left: 0;
}

/* Stats Section */
.stat-card {
    transition: transform 0.3s;
    border-top: 3px solid var(--oiyaa-orange);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Detail Section */
.solution-detail {
    padding: 3rem 0;
}

.solution-detail-header {
    margin-bottom: 3rem;
}

.solution-detail-header h1 {
    color: var(--oiyaa-blue);
    font-weight: 700;
}

.detail-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-item {
    margin-bottom: 2rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--oiyaa-blue);
    margin-bottom: 0.5rem;
}

/* Call to Action */
.cta-section {
    background-color: var(--oiyaa-light-gray);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
}
