/* Smart Agriculture Technologies Section - Figma Design */
.smart-agri-tech-section-figma {
    position: relative;
    width: 100%;
    padding: 5rem 0;
    background: #e6ae25;
    overflow: hidden;
}

.tech-container-figma {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.tech-header-figma {
    text-align: center;
    margin-bottom: 3rem;
}

.tech-title-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #42210b;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
}

.tech-dots-figma {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E6AE25;
}

/* トップページ専用のドット色 */
.home .tech-dot {
    background: #5a7c56;
}

.tech-subtitle-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    color: #42210b;
    line-height: 1.8;
    margin: 0;
}

/* Search Form */
.tech-search-form-figma {
    background: transparent;
    padding: 2rem 0;
}

.tech-filter-row-figma {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.tech-filter-group-figma {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tech-filter-label-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
    letter-spacing: 0.05em;
}

.tech-select-figma {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #53834f;
    border-radius: 4px;
    background: white;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #42210b;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2353834f" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.5rem;
    padding-right: 2.5rem;
}

.tech-select-figma:hover {
    border-color: #4a7546;
    box-shadow: 0 2px 8px rgba(83, 131, 79, 0.2);
}

.tech-select-figma:focus {
    outline: none;
    border-color: #53834f;
    box-shadow: 0 0 0 3px rgba(83, 131, 79, 0.1);
}

/* Search Button */
.tech-search-button-container-figma {
    display: flex;
    justify-content: center;
}

.tech-search-button-figma {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.tech-search-button-figma:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.tech-search-button-img-figma {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
}

/* Technology Cards */
.tech-cards-container-figma {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.tech-card-figma {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid #42210b;
}

.tech-card-figma:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tech-card-image-figma {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.tech-card-image-figma img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder images */
.tech-placeholder-image,
.tech-placeholder-image-1,
.tech-placeholder-image-2,
.tech-placeholder-image-3 {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4a90e2 0%, #7ed321 100%);
}

.tech-placeholder-image-1 {
    background: linear-gradient(135deg, #4a90e2 0%, #7ed321 100%);
}

.tech-placeholder-image-2 {
    background: linear-gradient(135deg, #7ed321 0%, #f5a623 100%);
}

.tech-placeholder-image-3 {
    background: linear-gradient(135deg, #f5a623 0%, #e74c3c 100%);
}

.tech-card-content-figma {
    padding: 1.5rem;
}

.tech-card-title-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #42210b;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.tech-card-description-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* View All Link */
.tech-view-all-container-figma {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.tech-view-all-link-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid white;
    transition: all 0.3s ease;
}

.tech-view-all-link-figma:hover {
    color: #42210b;
    border-bottom-color: #42210b;
}

.tech-arrow-figma {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.tech-view-all-link-figma:hover .tech-arrow-figma {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .tech-filter-row-figma {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-cards-container-figma {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-title-figma {
        font-size: 28px;
    }
    
    .tech-subtitle-figma {
        font-size: 16px;
    }
    
    .tech-cards-container-figma {
        grid-template-columns: 1fr;
    }
    
    .tech-search-button-img-figma {
        width: 100%;
        max-width: 300px;
    }
}

