/* _css/ia.css */

#ia_container {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    color: #3b3b3b;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.ia_hero {
    text-align: left;
    padding: 40px 20px 20px 20px;
    background: transparent;
    margin-bottom: 20px;
}

.ia_hero_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.ia_hero_text {
    flex: 1;
    min-width: 320px;
}

.ia_hero_mascot {
    flex: 0.8;
    min-width: 250px;
    text-align: center;
}

.ia_hero_mascot img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.ia_hero h1 {
    font-size: 40px;
    font-weight: bold;
    color: #ff3d00;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ia_hero p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Divider */
.ia_divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    margin: 20px 0 40px 0;
}

/* Features Cards */
.ia_features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
}

.ia_feature_card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ia_feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #ff3d00;
}

.ia_service_icon {
    width: 60px;
    height: 60px;
    background: #fff0eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ia_feature_card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.ia_feature_card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Showcase Section */
.ia_showcase {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 90px;
    flex-wrap: wrap;
}

.ia_showcase.reverse {
    flex-direction: row-reverse;
}

.ia_showcase_text {
    flex: 1;
    min-width: 320px;
}

.ia_showcase_text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    border-left: 5px solid #ff002c;
    padding-left: 20px;
    line-height: 1.2;
}

.ia_showcase_text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.ia_showcase_text ul {
    list-style: none;
    padding: 0;
}

.ia_showcase_text ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.ia_showcase_text ul li strong {
    color: #1a1a1a;
}

.ia_showcase_text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #ff002c;
}

.ia_showcase_image {
    flex: 1.3;
    min-width: 350px;
    text-align: center;
}

.ia_showcase_image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.ia_showcase_image img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 850px) {
    .ia_features {
        flex-direction: column;
    }

    .ia_showcase {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
    }

    .ia_hero h1 {
        font-size: 32px;
    }

    .ia_hero p {
        font-size: 18px;
    }

    .ia_showcase_text h2 {
        font-size: 28px;
    }
}