/* Product Page Styles */

/* Hero Section */
.product-hero {
    margin-top: 152px;
    height: 342px;
    padding: 60px 0;
    background: #F1E9FF;

    .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: start;
        position: relative;

        h1 {
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            font-size: 50px;
            margin-bottom: 20px;
        }

        h2 {
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            font-size: 32px;
        }

        p {
            font-family: 'Raleway', sans-serif;
            font-size: 32px;
            line-height: 1.2;
        }

        .product-hero-clouds {
            position: absolute;
            top: 0px;
            right: 10px;
            z-index: 10;
            mix-blend-mode: soft-light;
            object-fit: cover;
        }
    }
}

/* System Architecture Section */
.system-architecture {
    background-color: #fff;
    padding: 60px 0;
    position: relative;

    .container {
        h2 {
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 20px;
            text-align: center;
        }

        .system-architecture-image-container {
            margin-top: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .multi-agent-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 40px 0;

            .agent-card {
                padding: 20px;
                border-radius: 12px;
                text-align: center;
                min-height: 100px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: 'Raleway', sans-serif;
                font-weight: 700;
                font-size: 16px;

                &.natural-language {
                    background-color: #D4F7FE;
                    border: 1px solid #018CCC;
                    color: #0D86F6;
                }

                &.personal-itinerary {
                    background-color: #DBDDFB;
                    border: 1px solid #404EE7;
                    color: #404EE7;
                }

                &.live-automation {
                    background-color: #FFF4E2;
                    border: 1px solid #FF9C00;
                    color: #FF9C00;
                }

                &.ready-to-book {
                    background-color: #E6CAFF;
                    border: 1px solid #170228;
                    color: #170228;
                }

                &.images-maps {
                    background-color: #E5FEE8;
                    border: 1px solid #2ECE40;
                    color: #0BA11C;
                }

                &.voice-gestures {
                    background-color: #FFE5D2;
                    border: 1px solid #F96B00;
                    color: #F96B00;
                }

                &.profile {
                    background-color: #F0DEFF;
                    border: 1px solid #8C1BEF;
                    color: #8C1BEF;
                }
            }
        }

        .multi-agent-circle {
            width: 235px;
            height: 235px;
            background-color: #8C1BEF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            font-size: 20px;
            text-align: center;
            margin: 40px auto;
        }
    }
}

/* Multi-Agent Intelligence Section */
.multi-agent {
    background-color: #C4E9F0;
    padding: 60px 0;

    .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        .multi-agent-content {
            flex: 1;

            h2 {
                font-family: 'Raleway', sans-serif;
                font-weight: 700;
                font-size: 32px;
                margin-bottom: 40px;
            }

            .multi-agent-description {
                margin: 20px auto;
                font-family: 'Inter', sans-serif;
                font-size: 20px;
                line-height: 1.5;
                
                list-style-type: disc;

                li {
                    margin-bottom: 10px;
                }
            }

            p {
                font-size: 20px;
                margin-bottom: 1em;
            }
        }

        .multi-agent-image-container {
            flex: 1;
            max-width: 639px;
            margin: 0 auto;

            img {
                width: 100%;
                height: auto;
            }
        }
    }
}


/* Real-Time Data Pipeline Section */
.data-pipeline {
    background-color: #ffffff;
    padding: 60px 0;

    .container {
        display: flex;
        flex-direction: row;
        gap: 40px;

        .data-pipeline-image-container {
            flex: 1;
            max-width: 625px;
            margin: 0 auto;

            img {
                width: 100%;
                height: auto;
            }
        }

        .data-pipeline-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;

            .data-pipeline-text {
                h2 {
                    font-family: 'Raleway', sans-serif;
                    font-weight: 700;
                    font-size: 32px;
                    margin-bottom: 15px;
                }

                p {
                    font-family: 'Inter', sans-serif;
                    font-size: 20px;
                    line-height: 1.2;
                    margin-bottom: 15px;
                }
            }
        }   
    }
}

/* Experience Quotient Section */
.experience-quotient {
    background-color: #F8F4FF;
    padding: 60px 0;

    .container {
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: center;

        .experience-quotient-text {
            h2 {
                font-family: 'Raleway', sans-serif;
                font-weight: 700;
                font-size: 32px;
                margin-bottom: 10px;
            }

            p {
                font-family: 'Inter', sans-serif;
                font-size: 20px;
                line-height: 1.5;
                margin-bottom: 1em;
            }
        }

        .experience-chart {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;

            img {
                max-width: 100%;
                height: auto;
            }

            .chart-labels {
                display: flex;
                justify-content: space-around;
                margin-top: 20px;

                .chart-label {
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                    font-size: 13px;
                    color: #373737;
                }
            }
        }
    }
}

/* Collaborative Architecture Section */
.collaborative {
    padding: 60px 0;

    .container {
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: center;

        .collaborative-text {
            h2 {
                font-family: 'Raleway', sans-serif;
                font-weight: 700;
                font-size: 32px;
                margin-bottom: 30px;
            }

            p {
                font-family: 'Inter', sans-serif;
                font-size: 20px;
                line-height: 1.5;
                margin-bottom: 1em;
            }
        }

        .collaborative-image-container {
            img {
                max-width: 100%;
                height: auto;
            }
        }
    }
}

/* Privacy-first Design Section */
.privacy-first {
    height: 444px;
    background-color: #040218;
    color: #fff;

    .container {
        height: 100%;
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: center;
        justify-content: center;

        .privacy-first-image-container {
            flex: 1.3;
            height: 100%;
            overflow: hidden;

            img {
                height: 100%;
                object-fit: cover;
                object-position: 0% 50%;
                transform: translateX(-10%);
            }
        }

        .privacy-first-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;

            h2 {
                font-family: 'Raleway', sans-serif;
                font-weight: 700;
                font-size: 32px;
                margin-bottom: 10px;
            }

            p {
                font-family: 'Inter', sans-serif;
                font-size: 20px;
                line-height: 1.5;
                margin-bottom: 1em;
            }
        }
    }
}

/* Human Thinking Section */
.human-thinking {
    height: 327px;
    padding: 60px 0;

    .container {
        display: flex;
        flex-direction: row;
        gap: 40px;

        .human-thinking-content {
            max-width: 450px;
            display: flex;
            align-items: center;
            justify-content: center;

            h2 {
                font-size: 30px;
            }
        }
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, #DA6570, #EDA1C8, #9D89B9);
    padding: 60px 0;
    color: #fff;
    text-align: center;

    .container {
        .cta-content {
            max-width: 800px;
            margin: 0 auto;

            h2 {
                font-family: 'Raleway', sans-serif;
                font-weight: 700;
                font-size: 50px;
                margin-bottom: 40px;
            }

            .cta-form {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                margin-top: 40px;

                .form-group {
                    text-align: left;

                    label {
                        display: block;
                        font-family: 'Raleway', sans-serif;
                        font-weight: 700;
                        font-size: 12px;
                        margin-bottom: 8px;
                    }

                    .cta-input {
                        width: 100%;
                        background-color: transparent;
                        border: 1px solid #000;
                        border-radius: 25.5px;
                        padding: 15px 25px;
                        font-family: 'Raleway', sans-serif;
                        font-size: 16px;
                        color: #000;

                        &::placeholder {
                            color: rgba(0, 0, 0, 0.7);
                        }
                    }
                }
            }

            .btn-cta {
                background: linear-gradient(to right, #DE156F, #F96B00);
                border: none;
                border-radius: 100px;
                color: #fff;
                font-family: 'Raleway', sans-serif;
                font-weight: 700;
                font-size: 20px;
                padding: 15px 40px;
                cursor: pointer;
                transition: transform 0.2s;
                margin-top: 30px;

                &:hover {
                    transform: scale(1.05);
                }
            }
        }
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero {
        margin-top: 150px;
        height: auto;
        padding: 30px 0;

        .container {
            h1 {
                font-size: 36px;
                margin-bottom: 10px;
            }

            h2 {
                font-size: 24px;
            }

            .product-hero-clouds {
                top: 0px;
            }
        }
    }

    .system-architecture {
        height: auto;
        padding: 30px 0;

        .container {
            .multi-agent-grid {
                grid-template-columns: 1fr;
            }

            .multi-agent-circle {
                width: 180px;
                height: 180px;
                font-size: 16px;
            }
        }
    }

    .multi-agent {
        height: auto;
        padding: 30px 0;

        .container {
            flex-direction: column;
        }
    }

    .data-pipeline {
        height: auto;
        padding: 30px 0;

        .container {
            flex-direction: column;
        }
    }

    .experience-quotient {
        height: auto;
        padding: 30px 0;

        .container {
            flex-direction: column;
        }
    }

    .collaborative {
        height: auto;
        padding: 30px 0;

        .container {
            flex-direction: column;
        }
    }

    .privacy-first {
        height: auto;
        padding: 30px 0;

        .container {
            height: auto;
            flex-direction: column;
            gap: 30px;

            .privacy-first-image-container {
                width: 100%;
                height: auto;
                min-height: 180px;
                max-height: 360px;

                img {
                    height: auto;
                }
            }

            .privacy-first-content {
                min-height: 180px;
                max-height: 360px;
            }
        }
    }

    .human-thinking {
        height: auto;
        padding: 30px 0;

        .container {
            flex-direction: column;
        }
    }
} 