/* Solution Detail Page Styles */

.inquiry-section {
    margin-top: 60px;
    padding: 0;
    background: #f8f9fa;
}

.inquiry-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero_banner_2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 150px;
    text-align: center;
    color: #fff;
}

.inquiry-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
}

.inquiry-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.inquiry-form-container {
    max-width: 1000px;
    margin: -80px auto 80px;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.form-note {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.empty {
    visibility: hidden;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 30px;
}

.form-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label span {
    color: #e60012;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e60012;
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
}

.form-consent {
    margin-bottom: 25px;
}

.form-consent p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.form-consent p span {
    color: #e60012;
}

.radio-group {
    display: flex;
    gap: 30px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.form-privacy {
    margin-bottom: 40px;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.form-privacy input {
    margin-top: 3px;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    padding: 15px 60px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .inquiry-form-container {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .inquiry-header h2 {
        font-size: 26px;
    }
}

/* Solution List Page Styles */
.solution-page-header {
    background: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 60px;
}

.solution-page-header h1 {
    font-size: 42px;
    color: #333;
    margin: 20px 0 15px;
    font-weight: 600;
}

.solution-page-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    line-height: 1.6;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.solution-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.solution-image {
    height: 240px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(230, 0, 18, 0.08);
    color: #e60012;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 15px;
    width: fit-content;
}

.solution-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.solution-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #e60012;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 10px;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}



@media (max-width: 768px) {
    .solution-page-header h1 {
        font-size: 32px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-image {
        height: 200px;
    }
}