/* Future Projects Page Styles */

/* Hero Section */
.future-projects-hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('../../assets/images/future_projects/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.future-projects-hero-content {
    text-align: center;
    color: var(--text-white);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.future-projects-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.future-projects-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .future-projects-hero-section {
        min-height: 400px;
    }
    
    .future-projects-hero-title {
        font-size: 2rem;
    }
    
    .future-projects-hero-subtitle {
        font-size: 1rem;
    }
}

/* AI Journey Section */
.ai-journey-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.ai-journey-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-journey-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
}

.ai-journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.ai-journey-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-journey-paragraph {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.7;
    text-align: left;
}

.ai-journey-paragraph strong {
    font-weight: 700;
    color: #1a1a2e;
}

.ai-journey-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-core-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.ai-journey-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.ai-journey-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ai-journey-btn:hover {
    background-color: #2a2a4e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .ai-journey-section {
        padding: 3rem 1.5rem;
    }
    
    .ai-journey-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .ai-journey-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .ai-journey-paragraph {
        font-size: 1rem;
    }
    
    .ai-journey-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .ai-journey-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Business Products Section */
.business-products-section {
    background-color: #1a1a2e;
    padding: 5rem 2rem;
}

.business-products-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.business-products-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.business-products-description {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .business-products-section {
        padding: 3rem 1.5rem;
    }
    
    .business-products-title {
        font-size: 2rem;
    }
    
    .business-products-description {
        font-size: 1rem;
    }
}

/* Consumer Products Section */
.consumer-products-section {
    background-color: #99D9EA;
    padding: 5rem 2rem;
}

.consumer-products-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.consumer-products-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212B36;
    margin-bottom: 2rem;
}

.consumer-products-description {
    font-size: 1.25rem;
    color: #212B36;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .consumer-products-section {
        padding: 3rem 1.5rem;
    }
    
    .consumer-products-title {
        font-size: 2rem;
    }
    
    .consumer-products-description {
        font-size: 1rem;
    }
}

/* Products Showcase Section */
.products-showcase-section {
    background-color: #f5f5f5;
    padding: 5rem 2rem;
}

.products-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-card {
    background-color: #1a1a2e;
    padding: 1rem 3rem 1rem 3rem;
    border-radius: 12px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    position: absolute;
    top: -40px;
    z-index: 3;
    background-color: white;
    padding: 1rem;
}

.product-logo-left {
    left: -40px;
}

.product-logo-right {
    right: -40px;
}

.product-card-inner {
    z-index: 2;
    margin-top: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.sendshield-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.sendshield-visual-container {
    position: relative;
}

.sendshield-visual-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.sendshield-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.sendshield-label-before {
    left: 0;
}

.sendshield-label-after {
    left: 50%;
}

.sendshield-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-card-sendshield .product-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.product-card-sendshield .product-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

.crmotion-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.crmotion-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.crmotion-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    min-height: 100%;
}

.crmotion-image {
    max-width: 50%;
    width: 50%;
    height: auto;
    border-radius: 8px;
}

.product-card-crmotion .product-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.product-card-crmotion .product-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

.tale-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.tale-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.tale-image {
    max-width: 60%;
    width: 60%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.tale-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-card-tale .product-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.product-card-tale .product-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

.product-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left;
}

.product-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-visual-single {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.product-visual-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-visual-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.product-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    background-color: white;
    color: #1a1a2e;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-btn:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .products-showcase-section {
        padding: 3rem 1.5rem;
    }
    
    .products-showcase-container {
        gap: 3rem;
    }
    
    .product-card {
        padding: 2rem 1.5rem;
        padding-top: 1rem;
        min-height: auto;
    }
    
    .product-logo {
        width: 100px;
        height: 100px;
        top: -30px;
    }
    
    .product-logo-left {
        left: -30px;
    }
    
    .product-logo-right {
        right: -30px;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .sendshield-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sendshield-label {
        font-size: 1rem;
    }
    
    .sendshield-label-before {
        left: 0;
    }
    
    .sendshield-label-after {
        left: 50%;
        top: 0;
    }
    
    .product-card-sendshield .product-name {
        font-size: 2rem;
    }
    
    .crmotion-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-card-crmotion .product-name {
        margin-left: 0;
    }
    
    .tale-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-card-tale .product-name {
        margin-left: 0;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .product-visual {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

